/* ============================================================
   MEISEL HEALTH — Master Stylesheet
   Editorial Direction: Deep Forest + Gold
   Fonts: Playfair Display, Lora, Jost (loaded via <link>)
   ============================================================ */

@import url('tokens.css');


/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 1.7;
  color: var(--color-black);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(32px, 4.5vw, 52px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.15;
}

strong { font-weight: var(--weight-semibold); }

em {
  font-family: inherit;
  font-style: italic;
  color: var(--color-forest-mid);
}

/* em on dark backgrounds uses lime for visibility */
.doors em,
.mission em,
.resources em,
.home-hero em,
.about-hero em,
.benefits em,
.trust em,
.final-cta em,
.lead-magnet em { color: var(--color-gold); }


/* ============================================================
   UTILITY CLASSES
   ============================================================ */

/* Section overline label — editorial small caps */
.label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-olive-dark);
  margin-bottom: 24px;
}

/* Labels on dark backgrounds get the brighter lime */
.doors .label,
.mission .label,
.resources .label,
.home-hero .label,
.about-hero .label,
.benefits .label,
.trust .label,
.final-cta .label,
.lead-magnet .label,
.footer .label { color: var(--color-gold); }

.label--with-rule {
  display: flex;
  align-items: center;
  gap: 12px;
}

.label--with-rule::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* Gold divider rules */
.gold-rule {
  border: none;
  height: 1px;
  background: var(--color-gold-divider);
  width: 100%;
}

.gold-rule--short {
  width: 80px;
  background: var(--color-olive-dark);
  opacity: 0.5;
  margin-bottom: 28px;
}

/* Compliance text */
.compliance {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-stone);
}

/* AI-extractable content classes */
.key-definition {}
.speakable-answer {}
.answer-block {}
.product-card__definition {}


/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: 72px;
  background: var(--color-forest);
  transition: box-shadow var(--transition-base);
}

.nav--scrolled {
  box-shadow: var(--shadow-nav);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-16);
  position: relative;
}

.nav__left,
.nav__right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__right { gap: 24px; }

.nav__link {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.nav__link:hover { color: var(--color-gold); }

.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--color-white);
  white-space: nowrap;
}

.nav__cta {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-white);
  height: 36px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  background: var(--color-forest-mid);
  border: 1.5px solid var(--color-gold);
  transition: background var(--transition-base);
}

.nav__cta:hover { background: var(--color-forest-light); }

/* Hamburger */
.nav__hamburger {
  display: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: calc(var(--z-nav) + 1);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-gold);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-nav);
  background: var(--color-forest);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.nav__overlay.active {
  display: flex;
  opacity: 1;
}

.nav__overlay-link {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.nav__overlay-link:hover { color: var(--color-gold); }


/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px; /* account for fixed nav */
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

@media (min-width: 769px) {
  .hero__bg { background-attachment: fixed; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 44, 38, 0.88) 0%,
    rgba(7, 44, 38, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
  padding: 0 var(--space-8);
}

.hero__label {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-max);
  color: var(--color-gold);
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: 96px;
  line-height: 0.95;
  color: var(--color-white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.hero__headline span { display: block; }

.hero__headline-line2 {
  padding-left: 60px;
}

.hero__subhead {
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: var(--weight-regular);
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 48px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(196, 206, 98, 0.30);
  z-index: 3;
}

/* Hero staggered animations */
.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.hero-reveal--label {
  transform: translateY(0);
  animation: heroFadeIn 500ms ease 200ms forwards;
}

.hero-reveal--h1-line1 { animation: heroFadeUp 600ms ease-out 400ms forwards; }
.hero-reveal--h1-line2 { animation: heroFadeUp 600ms ease-out 550ms forwards; }
.hero-reveal--subhead  { animation: heroFadeUp 600ms ease-out 700ms forwards; }
.hero-reveal--buttons  { animation: heroFadeUp 500ms ease-out 900ms forwards; }

@keyframes heroFadeIn {
  to { opacity: 1; }
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   TICKER BAR
   ============================================================ */

.ticker {
  position: relative;
  z-index: 1;
  height: 48px;
  background: var(--color-olive);
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  animation: tickerScroll 35s linear infinite;
}

.ticker__content {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-black);
  flex-shrink: 0;
  padding-right: 0;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   ABOUT — MEET ALISSA
   ============================================================ */

.about {
  position: relative;
  z-index: 1;
  background: var(--color-cream);
  min-height: 700px;
  display: flex;
}

.about__photo {
  width: 45%;
  flex-shrink: 0;
  position: relative;
}

.about__photo-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.about__photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  width: 55%;
  padding: 96px 80px 96px 72px;
}

.about__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-black);
  max-width: 500px;
  margin-bottom: 32px;
}

.about__body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--color-black);
  max-width: 460px;
  margin-bottom: 44px;
}

.about__body p + p { margin-top: 1.4em; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.about__stat {
  text-align: left;
}

.about__stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -2px;
  color: var(--color-forest);
}

.about__stat-label {
  display: block;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.65rem;
  color: var(--color-stone);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 8px;
}


/* ============================================================
   THREE DOORS
   ============================================================ */

.doors {
  position: relative;
  z-index: 1;
  background: var(--color-forest);
  padding: var(--section-pad-y) var(--section-pad-x);
}

.doors__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.doors__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 20px;
}

.doors__subhead {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.doors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.doors__card {
  display: block;
  cursor: pointer;
}

.doors__card-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.doors__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.doors__card:hover .doors__card-photo img {
  transform: scale(1.04);
}

.doors__card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(7, 44, 38, 0.65) 100%);
  pointer-events: none;
}

.doors__card-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-gold);
  margin-top: 20px;
  margin-bottom: 10px;
}

.doors__card-title {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  max-width: 280px;
  margin-bottom: 16px;
}

.doors__card-link {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-base);
}

.doors__card-link .arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}

.doors__card:hover .doors__card-link { color: var(--color-gold-light); }
.doors__card:hover .doors__card-link .arrow { transform: translateX(5px); }


/* ============================================================
   PARTNER BAR
   ============================================================ */

.partner-bar {
  position: relative;
  z-index: 1;
  height: 64px;
  background: var(--color-olive);
  display: flex;
  align-items: center;
}

.partner-bar__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.partner-bar__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.20);
}

.partner-bar__item:last-child { border-right: none; }

.partner-bar__name {
  font-family: var(--font-label);
  font-weight: var(--weight-light);
  font-size: 18px;
  color: var(--color-black);
}

.partner-bar__name--serif {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
}

.partner-bar__seen-in {
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-bar__seen-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-black);
}

.partner-bar__placeholder {
  width: 80px;
  height: 20px;
  background: rgba(0, 0, 0, 0.15);
}


/* ============================================================
   MISSION / DECLARATION
   ============================================================ */

.mission {
  position: relative;
  z-index: 1;
  background: var(--color-forest);
  padding: 120px var(--section-pad-x);
  text-align: center;
}

.mission__inner {
  max-width: 760px;
  margin: 0 auto;
}

.mission__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: 60px;
  line-height: var(--leading-none);
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto 36px;
}

.mission__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.6;
  color: var(--color-gold);
  max-width: 620px;
  margin: 0 auto 40px;
  border: none;
  padding: 0;
}

.mission__quote p { color: inherit; font: inherit; line-height: inherit; }

.mission__body {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  line-height: var(--leading-loose);
  color: rgba(255, 255, 255, 0.70);
  max-width: 600px;
  margin: 0 auto 52px;
}

.mission__body p {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.mission__body p + p { margin-top: 1.4em; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  position: relative;
  z-index: 1;
  background: var(--color-cream);
  display: flex;
  min-height: 600px;
}

.testimonials__photo {
  width: 42%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

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

.testimonials__content {
  width: 58%;
  padding: 96px 80px 96px 64px;
}

.testimonial {
  border-left: 3px solid var(--color-gold);
  padding-left: 20px;
  margin-bottom: 44px;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: var(--leading-relaxed);
  color: var(--color-black);
  max-width: 440px;
  margin-bottom: 12px;
}

.testimonial__attribution {
  font-family: var(--font-label);
  font-weight: var(--weight-semibold);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-olive-dark);
  font-style: normal;
}

.testimonials__divider {
  width: 100%;
  height: 1px;
  background: rgba(196, 206, 98, 0.20);
  margin-bottom: 44px;
}

.testimonials__more {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-base);
}

.testimonials__more .arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}

.testimonials__more:hover { color: var(--color-gold-light); }
.testimonials__more:hover .arrow { transform: translateX(5px); }


/* ============================================================
   RESOURCES PREVIEW
   ============================================================ */

.resources {
  position: relative;
  z-index: 1;
  background: var(--color-forest);
  padding: var(--section-pad-y) var(--section-pad-x);
}

.resources__header {
  text-align: center;
  margin-bottom: 56px;
}

.resources__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.resources__card {
  display: block;
  overflow: hidden;
  background: var(--color-cream);
}

.resources__card-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.resources__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.resources__card:hover .resources__card-photo img {
  transform: scale(1.05);
}

.resources__card-body { padding: 28px; }

.resources__card-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-gold);
  margin-bottom: 10px;
}

.resources__card-title {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-black);
  margin-bottom: 20px;
}

.resources__card-link {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-base);
}

.resources__card-link .arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}

.resources__card:hover .resources__card-link { color: var(--color-gold); }
.resources__card:hover .resources__card-link .arrow { transform: translateX(4px); }

.resources__footer {
  text-align: center;
  margin-top: 52px;
}


/* ============================================================
   LEAD MAGNET
   ============================================================ */

.lead-magnet {
  position: relative;
  z-index: 1;
  background: var(--color-forest);
  padding: var(--section-pad-y) var(--section-pad-x);
}

.lead-magnet__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.lead-magnet__left {
  width: 52%;
  flex-shrink: 0;
}

.lead-magnet__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-white);
  max-width: 460px;
  margin-bottom: 24px;
}

.lead-magnet__body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
  margin-bottom: 40px;
}

.lead-magnet__right {
  width: 48%;
  position: relative;
  min-height: 400px;
}

.lead-magnet__photo {
  width: 60%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-left: auto;
}

.lead-magnet__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-magnet__guide {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 45%;
  background: var(--color-cream-deep);
  padding: 24px;
  box-shadow: var(--shadow-guide);
  z-index: 2;
}

.lead-magnet__guide-brand {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-gold);
  margin-bottom: 12px;
}

.lead-magnet__guide-rule {
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 12px;
}

.lead-magnet__guide-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-black);
  line-height: 1.3;
  margin-bottom: 8px;
}

.lead-magnet__guide-sub {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: var(--weight-light);
  color: var(--color-stone);
}


/* ============================================================
   PHOTO STRIP
   ============================================================ */

.photo-strip {
  position: relative;
  z-index: 1;
  display: flex;
  height: 280px;
  width: 100%;
  overflow: hidden;
}

.photo-strip__col {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.photo-strip__col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter var(--transition-slow);
}

.photo-strip__col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 44, 38, 0.15);
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.photo-strip__col:hover::after { opacity: 0; }
.photo-strip__col:hover img { filter: brightness(1.08); }


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  position: relative;
  z-index: 1;
  background: var(--color-forest);
  padding: 72px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 240px;
  margin-bottom: 28px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__social-icon {
  color: var(--color-gold);
  transition: color var(--transition-fast);
}

.footer__social-icon:hover { color: var(--color-gold-light); }

.footer__social-icon svg {
  width: 22px;
  height: 22px;
}

.footer__nav-heading,
.footer__compliance-heading {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-gold);
  margin-bottom: 24px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__nav-link {
  font-family: var(--font-label);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer__nav-link:hover { color: var(--color-white); }

.footer__compliance-text {
  font-family: var(--font-label);
  font-size: 12px;
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.45);
  max-width: 300px;
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 52px auto 0;
  padding: 0 var(--section-pad-x);
}

.footer__bottom-rule {
  width: 100%;
  height: 1px;
  background: rgba(196, 206, 98, 0.20);
}

.footer__copyright {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 24px;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  background: var(--color-forest);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  border: none;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-primary:hover {
  background: var(--color-forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-primary--bordered { border: 1.5px solid var(--color-gold); }

.btn-magenta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 40px;
  background: var(--color-magenta);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  border: none;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-magenta:hover {
  background: var(--color-magenta-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  border: 1.5px solid var(--color-white);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.btn-ghost:hover {
  background: var(--color-white);
  color: var(--color-forest);
  transform: translateY(-2px);
}

/* Accessibility — focus-visible states */
.btn-primary:focus-visible,
.btn-magenta:focus-visible,
.btn-ghost:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-gold);
  transition: color var(--transition-base);
}

.btn-arrow .arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}

.btn-arrow:hover { color: var(--color-gold-light); }
.btn-arrow:hover .arrow { transform: translateX(5px); }


/* ============================================================
   GRAIN OVERLAY
   ============================================================ */

.grain-overlay {
  position: relative;
  isolation: isolate;
}

.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 2;
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 500ms; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 600ms; }

/* Doors stagger in via nth-child */
.doors__grid > .doors__card:nth-child(1) { transition-delay: 0ms; }
.doors__grid > .doors__card:nth-child(2) { transition-delay: 150ms; }
.doors__grid > .doors__card:nth-child(3) { transition-delay: 300ms; }


/* ============================================================
   MISSION — LIGHT VERSION (cream-deep bg)
   ============================================================ */

.mission-light {
  background: var(--color-cream-deep);
  padding: 120px var(--section-pad-x);
  text-align: center;
}

.mission-light__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-black);
  max-width: 740px;
  margin: 0 auto 40px;
}

.mission-light__headline em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-forest-mid);
}

.mission-light__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.4;
  color: var(--color-forest-mid);
  max-width: 620px;
  margin: 0 auto 40px;
  border: none;
  padding: 0;
}

.mission-light__quote p { color: inherit; font: inherit; line-height: inherit; }

.mission-light__body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--color-black);
  max-width: 600px;
  margin: 0 auto 48px;
}

.mission-light__body p { color: inherit; font: inherit; line-height: inherit; }
.mission-light__body p + p { margin-top: 1.4em; }


/* ============================================================
   TESTIMONIALS — CLEAN (no sidebar photo)
   ============================================================ */

.testimonials-clean {
  background: var(--color-cream);
  padding: var(--section-pad-y) var(--section-pad-x);
}

.testimonials-clean__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-clean__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.testimonials-clean .testimonial {
  border-left: none;
  border-top: none;
  padding-left: 0;
  padding-top: 0;
  margin-bottom: 0;
}

.testimonials-clean .testimonial__quote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.45;
  max-width: none;
  color: var(--color-black);
}


/* ============================================================
   RESOURCES — LIGHT VARIANT
   ============================================================ */

.resources--light {
  background: var(--color-cream-deep);
}

.resources--light .resources__headline {
  color: var(--color-black);
}

.resources--light .resources__card-link {
  color: var(--color-forest);
}

.resources--light .resources__card-link:hover {
  color: var(--color-gold);
}

.resources--light .resources__footer .btn-ghost {
  border-color: var(--color-forest);
  color: var(--color-forest);
}

.resources--light .resources__footer .btn-ghost:hover {
  background: var(--color-forest);
  color: var(--color-white);
}


/* ============================================================
   PARALLAX DIVIDERS
   ============================================================ */

.parallax-divider {
  position: relative;
  height: 45vh;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax-divider--tall {
  height: 55vh;
  min-height: 400px;
}

.parallax-divider--quote {
  height: 50vh;
  min-height: 360px;
}

.parallax-divider__bg {
  display: none;
}

/* Slow zoom animation on scroll for variety */
.parallax-divider__bg--zoom {
  animation: slowDrift 25s ease-in-out infinite alternate;
}

@keyframes slowDrift {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-2%); }
}

.parallax-divider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 44, 38, 0.55);
  z-index: -1;
}

.parallax-divider__overlay--gradient {
  background: linear-gradient(
    to bottom,
    rgba(7, 44, 38, 0.7) 0%,
    rgba(7, 44, 38, 0.3) 50%,
    rgba(7, 44, 38, 0.7) 100%
  );
}

.parallax-divider__text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--section-pad-x);
}

.parallax-divider__text p {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.parallax-divider__text--large p {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  text-transform: none;
  letter-spacing: -0.03em;
  color: var(--color-white);
  line-height: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
  .parallax-divider {
    background-attachment: scroll;
    height: 35vh;
    min-height: 240px;
  }
  .parallax-divider--tall { height: 40vh; }
  .parallax-divider--quote { height: 40vh; }
}


/* ============================================================
   HOMEPAGE — SPLIT HERO
   ============================================================ */

.home-hero {
  display: flex;
  min-height: 100vh;
  padding-top: 72px;
  background: var(--color-forest);
}

.home-hero__content {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 64px 96px 80px;
  max-width: 620px;
  margin-left: auto;
}

.home-hero__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 36px;
}

.home-hero__headline em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold);
}

.home-hero__subhead {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--weight-regular);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.home-hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-hero__image {
  width: 52%;
  position: relative;
  overflow: hidden;
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}


/* ============================================================
   ABOUT PAGE — SPLIT HERO
   ============================================================ */

.about-hero {
  display: flex;
  min-height: 80vh;
  padding-top: 72px; /* nav offset */
  background: var(--color-forest);
}

.about-hero__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 64px 64px 80px;
  max-width: 640px;
  margin-left: auto;
}

.about-hero__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 28px;
}

.about-hero__subhead {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 44px;
}

.about-hero__image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}


/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --section-pad-x: 2rem;
    --section-pad-y: 5rem;
  }

  .nav__left, .nav__right { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 1.5rem; }

  .hero__headline { font-size: 72px; }
  .hero__headline-line2 { padding-left: 40px; }

  .about { flex-direction: column; }
  .about__photo { width: 100%; height: 50vh; }
  .about__photo-inner { position: relative; height: 100%; }
  .about__content { width: 100%; padding: var(--section-pad-y) var(--section-pad-x); }
  .about__headline { font-size: 42px; }
  .about__stat-number { font-size: 40px; }

  .doors__grid { grid-template-columns: repeat(2, 1fr); }
  .doors__headline { font-size: 44px; }

  .home-hero { min-height: auto; }
  .home-hero__content { padding: 72px 48px; }
  .home-hero__headline { font-size: 54px; }

  .about-hero { min-height: auto; }
  .about-hero__content { padding: 72px 48px; }
  .about-hero__headline { font-size: 38px; }

  .partner-bar { display: none; }

  .mission { padding: var(--section-pad-y) var(--section-pad-x); }
  .mission__headline { font-size: 44px; }
  .mission__quote { font-size: 20px; }
  .mission-light__headline { font-size: 40px; }

  .testimonials { flex-direction: column; }
  .testimonials__photo { width: 100%; height: 50vh; }
  .testimonials__content { width: 100%; padding: var(--section-pad-y) var(--section-pad-x); }
  .testimonials-clean__grid { grid-template-columns: 1fr 1fr; }

  .resources__grid { grid-template-columns: repeat(2, 1fr); }
  .resources__headline { font-size: 40px; }

  .lead-magnet__inner { flex-direction: column; gap: 40px; }
  .lead-magnet__left { width: 100%; }
  .lead-magnet__headline { font-size: 38px; max-width: 100%; }
  .lead-magnet__body { max-width: 100%; }
  .lead-magnet__right { width: 100%; min-height: 320px; }

  .photo-strip { height: 200px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --section-pad-x: 1.5rem;
    --section-pad-y: 4rem;
  }

  /* GLOBAL MOBILE RESETS */
  html { overflow-x: hidden; }
  body { font-size: 1rem; overflow-x: hidden; }
  img { max-width: 100%; height: auto; }

  /* TYPOGRAPHY — EDITORIAL MOBILE */
  h1, h2 { font-size: clamp(2.4rem, 9vw, 4.5rem) !important; line-height: 0.95 !important; letter-spacing: -2px !important; }
  h3 { font-size: clamp(1.1rem, 4vw, 1.4rem) !important; }
  .label { font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 4px !important; }

  /* BUTTONS — full width centered */
  .btn-primary, .btn-magenta, .btn-ghost,
  .btn-primary--bordered {
    width: 100% !important;
    max-width: 380px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    text-align: center !important;
    padding: 18px 24px !important;
    font-size: 0.78rem !important;
    letter-spacing: 3px !important;
    height: auto !important;
  }

  /* SECTIONS — single column, padded */
  section { padding-left: 24px !important; padding-right: 24px !important; }

  /* HERO (old style) */
  .hero__headline { font-size: clamp(2.4rem, 9vw, 3.5rem) !important; }
  .hero__headline-line2 { padding-left: 0; }
  .hero__subhead { font-size: 1rem; }
  .hero__buttons { flex-direction: column; gap: 12px; align-items: center; }

  /* HOME HERO — words above image */
  .home-hero { flex-direction: column; }
  .home-hero__content { width: 100%; padding: 64px 24px 32px; margin-left: 0; }
  .home-hero__image { width: 100%; height: 50vh; }
  .home-hero__buttons { flex-direction: column; gap: 12px; align-items: center; }

  /* ABOUT HERO — stacks */
  .about-hero { flex-direction: column-reverse; }
  .about-hero__content { width: 100%; padding: 64px 24px; margin-left: 0; }
  .about-hero__image { width: 100%; height: 45vh; }

  /* TICKER */
  .ticker { height: 36px; }
  .ticker__content { font-size: 10px; }

  /* ABOUT SECTION */
  .about { flex-direction: column; }
  .about__photo { width: 100%; height: 45vh; }
  .about__photo-inner { position: relative; height: 100%; }
  .about__content { width: 100%; padding: 64px 24px; }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about__stat-number { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }

  /* MISSION */
  .mission { padding: 64px 24px !important; }
  .mission-light { padding: 64px 24px !important; }

  /* DOORS — single column */
  .doors { padding: 64px 24px !important; }
  .doors__grid { grid-template-columns: 1fr !important; gap: 32px; }
  .doors__card-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

  /* TESTIMONIALS */
  .testimonials { flex-direction: column; }
  .testimonials__photo { width: 100%; height: 35vh; }
  .testimonials__content { width: 100%; padding: 64px 24px; }
  .testimonials-clean__grid { grid-template-columns: 1fr !important; }
  .testimonial__quote { font-size: 1.1rem !important; }

  /* RESOURCES — single column */
  .resources__grid { grid-template-columns: 1fr !important; max-width: 400px; margin-left: auto; margin-right: auto; }

  /* LEAD MAGNET — stack */
  .lead-magnet__inner { flex-direction: column !important; gap: 40px; }
  .lead-magnet__left { width: 100%; }
  .lead-magnet__right { width: 100%; min-height: 280px; }
  .lead-magnet__photo { width: 65%; }
  .lead-magnet__guide { width: 50%; padding: 16px; }
  .lead-magnet__guide-title { font-size: 14px; }

  /* FOOTER — single column, compact */
  .footer { padding: 48px 0 24px !important; }
  .footer__inner { grid-template-columns: 1fr !important; gap: 32px; padding: 0 24px; }
  .footer__tagline, .footer__compliance-text { max-width: 100%; }
  .footer__bottom { margin-top: 24px; }

  /* PARALLAX — shorter on mobile */
  .parallax-divider { height: 200px !important; min-height: 160px !important; background-attachment: scroll !important; }
  .parallax-divider--tall { height: 220px !important; }
  .parallax-divider--quote { height: 220px !important; }
  .parallax-divider__text--large p { font-size: clamp(1.8rem, 7vw, 3rem) !important; }

  /* PARALLAX disable fixed on mobile */
  .testimonials__photo img { transform: none !important; }

  /* Flex layouts collapse */
  [style*="display: flex"][style*="flex-wrap: wrap"] { flex-direction: column !important; }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */

@media (max-width: 480px) {
  :root { --section-pad-x: 1.25rem; }
  h1, h2 { font-size: clamp(2rem, 10vw, 3.5rem) !important; }
  .about__stat-number { font-size: clamp(1.8rem, 8vw, 2.4rem) !important; }
}
