  :root {
    --green-dark: #0f2318;
    --green-mid: #1a3a28;
    --green-light: #2d5a3d;
    --green-soft: #4a7c5e;
    --gold: #a0720a;
    --gold-light: #c49010;
    --gold-pale: #f0d080;
    --cream: #f7f3ee;
    --warm-white: #fdfaf6;
    --text-dark: #0f1a14;
    --text-mid: #3a4a40;
    --sage: #8fac90;
    --blush: #f2e8df;
    --nav-h: 68px;
    --ff-serif: 'Playfair Display', Georgia, serif;
    --ff-sans: 'Inter', system-ui, sans-serif;

  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  a{
    text-decoration: none;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
    overflow-y: visible !important;
    background-color: #fff !important;
  }
  button{
    font-family: var(--ff-sans);
    cursor: pointer;
    border: none;
    background: none;
  }

  /* ════════════════════════════════════════
    NAVIGATION
════════════════════════════════════════ */

  /* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(184,150,62,0.2);
  transition: background 0.3s;
  background-color: var(--green-dark);
}
.nav.scrolled { background: rgba(15,35,24,0.97); backdrop-filter: blur(10px); }
.nav-inner {
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand { 
  display: flex; 
  flex-direction: column;
  gap: 2px; 
  flex-shrink: 0; 
  text-decoration: none; 
}
.nav-brand-name { 
  font-family: var(--ff-serif); 
  font-size: 1rem; 
  font-weight: 700; 
  color: var(--gold-light); 
  letter-spacing: .01em; line-height: 1; 
} 
.nav-brand-sub { 
  font-size: .56rem; 
  letter-spacing: .2em; 
  text-transform: uppercase; 
  color: var(--sage); 
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav-cta { 
  background: var(--gold); 
  color: var(--warm-white); 
  font-size: .73rem; 
  font-weight: 700; 
  letter-spacing: .12em; 
  text-transform: uppercase; 
  padding: 10px 20px; 
  transition: background .2s, transform .15s; 
  white-space: nowrap; 
} 
.btn-nav-cta:hover { 
  background: var(--gold-light); 
  transform: translateY(-1px); 
  color: var(--warm-white); 
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--warm-white);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem 2rem;
  gap: 1rem;
  background: rgba(15,35,24,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(184,150,62,0.2);
  position: absolute;
  inset: auto 0px;
}
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-mobile.open { 
  display: flex;
  align-items: flex-start;
}
.nav-right{
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-button{
  padding: 4px;
}
.cart-icon{
  width: 20px;
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
  }
  .nav-hamburger { 
    display: flex; 
  }
  .nav-inner .btn-gold { 
    display: none; 
  }
  .btn-nav-cta {
    display: none;
  } 
  #btn-nav-mobile {
    display: flex;
  } 
}

  /* HERO */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--green-dark);
    align-items: stretch;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 52px 80px 72px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 134, 11, 0.12);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 100px;
    padding: 7px 16px;
    margin-bottom: 32px;
    width: fit-content;
  }
  .hero-badge span {
    color: #d4a017;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b8860b;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.5;
      transform: scale(0.8);
    }
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 8px;
  }
  .hero h1 em {
    font-style: italic;
    color: #d4a017;
    display: block;
  }
  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--sage);
    line-height: 1.55;
    margin: 20px 0 38px;
    max-width: 420px;
  }
  .hero-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 40px;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4a017;
    line-height: 1;
  }
  .stat-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-gold {
    background: #b8860b;
    color: var(--warm-white) !important;
    border: none;
    border-radius: 6px;
    padding: 16px 38px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none !important;
  }
  .btn-gold:hover {
    background: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(184, 134, 11, 0.35);
  }
  .btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    padding: 16px 32px;
    font-size: 0.92rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-outline:hover {
    border-color: #b8860b;
    color: #d4a017;
  }
  .hero-right {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
  }
  .hero-img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    display: block;
    flex-shrink: 0;
  }
  .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--green-dark), transparent);
    z-index: 1;
  }
  .hero-quote-box {
    position: absolute;
    bottom: 36px;
    left: 28px;
    right: 28px;
    z-index: 2;
    background: rgba(10, 24, 16, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 12px;
    padding: 20px 26px;
  }
  .hero-quote-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .hero-quote-box cite {
    font-size: 0.72rem;
    color: #b8860b;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-style: normal;
  }

  /* PRESS BAR */
  .press {
    background: var(--green-mid);
    padding: 20px 72px;
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    flex-wrap: wrap;
  }
  .press-lbl {
    font-size: 0.68rem;
    color: var(--sage);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
  }
  .press-div {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
  }
  .press-logos {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
  }
  .press-logo {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.03em;
  }
  .press-logo.hi {
    color: rgba(255, 255, 255, 0.75);
  }

  /* SECTIONS */
  .section {
    padding: 96px 72px;
    max-width: 100%;
  }
  .section.dark {
    background: var(--green-dark);
  }
  .section.cream {
    background: var(--cream);
  }
  .section.blush {
    background: var(--blush);
  }
  .section.white {
    background: var(--warm-white);
  }
  .eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-soft);
    margin-bottom: 14px;
  }
  .eyebrow.light {
    color: var(--sage);
  }
  h2.serif {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--green-dark);
  }
  h2.serif.white {
    color: #fff;
  }
  h2.serif em {
    font-style: italic;
    color: var(--green-soft);
  }
  h2.serif.white em {
    color: #d4a017;
  }
  /* STORY */
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .story-body p {
    font-size: 1rem;
    line-height: 1.78;
    color: var(--text-mid);
    margin-bottom: 18px;
  }
  .pull-quote {
    border-left: 3px solid #b8860b;
    padding: 16px 22px;
    background: rgba(184, 134, 11, 0.07);
    border-radius: 0 8px 8px 0;
    margin: 28px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--green-dark);
    line-height: 1.5;
  }
  .story-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 28px 72px rgba(15, 35, 24, 0.22);
    position: relative;
  }
  .story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .story-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--green-dark);
    border: 1px solid #b8860b;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .story-badge-icon {
    font-size: 1.6rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .story-badge strong {
    display: block;
    color: #d4a017;
    font-size: 0.88rem;
  }
  .story-badge span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
  }
  .svc-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s;
  }
  .svc-card:hover {
    border-color: rgba(184, 134, 11, 0.45);
    transform: translateY(-4px);
  }
  .svc-card.featured {
    background: rgba(184, 134, 11, 0.1);
    border-color: rgba(184, 134, 11, 0.4);
  }
  .svc-icon {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .svc-tag {
    display: inline-block;
    background: #b8860b;
    color: #0f2318;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
    margin-bottom: 12px;
  }
  .svc-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }
  .svc-card p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    line-height: 1.65;
  }
  .svc-list {
    list-style: none;
    margin-top: 18px;
  }
  .svc-list li {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.85rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .svc-list li::before {
    content: '→';
    color: #b8860b;
    font-size: 0.78rem;
  }

  /* HOW IT WORKS */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
    align-items: start;
  }
  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(45, 90, 61, 0.12);
    line-height: 1;
    margin-bottom: -14px;
  }
  .step-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--green-dark);
  }
  .step-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;

  }
  .step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 9px;
  }
  .step p {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* BUNDLES */
  .bundles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 1100px;
    margin: 52px auto 0;
    width: 100%;
  }
  .bundle {
    border: 1.5px solid rgba(45, 90, 61, 0.18);
    border-radius: 18px;
    padding: 40px 36px;
    transition: all 0.25s;
    background: var(--warm-white);
  }
  .bundle:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(15, 35, 24, 0.11);
    border-color: rgba(45, 90, 61, 0.4);
  }
  .bundle.hero-bundle {
    background: var(--green-dark);
    border-color: rgba(184, 134, 11, 0.45);
    position: relative;
  }
  .bundle-badge {
    position: absolute;
    top: 0;
    right: 26px;
    background: #b8860b;
    color: #0f2318;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 0 0 8px 8px;
  }
  .bundle-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }
  .bundle-icon {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }
  .bundle.hero-bundle .bundle-icon {
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.4);
  }
  .bundle-tag {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-soft);
    margin-bottom: 3px;
  }
  .bundle.hero-bundle .bundle-tag {
    color: var(--sage);
  }
  .bundle-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-dark);
  }
  .bundle.hero-bundle .bundle-name {
    color: #fff;
  }
  .bundle-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-mid);
    margin-bottom: 22px;
  }
  .bundle.hero-bundle .bundle-desc {
    color: rgba(255, 255, 255, 0.62);
  }
  .bundle-items {
    background: var(--cream);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 20px;
  }
  .bundle.hero-bundle .bundle-items {
    background: rgba(255, 255, 255, 0.06);
  }
  .bundle-items-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-soft);
    margin-bottom: 12px;
  }
  .bundle.hero-bundle .bundle-items-lbl {
    color: var(--sage);
  }
  .bundle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .bundle.hero-bundle .bundle-item {
    border-bottom-color: rgba(255, 255, 255, 0.07);
  }
  .bundle-item:last-child {
    border-bottom: none;
  }
  .bundle-item-name {
    color: var(--text-dark);
  }
  .bundle.hero-bundle .bundle-item-name {
    color: rgba(255, 255, 255, 0.85);
  }
  .bundle-item-dur {
    color: var(--green-soft);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 10px;
  }
  .bundle.hero-bundle .bundle-item-dur {
    color: #d4a017;
  }
  .bundle-best {
    background: rgba(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.22);
    border-radius: 7px;
    padding: 10px 14px;
    margin-bottom: 24px;
    font-size: 0.83rem;
    color: var(--text-mid);
  }
  .bundle.hero-bundle .bundle-best {
    background: rgba(184, 134, 11, 0.12);
    color: rgba(255, 255, 255, 0.6);
  }
  .bundle-best strong {
    color: var(--green-dark);
  }
  .bundle.hero-bundle .bundle-best strong {
    color: #d4a017;
  }
  .bundle-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    border: 2px solid var(--green-dark);
    background: transparent;
    color: var(--green-dark);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s;
  }
  .bundle-cta:hover {
    background: var(--green-dark);
    color: #fff;
  }
  .bundle.hero-bundle .bundle-cta {
    background: #b8860b;
    border-color: #b8860b;
    color: #0f2318;
  }
  .bundle.hero-bundle .bundle-cta:hover {
    background: #d4a017;
    border-color: #d4a017;
  }
  .bundles-footer {
    text-align: center;
    margin-top: 48px;
    padding: 36px 40px;
    background: var(--cream);
    border-radius: 14px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  .bundles-footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 9px;
  }
  .bundles-footer p {
    color: var(--text-mid);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  /* TESTIMONIALS */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 52px;
  }
  .testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 32px 28px;
  }
  .stars {
    color: #b8860b;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }
  .testi-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .testi-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .testi-author strong {
    color: #fff;
    font-size: 0.88rem;
  }
  .testi-author span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    display: block;
  }
  .wt-badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d4a017;
    margin-top: 6px;
    width: fit-content;
  }

  /* FAQ */
  .faq-inner {
    max-width: 740px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid rgba(45, 90, 61, 0.15);
    padding: 26px 0;
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 20px;
  }
  .faq-q span {
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.4;
  }
  .faq-plus {
    color: var(--green-soft);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
  }
  .faq-item.open .faq-plus {
    transform: rotate(45deg);
    color: #b8860b;
  }
  .faq-a {
    color: var(--text-mid);
    font-size: 0.93rem;
    line-height: 1.72;
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.35s ease,
      opacity 0.25s,
      padding-top 0.25s;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    opacity: 1;
    padding-top: 14px;
  }

  /* FINAL CTA */
  .final-cta {
    background: var(--green-dark);
    padding: 110px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 110%, rgba(45, 90, 61, 0.5) 0%, transparent 65%);
  }
  .final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    max-width: 680px;
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
  }
  .final-cta h2 em {
    font-style: italic;
    color: #d4a017;
  }
  .final-cta p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 1rem;
    max-width: 440px;
    margin: 0 auto 44px;
    line-height: 1.68;
    position: relative;
    z-index: 1;
  }
  .final-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .btn-cta {
    background: #b8860b;
    color: #0f2318;
    border: none;
    border-radius: 8px;
    padding: 19px 52px;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-cta:hover {
    background: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(184, 134, 11, 0.38);
  }
  .fine {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 22px;
    position: relative;
    z-index: 1;
  }

  /* FOOTER */
  footer {
    background: #070f09;
    padding: 56px 72px;
    border-top: 1px solid rgba(184, 134, 11, 0.14);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
    align-items: start;
  }
  .footer-brand p {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.83rem;
    line-height: 1.7;
    max-width: 270px;
    margin-top: 12px;
  }
  .footer-col h4 {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    font-size: 0.86rem;
    margin-bottom: 9px;
    transition: color 0.2s;
  }
  .footer-col a:hover {
    color: #d4a017;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.78rem;
  }
  .disclaimer {
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.72rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
    margin-top: 20px;
  }

  /* ── ADA / ACCESSIBILITY STYLES ── */
  .skip-nav {
    position: absolute;
    top: -100px;
    left: 16px;
    background: #0f2318;
    color: #d4a017;
    padding: 12px 20px;
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    border: 2px solid #d4a017;
    transition: top 0.2s;
  }
  .skip-nav:focus {
    top: 0;
    outline: 3px solid #d4a017;
    outline-offset: 2px;
  }
  *:focus-visible {
    outline: 3px solid #d4a017;
    outline-offset: 3px;
    border-radius: 3px;
  }
  a:focus-visible,
  button:focus-visible {
    outline: 3px solid #d4a017;
    outline-offset: 3px;
  }
  button.faq-q {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  button.faq-q span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.4;
  }
  /* Ensure minimum 4.5:1 contrast on small text */
  .stat-lbl,
  .eyebrow,
  .press-lbl {
    color: #5a7a60;
  }
  .section.dark .stat-lbl,
  .section.dark .eyebrow {
    color: #a8c8a8;
  }
  /* Minimum tap target size 44x44px on mobile */
  @media (max-width: 768px) {
    .nav-cta,
    .btn-gold,
    .btn-outline,
    .btn-cta,
    .bundle-cta,
    .btn-plan {
      min-height: 44px;
      min-width: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .faq-q {
      min-height: 44px;
      align-items: center;
    }
  }
  /* Reduce motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    .reveal {
      opacity: 1;
      transform: none;
    }
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .nav-links {
      display: none;
    }
    .hero {
      grid-template-columns: 1fr;
    }
    .hero-left {
      padding: 110px 24px 56px;
    }
    .hero-right {
      height: 65vh;
    }
    .press,
    .section,
    .final-cta,
    footer {
      padding-left: 24px;
      padding-right: 24px;
    }
    .story-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .services-grid {
      grid-template-columns: 1fr;
    }
    .steps {
      grid-template-columns: 1fr 1fr;
    }
    .bundles-grid {
      grid-template-columns: 1fr;
      max-width: 480px;
    }
    .testi-grid {
      grid-template-columns: 1fr;
    }
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
  }

  @media (max-width: 624px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  .lm-box {
    width: 100%;
    margin: auto;
    animation: lmIn 0.28s ease;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  }
  @keyframes lmIn {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  .lm-header {
    background: #0f2318;
    padding: 32px 48px 28px;
    top: 0;
    z-index: 2;
    border-bottom: 2px solid rgba(184, 134, 11, 0.4);
  }
  .lm-header h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.55rem;
    font-weight: 700;
    margin: 0 0 4px;
  }
  .lm-header .lm-meta {
    font-size: 0.75rem;
    color: #8fac90;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .lm-body {
    padding: 40px 48px 48px;
  }
  .lm-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #0f2318;
    margin: 32px 0 10px;
    padding-top: 24px;
    border-top: 1px solid #eee;
  }
  .lm-body h3:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
  .lm-body p,
  .lm-body li {
    font-size: 0.91rem;
    line-height: 1.78;
    color: #3a4a40;
    margin-bottom: 10px;
  }
  .lm-body ul,
  .lm-body ol {
    padding-left: 22px;
    margin-bottom: 14px;
  }
  .lm-body li {
    margin-bottom: 6px;
  }
  .lm-body a {
    color: #a0720a;
    text-decoration: underline;
  }
  .lm-body a:hover {
    color: #0f2318;
  }
  .lm-alert {
    background: #f7f3ee;
    border-left: 4px solid #b8860b;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 18px 0;
    font-size: 0.88rem;
    color: #3a4a40;
    line-height: 1.65;
  }
  .lm-alert strong {
    color: #0f2318;
    display: block;
    margin-bottom: 3px;
  }
  .lm-contact {
    background: #0f2318;
    border-radius: 10px;
    padding: 22px 26px;
    margin-top: 28px;
  }
  .lm-contact p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.87rem;
    margin: 0 0 8px;
  }
  .lm-contact a {
    color: #d4a017;
  }
  .lm-contact strong {
    color: #fff;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
  }
  @media (max-width: 700px) {
    .lm-header {
      padding: 24px 20px;
    }
    .lm-body {
      padding: 24px 20px 36px;
    }
}
  .quiz-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10002;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
  }
  .quiz-overlay.open {
    display: flex;
  }
  .quiz-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    margin: auto;
    position: relative;
    animation: lmIn 0.3s ease;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }
  .quiz-header {
    background: #0f2318;
    padding: 28px 36px 22px;
    position: relative;
    border-bottom: 2px solid rgba(184, 134, 11, 0.35);
  }
  .quiz-header h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 3px;
  }
  .quiz-header p {
    color: #8fac90;
    font-size: 0.8rem;
    margin: 0;
  }
  .quiz-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    min-width: 36px;
    min-height: 36px;
  }
  .quiz-close:hover {
    background: rgba(255, 255, 255, 0.25);
  }
  .quiz-progress {
    height: 4px;
    background: #e8e4df;
  }
  .quiz-progress-bar {
    height: 100%;
    background: #b8860b;
    transition: width 0.4s ease;
  }
  .quiz-body {
    padding: 28px 32px;
  }
  .quiz-step {
    display: none;
  }
  .quiz-step.active {
    display: block;
  }
  .quiz-q {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f2318;
    margin-bottom: 18px;
    line-height: 1.35;
  }
  .quiz-options {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
  }
  .quiz-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(45, 90, 61, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #0f2318;
    width: 100%;
  }
  .quiz-opt:hover,
  .quiz-opt.selected {
    border-color: #b8860b;
    background: #faf6ef;
  }
  .quiz-opt-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .quiz-input {
    width: 100%;
    border: 2px solid rgba(45, 90, 61, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.93rem;
    font-family: 'DM Sans', sans-serif;
    color: #0f2318;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 12px;
    box-sizing: border-box;
  }
  .quiz-input:focus {
    border-color: #b8860b;
  }
  .quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .quiz-back {
    background: transparent;
    border: 2px solid rgba(45, 90, 61, 0.25);
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 0.87rem;
    font-weight: 600;
    color: #3a4a40;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .quiz-back:hover {
    border-color: #0f2318;
    color: #0f2318;
  }
  .quiz-next {
    background: #b8860b;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f2318;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
    flex: 1;
    max-width: 220px;
  }
  .quiz-next:hover {
    background: #d4a017;
  }
  .quiz-result {
    text-align: center;
  }
  .quiz-result-icon {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  .quiz-result h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f2318;
    margin-bottom: 10px;
  }
  .quiz-result p {
    color: #3a4a40;
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .quiz-rec-card {
    background: #f7f3ee;
    border-radius: 10px;
    padding: 16px 20px;
    border-left: 4px solid #b8860b;
    text-align: left;
    margin-bottom: 18px;
  }
  .quiz-rec-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f2318;
    margin: 0 0 5px;
  }
  .quiz-rec-card p {
    color: #3a4a40;
    font-size: 0.85rem;
    margin: 0;
  }
  .quiz-btn-primary {
    background: #b8860b;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 0.93rem;
    font-weight: 700;
    color: #0f2318;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  .quiz-btn-primary:hover {
    background: #d4a017;
  }
  .quiz-btn-secondary {
    background: transparent;
    border: 2px solid #0f2318;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f2318;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    display: block;
    text-align: center;
  }
  .quiz-btn-secondary:hover {
    background: #0f2318;
    color: #fff;
  }
  @media (max-width: 560px) {
    .quiz-body {
      padding: 20px 16px;
    }
    .quiz-header {
      padding: 20px 16px;
    }
  }
  /* ── ADD THIS TO YOUR EXISTING QUIZ CSS ── */

.quiz-btn-retake {
  background: transparent;
  border: none;
  padding: 10px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #8fac90;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.quiz-btn-retake:hover {
  color: #3a4a40;
}

  /* ── CAREERS PAGE STYLES ── */
.careers-hero {
  background: var(--green-dark);
  padding: 120px 72px 80px;
  position: relative;
  overflow: hidden;
}
.careers-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.careers-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(184,134,11,0.2);
}
.careers-hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}
.careers-hero .eyebrow {
  color: var(--sage);
}
.careers-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.careers-hero h1 em {
  font-style: italic;
  color: #d4a017;
}
.careers-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}
.careers-values {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.careers-value {
  display: flex;
  align-items: center;
  gap: 10px;
}
.careers-value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8860b;
  flex-shrink: 0;
}
.careers-value span {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ── OPENINGS SECTION ── */
.careers-openings {
  background: var(--warm-white);
  padding: 80px 72px 100px;
}
.careers-openings-header {
  margin-bottom: 52px;
}
.openings-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,90,61,0.08);
  border: 1px solid rgba(45,90,61,0.18);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.openings-count span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-soft);
}

/* ── ACCORDION ── */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion-item {
  background: #fff;
  border: 1px solid rgba(15,35,24,0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.accordion-item:hover {
  border-color: rgba(184,134,11,0.35);
  box-shadow: 0 6px 28px rgba(15,35,24,0.06);
}
.accordion-item.open {
  border-color: rgba(184,134,11,0.5);
  box-shadow: 0 8px 40px rgba(15,35,24,0.1);
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
  gap: 20px;
  cursor: default;
}
.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}
.accordion-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.accordion-meta {
  flex: 1;
  min-width: 0;
}
.accordion-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 5px;
}
.accordion-tagline {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.5;
  opacity: 0.8;
}
.accordion-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.acc-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(45,90,61,0.07);
  color: var(--green-soft);
  border: 1px solid rgba(45,90,61,0.15);
  white-space: nowrap;
}
.acc-tag.gold {
  background: rgba(184,134,11,0.08);
  color: var(--gold);
  border-color: rgba(184,134,11,0.2);
}
.accordion-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-see-more {
  background: transparent;
  border: 1.5px solid rgba(15,35,24,0.2);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.btn-see-more:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: rgba(15,35,24,0.04);
}
.btn-see-more .chevron {
  display: inline-block;
  transition: transform 0.3s ease;
  font-style: normal;
  font-size: 0.75rem;
}
.accordion-item.open .btn-see-more .chevron {
  transform: rotate(180deg);
}
.accordion-item.open .btn-see-more {
  border-color: rgba(184,134,11,0.4);
  color: var(--gold);
  background: rgba(184,134,11,0.04);
}

/* ── ACCORDION BODY ── */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item.open .accordion-body {
  max-height: 1200px;
}
.accordion-body-inner {
  border-top: 1px solid rgba(15,35,24,0.08);
  padding: 32px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.acc-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 14px;
}
.acc-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.acc-col p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.acc-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.acc-col ul li {
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--text-mid);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid rgba(15,35,24,0.05);
}
.acc-col ul li:last-child {
  border-bottom: none;
}
.acc-col ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #b8860b;
  font-size: 0.8rem;
  top: 6px;
}
.acc-who-box {
  background: var(--green-dark);
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: 4px;
}
.acc-who-box p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0;
}
.acc-who-box .acc-section-title {
  color: var(--sage);
  margin-bottom: 10px;
}
.accordion-apply-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(15,35,24,0.08);
  gap: 20px;
  flex-wrap: wrap;
}
.accordion-apply-note {
  font-size: 0.8rem;
  color: rgba(15,35,24,0.4);
  font-style: italic;
}
.btn-apply {
  background: #b8860b;
  color: #0f2318;
  border: none;
  border-radius: 8px;
  padding: 13px 32px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  cursor: not-allowed;
}
/**
.btn-apply:hover {
  background: #d4a017;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.3);
}
  **/

/* ── CULTURE STRIP ── */
.careers-culture {
  background: var(--green-dark);
  padding: 64px 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(184,134,11,0.15);
}
.culture-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.culture-card-icon {
  font-size: 1.6rem;
}
.culture-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.culture-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ── CTA FOOTER STRIP ── */
.careers-cta-strip {
  background: var(--cream);
  padding: 60px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(15,35,24,0.08);
}
.careers-cta-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.careers-cta-strip p {
  font-size: 0.87rem;
  color: var(--text-mid);
}
.careers-cta-strip a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

/* ── SKIP NAV ── */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--green-dark);
  padding: 10px 20px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-nav:focus {
  top: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .careers-hero { padding: 100px 32px 64px; }
  .careers-openings { padding: 60px 24px 80px; }
  .accordion-header { padding: 20px 20px; flex-wrap: wrap; gap: 14px; }
  .accordion-body-inner { grid-template-columns: 1fr; padding: 24px 20px; gap: 20px; }
  .accordion-tags { display: none; }
  .accordion-apply-row { grid-column: 1; }
  .careers-culture { grid-template-columns: 1fr; padding: 48px 24px; gap: 28px; }
  .careers-cta-strip { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .careers-hero h1 { font-size: 2rem; }
  .accordion-cta { width: 100%; }
  .btn-see-more { width: 100%; justify-content: center; }
  .btn-apply { width: 100%; text-align: center; }
  .accordion-apply-row { flex-direction: column; align-items: flex-start; }
}
/* ── HERO ── */
      .about-hero {
        position: relative;
        min-height: 88vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: calc(var(--nav-h) + 60px) 24px 80px;
      }

      .about-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
          radial-gradient(ellipse 70% 60% at 20% 50%, rgba(45,90,61,0.35) 0%, transparent 70%),
          radial-gradient(ellipse 50% 80% at 80% 30%, rgba(160,114,10,0.12) 0%, transparent 60%),
          linear-gradient(160deg, #0a1a10 0%, #0f2318 40%, #0a1a10 100%);
      }

      .about-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
          radial-gradient(circle, rgba(212,160,23,0.06) 1px, transparent 1px);
        background-size: 48px 48px;
        opacity: 0.6;
      }

      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 860px;
        text-align: center;
      }

      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--ff-sans);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold-light);
        margin-bottom: 28px;
        opacity: 0;
        animation: fadeUp 0.7s 0.2s ease forwards;
      }

      .hero-eyebrow span { width: 36px; height: 1px; background: var(--gold-light); opacity: 0.6; }

      .hero-h1 {
        font-family: var(--ff-serif);
        font-size: clamp(2.6rem, 6vw, 5rem);
        font-weight: 900;
        line-height: 1.08;
        color: #fff;
        margin-bottom: 28px;
        opacity: 0;
        animation: fadeUp 0.8s 0.35s ease forwards;
      }

      .hero-h1 em {
        font-style: italic;
        color: var(--gold-pale);
      }

      .hero-sub {
        font-size: 1.1rem;
        line-height: 1.75;
        color: rgba(255,255,255,0.65);
        max-width: 640px;
        margin: 0 auto 44px;
        opacity: 0;
        animation: fadeUp 0.8s 0.5s ease forwards;
      }

      .hero-badges {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeUp 0.8s 0.65s ease forwards;
      }

      .hero-badge {
        background: rgba(45,90,61,0.25);
        border: 1px solid rgba(212,160,23,0.22);
        border-radius: 100px;
        padding: 8px 20px;
        font-size: 0.8rem;
        font-weight: 500;
        color: rgba(255,255,255,0.7);
        letter-spacing: 0.04em;
      }

      /* ── SECTION WRAPPERS ── */
      .section { padding: 100px 24px; }
      .section-inner { max-width: 1100px; margin: 0 auto; }

      .section-label {
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold-light);
        margin-bottom: 16px;
      }

      .section-h2 {
        font-family: var(--ff-serif);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 20px;
      }

      .section-h2 em { font-style: italic; color: var(--gold-pale); }

      .section-lead {
        font-size: 1.05rem;
        line-height: 1.8;
        color: rgba(255,255,255,0.6);
        max-width: 600px;
      }

      /* ── FOUNDER SECTION ── */
      .founder-section {
        background: linear-gradient(135deg, #0d1f14 0%, #111e16 100%);
        border-top: 1px solid rgba(212,160,23,0.12);
        border-bottom: 1px solid rgba(212,160,23,0.12);
      }

      .founder-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }

      .founder-image-wrap {
        position: relative;
      }

      .founder-image-frame {
        position: relative;
        border-radius: 4px;
        overflow: hidden;
        aspect-ratio: 3/4;
        background: var(--green-mid);
      }

      .founder-image-frame img {
        width: 100%; height: 100%;
        object-fit: cover;
        display: block;
      }

      .founder-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(145deg, #1a3a28 0%, #2d5a3d 100%);
        gap: 16px;
      }

      .founder-placeholder-icon {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: rgba(212,160,23,0.15);
        border: 2px solid rgba(212,160,23,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
      }

      .founder-placeholder p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.3);
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }

      .founder-image-accent {
        position: absolute;
        bottom: -16px;
        right: -16px;
        width: 120px;
        height: 120px;
        border: 2px solid rgba(212,160,23,0.3);
        border-radius: 4px;
        z-index: -1;
      }

      .founder-badge-press {
        position: absolute;
        top: 20px;
        left: -20px;
        background: var(--gold);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 8px 14px;
        border-radius: 4px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        line-height: 1.4;
      }

      .founder-text { }

      .founder-quote {
        font-family: var(--ff-serif);
        font-size: 1.35rem;
        font-style: italic;
        color: var(--gold-pale);
        line-height: 1.55;
        margin-bottom: 32px;
        padding-left: 20px;
        border-left: 3px solid rgba(212,160,23,0.4);
      }

      .founder-body {
        font-size: 1rem;
        line-height: 1.85;
        color: rgba(255,255,255,0.65);
        margin-bottom: 20px;
      }

      .founder-stat-row {
        display: flex;
        gap: 32px;
        margin: 36px 0;
        padding: 28px;
        background: rgba(45,90,61,0.15);
        border: 1px solid rgba(212,160,23,0.15);
        border-radius: 8px;
        flex-wrap: wrap;
      }

      .founder-stat { flex: 1; min-width: 100px; }
      .founder-stat .num {
        font-family: var(--ff-serif);
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--gold-light);
        line-height: 1;
      }
      .founder-stat .lbl {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.45);
        letter-spacing: 0.05em;
        margin-top: 6px;
      }

      /* ── MISSION SECTION ── */
      .mission-section {
        background: var(--green-dark);
      }

      .mission-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-top: 60px;
      }

      .mission-card {
        padding: 36px;
        background: rgba(26,58,40,0.3);
        border: 1px solid rgba(212,160,23,0.12);
        border-radius: 8px;
        transition: border-color 0.3s;
      }

      .mission-card:hover { border-color: rgba(212,160,23,0.3); }

      .mission-icon {
        font-size: 1.8rem;
        margin-bottom: 16px;
      }

      .mission-card h3 {
        font-family: var(--ff-serif);
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 12px;
      }

      .mission-card p {
        font-size: 0.95rem;
        line-height: 1.75;
        color: rgba(255,255,255,0.55);
      }

      /* ── TEAM SECTION ── */
      .team-section {
        background: linear-gradient(180deg, #0d1f14 0%, #0a1a10 100%);
        border-top: 1px solid rgba(212,160,23,0.1);
      }

      .team-header {
        text-align: center;
        margin-bottom: 70px;
      }

      .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
      }

      .team-card {
        background: rgba(26,58,40,0.2);
        border: 1px solid rgba(212,160,23,0.1);
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      }

      .team-card:hover {
        transform: translateY(-6px);
        border-color: rgba(212,160,23,0.3);
        box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      }

      .team-photo {
        width: 100%;
        aspect-ratio: 1 / 1;
        position: relative;
        overflow: hidden;
        background: linear-gradient(145deg, #1a3a28, #2d5a3d);
      }

      .team-photo img {
        width: 100%; height: 100%;
        object-fit: cover;
        object-position: 50% 0%;
        display: block;
      }

      .team-photo-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
      }

      .team-avatar {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: rgba(212,160,23,0.12);
        border: 2px solid rgba(212,160,23,0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
      }

      .team-photo-placeholder p {
        font-size: 0.72rem;
        color: rgba(255,255,255,0.25);
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }

      .team-card-body {
        padding: 24px;
      }

      .team-name {
        font-family: var(--ff-serif);
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
      }

      .team-role {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gold-light);
        margin-bottom: 14px;
      }

      .team-divider {
        width: 32px;
        height: 1px;
        background: rgba(212,160,23,0.3);
        margin-bottom: 14px;
      }

      .team-desc {
        font-size: 0.88rem;
        line-height: 1.7;
        color: rgba(255,255,255,0.5);
      }

      /* ── VALUES BANNER ── */
      .values-banner {
        background: linear-gradient(135deg, #0f2318 0%, #1a3a28 50%, #0f2318 100%);
        border-top: 1px solid rgba(212,160,23,0.15);
        border-bottom: 1px solid rgba(212,160,23,0.15);
        padding: 70px 24px;
      }

      .values-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        text-align: center;
      }

      .value-item {}
      .value-num {
        font-family: var(--ff-serif);
        font-size: 3rem;
        font-weight: 900;
        color: var(--gold-light);
        line-height: 1;
        margin-bottom: 8px;
      }
      .value-label {
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.5);
      }

      
      /* ── ANIMATIONS ── */
      @keyframes fadeUp {
        from { opacity: 0; transform: translateY(28px); }
        to   { opacity: 1; transform: translateY(0); }
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 900px) {
        .founder-grid { grid-template-columns: 1fr; gap: 50px; }
        .founder-badge-press { left: 10px; }
        .team-grid { grid-template-columns: 1fr 1fr; }
        .mission-cols { grid-template-columns: 1fr; }
        .values-inner { grid-template-columns: repeat(2, 1fr); }
      }

      @media (max-width: 580px) {
        .team-grid { grid-template-columns: 1fr; }
        .values-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .cta-box { padding: 40px 28px; }
        .founder-stat-row { gap: 20px; }
      }