
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green: #2d6a4f;
      --green-dark: #1b4332;
      --green-light: #52b788;
      --orange: #e07b39;
      --cream: #f9f6f0;
      --dark: #1a1a1a;
      --mid: #4a4a4a;
      --light: #f5f5f5;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--dark);
      background:#b4c5bc;
      overflow-x: hidden;
    }

/* NAVIGATION */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #c7d2ce;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:  5%;
  height: 68px;
  box-shadow:  1px 12px rgba(0,0,0,.08);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links li:hover .dropdown_menu {
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav ul a {
  text-decoration: none;
  color: var(--mid);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}

nav ul a:hover {
  color: var(--green);
}
 

    .logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700;
      color: var(--green-dark);
      text-decoration: none;
    
    }

    .logo-icon {
      width: 60px; height: 60px;
      background: var(--green);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .img-logo {
      width: 60px; height: 60px;
      background: var(--green);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .logo small { display: block; font-size: .6rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); font-family: 'DM Sans', sans-serif; }


    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 22px; border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem; font-weight: 600;
      cursor: pointer; text-decoration: none;
      transition: all .2s;
      border: none;
    }
   
    .btn-primary { background: var(--green); color: #fff; }
    .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
    .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
    .btn-outline:hover { background: rgba(255,255,255,.15); }
    .btn-orange { background: var(--orange); color: #fff; }
    .btn-orange:hover { background: #c96a2a; }
    .btn-white { background: #fff; color: var(--green); }
    .btn-white:hover { background: var(--cream); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
html {
  scroll-behavior: smooth;
}
  
    
    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex; align-items: center;
      background: linear-gradient(135deg, rgba(50, 101, 84, 0.85) 0%, rgba(45,106,79,.7) 60%, rgba(82,183,136,.4) 100%);
  background-image: url("../css/images/swe.jpeg.jpg");
  background-size: cover;        /* makes it fill screen */
  background-position: center;   /* centers image */
  background-repeat: no-repeat;  /* prevents repeating */
  height: 100vh;
  margin: 0;

      padding: 80px 5%;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255,255,255,.2);
      color: #fff; font-size: .75rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 6px 14px; border-radius: 20px;
      margin-bottom: 20px;
      backdrop-filter: blur(4px);
    }

    .hero-content { max-width: 620px; animation: fadeUp .8s ease both; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(100px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900; line-height: 1.1;
      color: #fff; margin-bottom: 20px;
    }

    .hero h1 .accent { color: var(--orange); font-style: italic; }

    .hero p {
      color: rgba(255,255,255,.85); font-size: 1.05rem;
      line-height: 1.7; margin-bottom: 32px; max-width: 500px;
    }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

    .hero-social-proof {
      display: flex; align-items: center; gap: 12px;
      color: rgba(255,255,255,.8); font-size: .85rem;
    }

    .avatars { display: flex; }
    .avatars span {
      width: 32px; height: 32px; border-radius: 50%;
      border: 2px solid #fff;
      background: var(--green-light);
      display: flex; align-items: center; justify-content: center;
      font-size: .7rem; color: #fff; font-weight: 700;
      margin-left: -8px;
    }
    .avatars span:first-child { margin-left: 0; }

    
    /* ── PILLARS ── */
    .section { padding: 80px 5%; }
    .section-label { color: var(--green); font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
    .section-subtitle { color: var(--mid); font-size: 1rem; line-height: 1.7; max-width: 560px; }
    .text-center { text-align: center; }
    .text-center .section-subtitle { margin: 0 auto; }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 48px;
    }

    .pillar-card {
      background: white;
      border-radius: 12px; padding: 28px;
      transition: all .3s;
      border: 1px solid transparent;
    }

    .pillar-card:hover {
      border-color: var(--green-light);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(45,106,79,.1);
    }

    .pillar-icon {
      font-size: 2rem; margin-bottom: 16px;
      width: 52px; height: 52px;
      background: rgba(45,106,79,.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }

    .pillar-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
    .pillar-card p { font-size: .88rem; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
    .learn-more { color: var(--green); font-size: .85rem; font-weight: 600; text-decoration: none; }
    .learn-more:hover { text-decoration: underline; }

/*MISSION*/
.mission-item {
    list-style: none;
    margin: 20px 0;
}
summary {
    font-size: 1.2rem;
    font-weight: bold;
    color: #27ae60; 
    cursor: pointer;
    list-style: none; 
    transition: color 0.3s ease;
}

summary:hover {
    color: #1e8449;
    text-decoration: underline;
}

.mission-content {
    background-color: #f4f9f4;
    padding: 20px;
    border-left: 5px solid #27ae60;
    margin-top: 10px;
    border-radius: 5px;
    animation: fadeIn 0.5s ease; 
}

.mission-content h3 {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-weight: normal;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
#mission-statement {
    scroll-margin-top: 100px;}

   /*-UPDATES-*/
.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.update-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.update-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.update-card h3 {
  padding: 15px;
}

.update-card p {
  padding: 0 15px 20px;
  font-size: 0.9rem;
  color: var(--mid);
}

    /* ── IMPACT ── */
    .impact {
      background: var(--green-dark);
      color: #fff;
      padding: 80px 5%;
      text-align: center;
    }

    .impact .section-title { color: #fff; }
    .impact .section-title .accent { color: var(--green-light); }
    .impact .section-subtitle { color: rgba(255,255,255,.75); margin: 0 auto 48px; max-width: 560px; }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 32px;
      margin-bottom: 40px;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 900;
      line-height: 1;
    }

    .stat-number.s1 { color: var(--green-light); }
    .stat-number.s2 { color: #f4c430; }
    .stat-number.s3 { color: #7ed8f6; }
    .stat-number.s4 { color: var(--orange); }

    .stat-item p { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 6px; }

    /* ── PROGRAMS ── */
    .programs-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .program-card {
      border-radius: 14px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
      transition: transform .3s, box-shadow .3s;
    }

    .program-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }

    .program-img {
      height: 200px;
      position: relative;
      overflow: hidden;
    }

    .program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .program-card:hover .program-img img { transform: scale(1.05); }

    .program-tag {
      position: absolute; top: 12px; left: 12px;
      background: var(--green); color: #fff;
      font-size: .7rem; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 4px;
    }

    .program-body { padding: 20px; }
    .program-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
    .program-body p { font-size: .88rem; color: var(--mid); line-height: 1.6; margin-bottom: 14px; }

    /* ── DONATE ── */
    .donate-section {
      background: linear-gradient(135deg, var(--green-dark), var(--green));
      padding: 70px 5%;
      border-radius: 20px;
      margin: 60px 5%;
      color: #bab6b6;
      position: relative;
      overflow: hidden;
    }

    .donate-section::before {
      content: '';
      position: absolute; inset: 0;
      background: url("../css/images/don.jpeg.JPG") center/cover;
      opacity: .08;
    }

    .donate-inner { position: relative; max-width: 560px; }
    .donate-section .section-label { color: rgba(255,255,255,.6); }
    .donate-section .section-title { color: #fff; }
    .donate-section .section-title .accent { color: var(--orange); }
    .donate-section p { color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 28px; }

    .amount-grid { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
    .amount-btn {
      padding: 9px 20px; border-radius: 8px;
      border: 2px solid rgba(255,255,255,.4);
      background: rgba(255,255,255,.1); color: #fff;
      font-size: .9rem; font-weight: 600; cursor: pointer;
      transition: all .2s;
    }
    .amount-btn:hover, .amount-btn.active { background: rgba(255,255,255,.25); border-color: #fff; }
    .amount-btn small { display: block; font-size: .68rem; font-weight: 400; opacity: .8; }

    .donate-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
    .secure-note { margin-top: 14px; font-size: .78rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }


    /* ── NEWSLETTER ── */
    .newsletter { padding: 80px 5%; }

    .newsletter-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      background: var(--cream);
      border-radius: 20px;
      overflow: hidden;
    }

    .newsletter-img {
      height: 100%;
      min-height: 360px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .newsletter-img::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to right, transparent, var(--cream));
    }

    .newsletter-body { padding: 48px 48px 48px 0; }
    .newsletter-body h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
    .newsletter-body p { color: var(--mid); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; }

    .email-form { display: flex; gap: 10px; flex-wrap: wrap; }
    .email-form input {
      flex: 1; min-width: 200px;
      padding: 12px 16px; border-radius: 8px;
      border: 1.5px solid #ddd; font-size: .9rem;
      font-family: 'DM Sans', sans-serif;
      outline: none;
      transition: border-color .2s;
    }
    .email-form input:focus { border-color: var(--green); }

    .socials { display: flex; gap: 12px; margin-top: 24px; }
    .social-icon {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1.5px solid #ccc;
      display: flex; align-items: center; justify-content: center;
      color: var(--mid); text-decoration: none; font-size: .85rem;
      transition: all .2s;
    }
    social-icon:hover { border-color: var(--green); color: var(--green); }
    /*-PATNERS-*/
    .partners {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.partners span {
  background: var(--light);
  padding: 10px 20px;
  border-radius: 20px;
}

/* TEAM */
#team {
  opacity: 1;
  transition: opacity .4s ease;
  padding: 60px 5%;
  background: #f9f9f9;
}

.team-header {
  text-align: center;
  margin-bottom: 40px;
}

.team-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.team-header h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #444;
}

.team-header p {
  color: #666;
  font-size: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 4fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin:  auto;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.team-card {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow:  4px 6px rgba(0,0,0,.1);
  transition: transform .3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.image-container {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin: 10px  5px;
  color: #333;
}

.role {
  color: #7f8c8d;
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-links {
  margin-top: 15px;
}

.team-links a {
  text-decoration: none;
  color: #2c7a7b;
  font-weight: 500;
  margin:  10px;
  transition: color .3s ease;
}

.team-links a:hover {
  color: #1f5c5d;
}

    /* ── FOOTER ── */
    footer {
      background: var(--green-dark);
      color: rgba(255,255,255,.8);
      padding: 60px 5% 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin: 16px 0 20px; }
    .footer-brand .logo { color: #fff; }

    footer h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 16px; }
    footer ul { list-style: none; }
    footer ul li + li { margin-top: 10px; }
    footer ul a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: color .2s; }
    footer ul a:hover { color: var(--green-light); }

    .footer-contact p { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }

    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
      padding-top: 24px;
      font-size: .8rem; color: rgba(255,255,255,.4);
    }


    /*Hamburger menu*/
    .hamburger{
      display: none;

    }
    .hamburger span{
      width: 28px;
      height: 3px;
      background: #1e8449;
    }




    /* ============================================
   RESPONSIVE IMPROVEMENTS - ADD/REPLACE THESE
   ============================================ */

/* --- MOBILE NAVIGATION FIXES --- */
@media (max-width: 900px) {
  /* Hamburger button styling */
  .hamburger {
    display: flex;
    z-index: 101;
  }
  
  /* Mobile menu - hidden by default */
  nav ul {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #c7d2ce;
    flex-direction: column;
    padding: 20px 5%;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    z-index: 99;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  
  /* Show menu when open class is added via JS */
  nav ul.open {
    display: flex;
  }
  
  /* Stack nav items vertically */
  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  nav ul li:last-child {
    border-bottom: none;
  }
  
  nav ul a {
    display: block;
    padding: 15px 0;
    font-size: 1rem;
  }
  
  /* Dropdown handling on mobile */
  .nav-links li:hover .dropdown_menu {
    display: none; /* Disable hover on touch devices */
  }
  
  .dropdown_menu {
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,0.03);
    padding-left: 20px;
    display: none;
  }
  
  .dropdown_menu.active {
    display: block;
  }
}

/* --- TABLET OPTIMIZATIONS (768px - 1024px) --- */
@media (max-width: 1024px) and (min-width: 769px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- MOBILE OPTIMIZATIONS (max-width: 768px) --- */
@media (max-width: 768px) {
  /* Navigation */
  .hamburger{
    display: flex;
  }
  .nav-links{
    display: none;
    position: fixed;
    left: -100%;
    top:0;
    width: 75%;
    background: white;
    flex-direction: column;
    z-index: 999;
    overflow-y: auto;
    height: 100vh;
    padding: 27px 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  ul.nav-links.active{
    padding-left:16px ;
  }
  .nav-links.active{
    left: 0;
    display: flex;
  }
  
  nav {
    padding: 0 4%;
    height: 60px;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo-icon, .img-logo {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100svh;
    padding: 60px 4%;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
    width: 100%;
  }
  
  .hero-social-proof {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  /* Sections */
  .section {
    padding: 60px 4%;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  /* Grids - Single column on mobile */
  .pillars-grid,
  .programs-grid,
  .updates-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Team Section Fixes */
  .team-grid {
    display: none; /* Remove conflicting grid */
  }
  
  .team-container {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 10px;
  }
  
  .team-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .image-container {
    height: 280px;
  }
  
  /* Impact Section */
  .impact {
    padding: 60px 4%;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  /* Donate Section */
  .donate-section {
    margin: 40px 4%;
    padding: 50px 4%;
    border-radius: 16px;
  }
  
  .amount-grid {
    justify-content: center;
  }
  
  .amount-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  /* Newsletter */
  .newsletter {
    padding: 60px 4%;
  }
  
  .newsletter-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .newsletter-img {
    min-height: 200px;
    order: -1;
  }
  
  .newsletter-img::after {
    background: linear-gradient(to bottom, transparent 50%, var(--cream));
  }
  
  .newsletter-body {
    padding: 30px 24px;
    text-align: center;
  }
  
  .email-form {
    flex-direction: column;
  }
  
  .email-form input {
    width: 100%;
  }
  
  .socials {
    justify-content: center;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* --- SMALL MOBILE (max-width: 480px) --- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .pillar-card,
  .program-card,
  .update-card {
    padding: 20px;
  }
  
  .program-img {
    height: 160px;
  }
  
  .amount-btn {
    width: calc(50% - 5px);
    text-align: center;
  }
  
  .amount-btn small {
    font-size: 0.6rem;
  }
  
  .image-container {
    height: 240px;
  }
}

/* --- LANDSCAPE MODE FIXES --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 4%;
  }
  
  nav ul.open {
    max-height: 80vh;
  }
}

/* --- TOUCH DEVICE OPTIMIZATIONS --- */
@media (hover: none) and (pointer: coarse) {
  .pillar-card:hover,
  .program-card:hover,
  .team-card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
}

/* --- REDUCED MOTION PREFERENCE --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- HIGH CONTRAST MODE --- */
@media (prefers-contrast: high) {
  :root {
    --green: #1a4d3a;
    --green-dark: #0d2e22;
    --orange: #c45a1c;
  }
}