:root {
  --ink: #1d1a1a;
  --muted: #625b5f;
  --cream: #fff8f2;
  --mint: #cae6d5;
  --blush: #f5e6ee;
  --navy: #304254;
  --blue: #134faa;
  --green: #013927;
  --leaf: #2f8d46;
  --gold: #e1c340;
  --orange: #c34334;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 440px auto 1fr;
  height: 76px;
  padding: 0 60px;
  position: relative;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  width: max-content;
}

.brand-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand strong {
  color: #304254;
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.brand small {
  color: #7b7b7b;
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  margin-top: 3px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: center;
}

.main-nav a {
  border-radius: 4px;
  color: #2b323b;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 12px;
}

.nav-dropdown {
  padding-bottom: 8px;
  position: relative;
}

.nav-dropdown-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 4px;
  color: #2b323b;
  cursor: pointer;
  display: inline-flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  padding: 10px 12px;
}

.nav-dropdown-toggle i {
  font-size: 11px;
}

.nav-dropdown-menu {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(35, 33, 56, 0.18);
  left: 0;
  min-width: 280px;
  opacity: 0;
  padding: 12px 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 2px);
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 20;
}

.nav-dropdown-menu::before {
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
  top: -10px;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown.open .nav-dropdown-toggle i,
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  align-items: center;
  color: #4b4e6d;
  display: flex;
  gap: 12px;
  padding: 11px 18px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f8f4f4;
}

.nav-dropdown-menu img,
.nav-dropdown-menu i {
  flex: 0 0 20px;
  height: 20px;
  object-fit: contain;
  text-align: center;
  width: 20px;
}

.nav-dropdown-menu span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.main-nav a.active {
  background: #fdeee7;
  color: var(--orange);
}

.header-donate {
  background: var(--leaf);
  border-radius: 4px;
  color: white;
  font-size: 16px;
  font-weight: 800;
  justify-self: end;
  padding: 12px 24px;
}

.header-menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
  padding: 8px;
}

.header-menu-toggle span {
  background: #24354a;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 24px;
}

.header-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.header-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 40px;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  z-index: 99;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a,
.mobile-work-menu summary {
  color: #1a1a2e;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  padding: 12px 0;
  text-align: center;
  transform: translateY(20px);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), opacity 400ms;
  opacity: 0;
}

.mobile-nav.is-open a,
.mobile-nav.is-open .mobile-work-menu summary {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for links */
.mobile-nav.is-open a:nth-child(1) { transition-delay: 100ms; }
.mobile-nav.is-open .mobile-work-menu { transition-delay: 150ms; }
.mobile-nav.is-open a:nth-child(3) { transition-delay: 200ms; }
.mobile-nav.is-open a:nth-child(4) { transition-delay: 250ms; }
.mobile-nav.is-open a:nth-child(5) { transition-delay: 300ms; }
.mobile-nav.is-open .mobile-donate-link { transition-delay: 350ms; }

.mobile-work-menu {
  text-align: center;
}

.mobile-work-menu summary {
  cursor: pointer;
  list-style: none;
}

.mobile-work-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0;
}

.mobile-submenu a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.8 !important;
}

.mobile-donate-link {
  background: var(--leaf);
  border-radius: 8px;
  color: #fff !important;
  font-family: "Inter", sans-serif !important;
  font-size: 18px !important;
  margin-top: 30px;
  padding: 16px 40px !important;
  text-align: center;
}

/* Make header toggle visible above overlay */
.header-menu-toggle {
  z-index: 100;
  position: relative;
}

.hero-desktop {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.28) 62%, rgba(0, 0, 0, 0.04) 100%),
    url("assets/image/hero.jpg");
  background-position: center 37%;
  background-size: cover;
  min-height: calc(100vh - 74px);
  position: relative;
}

.hero-mobile {
  display: none;
}

.hero-content {
  color: white;
  max-width: 700px;
  padding: 92px 0 0 80px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #ffd83d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
}

.hero-desktop h1 {
  font-size: clamp(46px, 4.25vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0 0 24px;
  max-width: 600px;
}

.hero-copy {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 34px;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.button {
  align-items: center;
  border-radius: 3px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  min-width: 144px;
  padding: 0 26px;
}

.button-green {
  background: var(--leaf);
  color: white;
}

.button-ghost {
  border: 1px solid white;
  color: white;
}

.button-orange {
  background: var(--orange);
  color: white;
  min-width: 142px;
}

.model {
  background: var(--mint);
  padding: 76px 74px 120px;
}

.model h2 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 86px;
  text-align: center;
}

.model-row {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 0 auto 110px;
  max-width: 1212px;
}

.model-row:last-child {
  margin-bottom: 0;
}

.model-photo,
.future-photo {
  background-position: center;
  background-size: cover;
  margin: 0;
  min-height: 614px;
}

.educate-photo {
  background-image: url("assets/image/1.png");
  background-position: center center;
}

.nourish-photo {
  background-image: url("assets/image/2.jpg");
}

.empower-photo {
  background-image: url("assets/image/3.png");
  background-position: center center;
}

.model-panel {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 614px;
  padding: 88px 86px 76px;
}

.model-panel.blue {
  background: var(--blue);
}

.model-panel.green {
  background: var(--green);
}

.model-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 5.2vw, 74px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  margin: 0 0 58px;
}

.model-panel p {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.27;
  margin: 0 0 26px;
  max-width: 410px;
}

.model-panel p:first-of-type {
  font-size: 24px;
  line-height: 1.22;
  margin-bottom: 40px;
}

.model-panel p:last-of-type {
  color: #d7e8da;
}

.model-panel a {
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  height: 52px;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.04em;
  margin-top: 30px;
  text-transform: uppercase;
  width: 200px;
}

.stats {
  background: var(--blush);
  padding: 64px 26px 36px;
}

.stat-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto;
  max-width: 1320px;
  text-align: center;
}

.stat-icon {
  display: block;
  height: 96px;
  margin: 0 auto 14px;
  object-fit: contain;
  width: auto;
}

.stat strong {
  color: #5a3343;
  display: block;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.stat span:last-child {
  color: #342b33;
  display: block;
  font-size: 15px;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 210px;
}

.stats-note {
  color: #3d3139;
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  margin: 36px auto 0;
  max-width: 1320px;
  padding-left: 6px;
}

.future {
  align-items: end;
  background: #f7f4f1;
  display: grid;
  grid-template-columns: 57.5% 42.5%;
  min-height: 548px;
  padding: 0 0 0 18px;
}

.future-photo {
  align-self: end;
  background-image: url("assets/image/4.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto 91%;
  min-height: 548px;
}

.future-copy {
  align-self: end;
  max-width: 700px;
  padding: 0 86px 50px 34px;
}

.future-copy h2 {
  color: #1d2740;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 24px;
  white-space: nowrap;
}

.future-copy p,
.future-copy li {
  font-family: Georgia, "Times New Roman", serif;
  color: #232323;
  font-size: 17px;
  line-height: 1.48;
}

.future-copy p {
  font-weight: 400;
  margin: 0 0 28px;
  max-width: 540px;
}

.future-copy ul {
  margin: 0 0 34px 28px;
  max-width: 560px;
  padding: 0;
}

.future-copy li {
  margin-bottom: 12px;
  padding-left: 2px;
}

.future-copy .button-orange {
  border: 2px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 10px 22px rgba(195, 67, 52, 0.12);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  height: 56px;
  letter-spacing: 0.02em;
  min-width: 206px;
  vertical-align: bottom;
}

.newsletter {
  align-items: center;
  background: var(--cream);
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1.02fr;
  padding: 58px 74px 72px;
}

.newsletter h2 {
  color: #25364d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.04;
  margin: 0 0 18px;
  white-space: nowrap;
}

.newsletter p:not(.eyebrow) {
  color: #5f6368;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
}

.orange {
  color: var(--orange);
}

.newsletter .eyebrow {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-shadow: none;
}

.newsletter .eyebrow::before {
  background: var(--orange);
  content: "";
  display: inline-block;
  height: 2px;
  width: 30px;
}

.subscribe-form label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.subscribe-form div {
  display: flex;
  filter: drop-shadow(0 10px 22px rgba(110, 41, 30, 0.12));
}

.subscribe-form input {
  border: 0;
  border-radius: 34px 0 0 34px;
  flex: 1;
  font-size: 16px;
  min-height: 60px;
  min-width: 0;
  padding: 0 28px;
}

.subscribe-form button {
  background: var(--orange);
  border: 0;
  border-radius: 0 34px 34px 0;
  color: white;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  min-width: 140px;
}

.subscribe-form button:disabled {
  cursor: wait;
  opacity: 0.88;
}

.subscribe-form small {
  color: #8b8e93;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-top: 12px;
  padding-left: 24px;
}

.subscribe-status {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 12px 0 0;
  min-height: 20px;
  padding-left: 24px;
}

.subscribe-status.is-success {
  color: #2f8d46;
}

.subscribe-status.is-error {
  color: #c34334;
}

.privacy-icon {
  color: #8b8e93;
  display: inline-flex;
  flex: 0 0 12px;
}

.privacy-icon i {
  font-size: 12px;
}

.site-footer {
  background: #172947;
  color: #c9d2df;
  padding: 68px 72px 22px;
}

.footer-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: 1.35fr 0.62fr 0.78fr 1.15fr;
  margin: 0 auto;
  max-width: 1180px;
}

.footer-logo strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.footer-grid .footer-logo {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 0;
  white-space: nowrap;
}

.site-footer .brand-logo-img {
  height: 42px;
}

.footer-brand p,
.footer-grid p,
.footer-grid a {
  color: #c8d1df;
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.footer-brand p {
  max-width: 335px;
  margin-top: 18px;
}

.footer-grid h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.footer-grid a {
  margin-bottom: 17px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin: 0;
  width: 38px;
  color: #ffffff;
}

.socials i {
  font-size: 16px;
}

.footer-contact p {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.footer-contact p a {
  white-space: normal;
}

.footer-br {
  display: none;
}

.contact-icon {
  color: var(--gold);
  flex: 0 0 16px;
  margin-top: 3px;
}

.contact-icon i {
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8694aa;
  display: flex;
  font-size: 13px;
  justify-content: center;
  margin: 58px auto 0;
  max-width: 1180px;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom a {
  color: #aab5c8;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    padding: 14px 24px;
    height: 70px;
  }

  .main-nav {
    display: none;
  }

  .header-menu-toggle {
    display: inline-flex;
  }

  .header-donate {
    padding: 10px 16px;
    font-size: 14px;
  }

  .nav-dropdown-menu {
    left: 0;
    min-width: 210px;
  }

  .hero-content {
    padding: 80px 24px 60px;
    text-align: left;
  }

  .hero-desktop h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .hero-copy {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .model {
    padding: 60px 24px 80px;
  }

  .model h2 {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .model-row,
  .model-row.reverse {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .model-row.reverse .model-panel {
    order: 2;
  }

  .model-row.reverse .model-photo {
    order: 1;
  }

  .model-photo,
  .model-panel {
    min-height: 380px;
  }

  .model-panel {
    padding: 40px 30px;
  }

  .model-panel h3 {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .model-panel p {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat strong {
    font-size: 32px;
  }

  .future {
    grid-template-columns: 1fr;
    padding: 60px 24px 0;
  }

  .future-photo {
    min-height: 600px;
    background-size: contain;
    background-position: center bottom;
  }

  .future-copy {
    padding: 40px 32px 60px;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
    text-align: center;
  }

  .newsletter .eyebrow {
    justify-content: center;
  }

  .newsletter h2 {
    font-size: 32px;
    white-space: normal;
  }

  .newsletter p {
    margin: 0 auto;
  }

  .subscribe-form div {
    max-width: 500px;
    margin: 0 auto;
  }

  .site-footer {
    padding: 60px 24px 30px;
  }

  .footer-grid {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-top: 40px;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 16px;
    height: 64px;
  }

  .header-donate {
    display: none;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand-logo-img {
    height: 36px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
    background: #ffffff;
  }

  .hero-mobile-img {
    height: 42vh;
    background-image: url("assets/image/hero.jpg");
    background-size: cover;
    background-position: center 30%;
    border-bottom: 4px solid var(--gold);
  }

  .hero-mobile-content {
    padding: 40px 24px 60px;
    text-align: center;
  }

  .eyebrow-mobile {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  .hero-mobile-content h1 {
    color: #1a1a2e;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero-mobile-content p {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .hero-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn-mobile {
    align-items: center;
    border-radius: 4px;
    display: flex;
    font-size: 16px;
    font-weight: 800;
    height: 52px;
    justify-content: center;
    text-decoration: none;
    width: 100%;
  }

  .btn-green {
    background: var(--leaf);
    color: #fff;
  }

  .btn-outline {
    border: 1px solid #1a1a2e;
    color: #1a1a2e;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .model h2 {
    font-size: 32px;
  }

  .model-panel h3 {
    font-size: 32px;
  }

  .model-panel a {
    width: 100%;
    height: 48px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }

  .stat:last-child {
    grid-column: span 2;
  }

  .future {
    grid-template-columns: 1fr;
    padding: 60px 36px 0;
  }

  .future-photo {
    min-height: 600px;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0;
  }

  .future-copy {
    padding: 40px 36px 60px;
  }

  .future-copy h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .future-copy ul {
    margin-left: 18px;
    margin-bottom: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 40px 20px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: span 2;
  }

  .footer-brand br {
    display: none;
  }

  .footer-br {
    display: block;
  }

  .footer-logo {
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .footer-brand p {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .socials {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .footer-contact p {
    justify-content: flex-start;
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-contact i {
    width: 20px;
    text-align: center;
    color: var(--gold);
  }

  .subscribe-form div {
    display: block;
    filter: none;
  }

  .subscribe-form input {
    border-radius: 30px;
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
  }

  .subscribe-form button {
    border-radius: 30px;
    width: 100%;
    height: 54px;
  }

  .mobile-nav {
    padding: 10px 16px 24px;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 100;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
  }

  .mobile-nav a,
  .mobile-work-menu summary {
    font-size: 18px;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
  }

  .mobile-work-menu summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-work-menu summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .mobile-work-menu[open] summary::after {
    transform: rotate(180deg);
  }

  .mobile-submenu {
    padding: 0;
    background: #f9f9f9;
  }

  .mobile-submenu a {
    padding-left: 32px;
    font-size: 16px;
  }

  .mobile-donate-link {
    margin-top: auto;
    background: var(--leaf);
    color: #fff !important;
    border-radius: 30px !important;
    margin-bottom: 20px;
    border-bottom: none !important;
  }
}

