/* =============================================
   FRESH NEW CONSULTING — Design System
   Font: Outfit | Stack: HTML/CSS/GSAP
   ============================================= */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }
ul, ol { list-style: none; }

/* === DESIGN TOKENS === */
:root {
  /* Dark zones — emerald green */
  --dark:        #0D3B22;
  --dark-2:      #1A5030;
  --dark-3:      #123428;
  /* Light zones — main body */
  --cream:       #FFFFFF;
  --cream-2:     #F5F5F5;
  /* Gold accent */
  --gold:        #C9A84C;
  --gold-2:      #DDB85A;
  --gold-pale:   #F5EAC8;
  /* Text on dark (emerald) zones */
  --on-dark:     #FFFFFF;
  --on-dark-50:  rgba(255,255,255,0.65);
  --on-dark-20:  rgba(255,255,255,0.15);
  /* Text on light zones */
  --on-cream:    #111111;
  --on-cream-50: rgba(17,17,17,0.52);
  --on-cream-10: rgba(17,17,17,0.08);
  --font:        'Outfit', sans-serif;
}

/* === BASE === */
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--on-cream);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-cream-50);
  display: block;
  margin-bottom: 1.2rem;
}
.label--gold  { color: var(--gold); }
.label--cream { color: var(--on-cream-50); }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 700; }

em { font-style: normal; color: var(--gold); }

p { max-width: 60ch; line-height: 1.72; }

.fud {
  font-size: 0.78rem;
  color: var(--on-cream-50);
  margin-top: 0.8rem;
  letter-spacing: 0.01em;
}
.stars { color: var(--gold); letter-spacing: 0.08em; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 2rem;
  min-height: 44px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 4px;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
}
.btn:active { transform: scale(0.975) translateY(1px); }

.btn--gold {
  background: var(--gold);
  color: #111111;
}
.btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}

.btn--outline {
  border: 1.5px solid var(--on-dark-20);
  color: var(--on-dark);
  background: linear-gradient(to right, var(--gold) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position 0.32s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, color 0.2s, transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s;
}
.btn--outline:hover {
  background-position: left center;
  border-color: var(--gold);
  color: #111111;
}

.btn--outline-cream {
  border: 1.5px solid var(--on-cream-10);
  color: var(--on-cream);
  background: linear-gradient(to right, var(--gold) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position 0.32s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, color 0.2s, transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s;
}
.btn--outline-cream:hover {
  background-position: left center;
  border-color: var(--gold);
  color: #111111;
}

.btn--lg { padding: 1.1rem 2.6rem; font-size: 1rem; }

.btn--nav {
  background: var(--gold);
  color: #111111;
  padding: 0.58rem 1.35rem;
  font-size: 0.84rem;
}
.btn--nav:hover { background: var(--gold-2); }

.link-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
  display: inline-block;
}
.link-more:hover { opacity: 0.85; transform: translateX(4px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 5vw;
  background: #1B3D1F;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: #1B3D1F;
  box-shadow: 0 1px 0 rgba(0,0,0,0.25);
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 82px;
  width: auto;
  transition: height 0.35s;
}
.nav.scrolled .nav__logo img { height: 68px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__links a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav__links a:not(.btn):hover { color: var(--gold); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 5vw;
  font-size: 2rem;
  color: var(--on-dark-50);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
}

/* ============================================
   HERO ENTRANCE — CSS keyframes (no JS dependency)
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Homepage hero */
.hero .label       { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
.hero__h1          { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s both; }
.hero__sub         { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.5s both; }
.hero__proof       { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.62s both; }
.hero .btn--gold   { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.72s both; }
.hero .fud         { animation: fadeIn 0.5s ease 0.85s both; }
.hero__right       { animation: slideInRight 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
.hero__scroll-hint { animation: fadeIn 0.5s ease 1.1s both; }

/* Inner page heroes */
.page-hero__label  { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
.page-hero__h1     { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.38s both; }

/* Speaking hero */
.speaking__content > * { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) calc(0.2s + var(--i, 0) * 0.12s) both; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  padding: 9rem 5vw 5rem;
  position: relative;
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
}
.hero__left { max-width: 620px; }
.hero__h1 { margin-bottom: 1.5rem; }
.hero__sub {
  font-size: 1.08rem;
  color: var(--on-cream-50);
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero__proof {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
.hero__proof .stars { font-size: 1rem; }
.hero__proof span {
  font-size: 0.83rem;
  color: var(--on-cream-50);
}
.hero__right {
  height: clamp(380px, 52vw, 680px);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--dark);
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 5vw;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-cream-50);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero__scroll-hint::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: currentColor;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  /* Full-bleed regardless of a padded parent (e.g. .stats has 5vw side
     padding) — break out to the true viewport width and re-center. */
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.marquee-strip--onlight {
  background: var(--cream-2);
  border-color: var(--on-cream-10);
}
.marquee__inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: marqueeRun 22s linear infinite;
}
.marquee-strip--onlight .marquee__inner {
  animation-direction: reverse;
  animation-duration: 26s;
}
.marquee__inner span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark);
}
.marquee-strip--onlight .marquee__inner span { color: var(--on-cream-50); }
.marquee__sep { color: var(--gold) !important; }

@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   PAIN SECTION
   ============================================ */
.pain {
  background: var(--cream-2);
  padding: 8rem 5vw;
}
.pain__inner {
  max-width: 860px;
  margin: 0 auto;
}
.pain__list {
  margin: 2rem 0 4rem;
}
.pain__item {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--on-cream);
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--on-cream-10);
  letter-spacing: -0.015em;
  opacity: 0.9;
  transition: padding-left 0.22s cubic-bezier(0.16,1,0.3,1), border-bottom-color 0.22s, opacity 0.2s;
}
.pain__item:first-child { border-top: 1px solid var(--on-cream-10); }
.pain__item:hover {
  padding-left: 1rem;
  border-bottom-color: rgba(201,168,76,0.32);
  opacity: 1;
}
.pain__item strong { color: var(--gold-2); font-weight: 800; }

.pain__resolution { padding-top: 1rem; }
.pain__resolution p {
  font-size: 1.1rem;
  color: var(--on-cream);
  margin-bottom: 2.25rem;
}
.pain__resolution strong { color: var(--gold-2); font-weight: 700; }
.pain__resolution .btn--outline {
  border-color: var(--gold);
  color: var(--on-cream);
}
.pain__resolution .btn--outline:hover { color: #111111; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--cream);
  padding: 8rem 5vw;
  color: var(--on-cream);
}
.testimonials .label { color: var(--on-cream-50); }
.testimonials__inner { max-width: 1180px; margin: 0 auto; }
.testimonials__h2 {
  color: var(--on-cream);
  margin-bottom: 3.5rem;
  max-width: 680px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.t-card {
  padding: 2.5rem 2.75rem;
  background: var(--cream-2);
  border-radius: 6px;
  border: 1px solid var(--on-cream-10);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, border-color 0.25s;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(17,17,17,0.09);
  border-color: rgba(201,168,76,0.2);
}
.t-card:first-child { grid-row: 1 / 3; display: flex; flex-direction: column; }
.t-card__stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 1.1rem; }
.t-card__hl {
  font-size: 1rem;
  font-weight: 700;
  color: var(--on-cream);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.t-card:first-child .t-card__hl { font-size: 1.35rem; margin-bottom: 1rem; }
.t-card__quote {
  font-size: 0.93rem;
  color: var(--on-cream-50);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.t-card:first-child .t-card__quote { font-size: 1.02rem; }
.t-card__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--on-cream);
  margin-top: 1.5rem;
  letter-spacing: 0.03em;
}

/* ============================================
   SERVICES PINNED
   ============================================ */
.services-pin {
  position: relative;
}
.services-pin__sticky {
  height: 100vh;
  overflow: hidden;
  background: var(--dark-2);
}
.svc-progress {
  position: absolute;
  left: 3.5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100px;
  background: var(--on-dark-20);
  z-index: 10;
}
.svc-progress__fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--gold);
}
.svc-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 3.5rem 8vw;
  gap: 5vw;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.svc-panel--flip { flex-direction: row-reverse; }
.svc-panel__left { flex: 1; max-width: 520px; }
.svc-panel__right {
  flex: 1;
  /* Fills most of the pinned sticky's height so unpinning after the last
     panel doesn't scroll through a big empty margin before the next
     section — see .services-pin__sticky. */
  height: clamp(420px, 76vh, 680px);
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark);
}
.svc-panel__right img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
}
.svc-panel__h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--on-dark);
  margin-bottom: 1.1rem;
}
.svc-panel__body {
  font-size: 1rem;
  color: var(--on-dark-50);
  margin-bottom: 1.75rem;
}
.svc-panel__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2.25rem;
}
.svc-panel__list li {
  font-size: 0.9rem;
  color: var(--on-dark);
  padding-left: 1.25rem;
  position: relative;
}
.svc-panel__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.05em;
}
.svc-panel__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--dark-3);
  padding: 6.5rem 5vw 0;
}
.stats__row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--on-dark-20);
}
.stat-block { text-align: center; }
.stat-num {
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  opacity: 0.6;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-50);
  margin-top: 0.7rem;
  max-width: none;
}

/* ============================================
   SPEAKING CINEMATIC
   ============================================ */
.speaking {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--on-dark);
}
.speaking__bg {
  position: absolute;
  inset: 0;
}
.speaking__img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--dark);
}
.speaking__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13,59,34,0.97) 0%,
    rgba(13,59,34,0.90) 38%,
    rgba(13,59,34,0.55) 65%,
    rgba(13,59,34,0.08) 100%
  );
}
.speaking__content {
  position: relative;
  z-index: 2;
  padding: 6rem 5vw 6rem 8vw;
  max-width: 700px;
}
.speaking__h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  margin-bottom: 1.5rem;
}
.speaking__sub {
  font-size: 1.05rem;
  color: var(--on-dark-50);
  margin-bottom: 2rem;
}
.speaking__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
}
.speaking__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.38rem 0.9rem;
  border: 1px solid var(--gold-2);
  color: var(--on-dark);
  background: rgba(201,168,76,0.1);
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}
.speaking__tags span:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold-2);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  background: linear-gradient(rgba(13,59,34,0.60), rgba(13,59,34,0.60)), url('../img/freshnewconsulting_plane_01.webp') center/cover no-repeat;
  padding: 8rem 5vw;
  color: var(--on-dark);
}
.how__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8vw;
  align-items: start;
}
.how .label { color: var(--on-dark-50); }
.how__h2 {
  color: var(--on-dark);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  margin-bottom: 1rem;
}
.how__sub {
  color: var(--on-dark-50);
  font-size: 1rem;
}
.how__steps { display: flex; flex-direction: column; }
.how__step {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--on-dark-20);
  position: relative;
  transition: padding-left 0.22s cubic-bezier(0.16,1,0.3,1);
}
.how__step:first-child { border-top: 1px solid var(--on-dark-20); }
.how__step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.how__step:hover::before { transform: scaleY(1); }
.how__step:hover { padding-left: 1rem; }
.how__step-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding-top: 0.25rem;
}
.how__step-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.how__step-body {
  font-size: 0.92rem;
  color: var(--on-dark-50);
  line-height: 1.68;
  max-width: 46ch;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--dark);
  padding: 8rem 5vw;
  color: var(--on-dark);
}
.faq .label { color: var(--on-dark-50); }
.faq__inner { max-width: 780px; margin: 0 auto; }
.faq__h2 { margin-bottom: 3rem; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--on-dark-20); }
.faq__item:last-child { border-bottom: 1px solid var(--on-dark-20); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq__q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.faq__item.open .faq__q { color: var(--gold); }
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  font-size: 0.94rem;
  color: var(--on-dark-50);
  line-height: 1.72;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
}
.faq__item.open .faq__a {
  max-height: 300px;
  padding-bottom: 1.6rem;
}

/* ============================================
   CLOSER / BOOK
   ============================================ */
.closer {
  background: var(--dark-2);
  color: var(--on-dark);
  padding: 7rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  overflow: hidden;
}
.closer__copy { max-width: 580px; }
.closer__h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 1.2rem;
}
.closer__sub {
  font-size: 1.05rem;
  color: var(--on-dark-50);
  margin-bottom: 2rem;
}
.closer__pullquote {
  padding: 1.2rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.08);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.closer__pullquote .stars { font-size: 0.82rem; }
.closer__pullquote span {
  font-size: 0.88rem;
  color: var(--on-dark-50);
  font-style: italic;
  max-width: none;
}
.closer__calendar {
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  min-height: 600px;
}
.closer__calendar iframe {
  width: 100%;
  min-height: 600px;
  display: block;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--on-dark-20);
}
.footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.5rem 5vw 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 5vw;
}
.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.footer__logo img {
  height: 88px;
  width: auto;
}
.footer__brand p {
  font-size: 0.88rem;
  color: var(--on-dark-50);
  margin-bottom: 1.6rem;
  max-width: 34ch;
}
.footer__social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer__social a {
  width: 2.1rem; height: 2.1rem;
  border: 1px solid var(--on-dark-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--on-dark-50);
  transition: all 0.2s;
  letter-spacing: 0;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.12); }

.footer__col-title {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-50);
  margin-bottom: 1.25rem;
  display: block;
  max-width: none;
}
.footer__nav, .footer__contact-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer__nav a, .footer__contact-col a, .footer__contact-col p {
  font-size: 0.88rem;
  color: var(--on-dark-50);
  transition: color 0.2s;
  max-width: none;
}
.footer__nav a:hover, .footer__contact-col a:hover { color: var(--on-dark); }
.footer__yt-link {
  color: var(--gold) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
}
.footer__bottom {
  border-top: 1px solid var(--on-dark-20);
  padding: 1.5rem 5vw;
  max-width: 1180px;
  margin: 0 auto;
}
.footer__bottom p {
  font-size: 0.76rem;
  color: var(--on-dark-50);
  max-width: none;
}

/* ============================================
   INNER PAGES — shared
   ============================================ */
.page-hero {
  min-height: 55dvh;
  display: flex;
  align-items: flex-end;
  padding: 10rem 5vw 5rem;
  background: var(--dark);
  color: var(--on-dark);
  position: relative;
}
.page-hero__inner { max-width: 1180px; margin: 0 auto; width: 100%; }
.page-hero__label { color: var(--gold); }
.page-hero__h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); max-width: 14ch; }

.section-wrap { max-width: 1180px; margin: 0 auto; padding: 0 5vw; }

/* Split layout for inner pages */
.split-section {
  padding: 7rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}
.split-section--flip { direction: rtl; }
.split-section--flip > * { direction: ltr; }
.split-section--light { background: var(--cream); color: var(--on-cream); }
.split-section--dark  { background: var(--dark);   color: var(--on-dark); }
.split-section--dark2 { background: var(--dark-2); color: var(--on-dark); }

.split-section__img {
  height: clamp(300px, 40vw, 500px);
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark);
}
.split-section__img img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.split-section__copy h2 { margin-bottom: 1rem; }
.split-section__copy p { margin-bottom: 1.5rem; }
.split-section__copy ul {
  display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem;
}
.split-section__copy ul li {
  font-size: 0.92rem;
  padding-left: 1.2rem;
  position: relative;
}
.split-section__copy ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
}
.split-section--light .split-section__copy h2 { color: var(--on-cream); }
.split-section--light .split-section__copy p { color: var(--on-cream-50); }
.split-section--light .split-section__copy ul li { color: var(--on-cream); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 5vw;
  min-width: 0;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-50);
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--dark-2);
  border: 1px solid var(--on-dark-20);
  color: var(--on-dark);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  max-width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--dark-2); }

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info__item .label { margin-bottom: 0.5rem; }
.contact-info__item p, .contact-info__item a {
  font-size: 1rem;
  color: var(--on-dark);
  font-weight: 500;
  max-width: none;
}

/* ============================================
   LEAD FORM (modal + homepage section)
   ============================================ */
.lead-banner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  padding: 1.6rem;
}
.lead-banner__photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream);
  flex-shrink: 0;
}
.lead-banner__name { font-size: 1.35rem; font-weight: 800; color: var(--on-dark); line-height: 1.1; }
.lead-banner__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0.3rem 0 0.5rem;
}
.lead-banner__contact { font-size: 0.78rem; color: var(--on-dark-50); line-height: 1.5; max-width: none; }

.lead-form { display: flex; flex-direction: column; gap: 1.1rem; padding: 1.75rem 1.6rem 2rem; }
.lead-form .form-group input { background: var(--dark-2); }
.lead-form .form-group label { color: var(--on-cream); }
.lead-form__consent { display: flex; gap: 0.7rem; align-items: flex-start; }
.lead-form__consent input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px; height: 16px;
  accent-color: var(--gold-2);
}
.lead-form__consent label { font-size: 0.76rem; color: var(--on-cream-50); line-height: 1.5; max-width: none; }
.lead-form__legal { text-align: center; font-size: 0.75rem; color: var(--on-cream-50); margin-top: -0.4rem; max-width: none; }
.lead-form__legal a { color: var(--gold-2); text-decoration: underline; }
.lead-form__msg { display: none; padding: 0.85rem 1rem; border-radius: 4px; font-size: 0.85rem; font-weight: 600; }

/* Modal wrapper */
.lead-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.6);
  z-index: 999;
  align-items: flex-start;
  justify-content: center;
  padding: 4vh 1rem;
  overflow-y: auto;
}
.lead-modal.is-open { display: flex; }
.lead-modal__box {
  background: var(--cream);
  border-radius: 10px;
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: leadPop 0.35s cubic-bezier(0.16,1,0.3,1);
}
@keyframes leadPop {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lead-modal__close {
  position: absolute; top: 0.6rem; right: 0.8rem;
  font-size: 1.6rem; line-height: 1;
  color: var(--on-dark-50);
  width: 2.2rem; height: 2.2rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.lead-modal__close:hover { color: var(--on-dark); }

/* Homepage embedded section variant */
.lead-section { padding: 6.5rem 5vw; background: var(--cream-2); }
.lead-section__head { max-width: 560px; margin: 0 auto 2.5rem; text-align: center; }
.lead-section__head .label { text-align: center; }
.lead-section__head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 0.8rem; }
.lead-section__head p { color: var(--on-cream-50); margin: 0 auto; }
.lead-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17,17,17,0.08);
}
.lead-card .lead-banner { border-radius: 12px 12px 0 0; }

@media (max-width: 520px) {
  .lead-banner { flex-direction: column; text-align: center; }
  .lead-banner__contact { max-width: none; }
}

/* ============================================
   G100 APPOINTMENT
   ============================================ */
.g100 {
  background: var(--dark-3);
  padding: 7rem 5vw;
  position: relative;
}
.g100::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.g100__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.g100__h2 {
  color: var(--on-dark);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 1.5rem;
}
.g100__lede {
  color: var(--on-dark);
  font-size: 1.12rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.g100__body {
  color: var(--on-dark-50);
  margin-bottom: 2.2rem;
}
.g100__meta {
  border-top: 1px solid var(--on-dark-20);
  margin-bottom: 2.4rem;
}
.g100__meta li {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--on-dark-20);
  color: var(--on-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}
.g100__meta span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 0.25rem;
}
.g100__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.g100__banner {
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 8px;
  padding: 0.9rem;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 26px 60px rgba(0,0,0,0.4);
}
.g100__banner img {
  width: 100%;
  aspect-ratio: 1202 / 1144;
  border-radius: 4px;
}
.g100__banner figcaption {
  color: var(--on-dark-50);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0.9rem;
}

/* ============================================
   UTILITY
   ============================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 5vw; }
.text-gold { color: var(--gold); }
.section-pad { padding: 7rem 5vw; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .nav__logo img { height: 62px; }
  .nav.scrolled .nav__logo img { height: 56px; }
  .footer__logo img { height: 78px; }

  .hero__content { grid-template-columns: 1fr; gap: 3rem; }
  .hero__right { height: 55vw; min-height: 260px; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .t-card:first-child { grid-row: auto; }

  /* Disable pinning on mobile — also kill GSAP inline transforms */
  .services-pin { height: auto !important; }
  .services-pin__sticky { position: relative !important; height: auto !important; overflow: visible; }
  .svc-progress { display: none; }
  .svc-panel {
    position: relative !important;
    opacity: 1 !important;
    pointer-events: all !important;
    flex-direction: column !important;
    padding: 4rem 5vw !important;
    height: auto !important;
    transform: none !important;
  }
  .svc-panel--flip { flex-direction: column !important; }
  .svc-panel__right { width: 100%; height: 55vw; min-height: 220px; flex: none; }
  .svc-panel__left { max-width: 100%; }

  .stats__row { grid-template-columns: repeat(2, 1fr); }

  .how__inner { grid-template-columns: 1fr; gap: 3rem; }

  .closer { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5vw; }
  .closer__calendar { min-height: 520px; }

  .footer__grid { grid-template-columns: 1fr; gap: 3rem; }

  .split-section { grid-template-columns: 1fr; gap: 3rem; }
  .split-section--flip { direction: ltr; }
  .split-section__img { height: 55vw; min-height: 220px; }

  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }

  /* G100 — banner first, then the detail */
  .g100 { padding: 5.5rem 5vw; }
  .g100__inner { grid-template-columns: 1fr; gap: 3rem; }
  .g100__banner { order: -1; max-width: 560px; margin: 0 auto; }

  /* Press / As Featured In sections — stack and center */
  .press-section > div { gap: 2rem !important; }
  .press-section img { width: 100% !important; max-width: 300px !important; }
  .press-section--alt > div > div:first-child { text-align: center !important; }

  /* New Art of Living — stack image above text */
  .new-art-section { margin-top: 0 !important; }
  .new-art-section > div { flex-direction: column !important; text-align: center !important; }
  .new-art-section__img { flex: 1 1 100% !important; max-width: 100% !important; }
  .new-art-section > div > div:last-child { text-align: center !important; }

  /* Video thumbnails — smaller min width for more columns */
  .video-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important; }

  /* E.T.C. grid on about page — 1 column */
  .etc-grid { grid-template-columns: 1fr !important; gap: 1px !important; }
  .etc-section { padding: 5.5rem 5vw !important; }

  /* Speaking hero — reduce excessive top padding */
  .speaking__content { padding-top: 7rem !important; }

  /* Marquee — reduce gap to prevent overflow */
  .marquee__inner { gap: 1.5rem !important; }

  /* Touch targets — footer & contact socials (min 44px) */
  .footer__social a,
  .contact-info a[style*="border-radius:50%"] {
    width: 2.75rem !important;
    height: 2.75rem !important;
  }
  .contact-info a[style*="border-radius:50%"] span {
    width: 2.75rem !important;
    height: 2.75rem !important;
  }

  /* Section vertical breathing room — tighten from 8rem to 5.5rem on tablet/mobile */
  .pain        { padding: 5.5rem 5vw; }
  .testimonials { padding: 5.5rem 5vw; }
  .how         { padding: 5.5rem 5vw; }
  .faq         { padding: 5.5rem 5vw; }
  .stats       { padding: 4rem 5vw 0; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero { padding: 7rem 5vw 4rem; }
  .pain__item { font-size: 1.2rem; }
  .speaking__content { padding: 4rem 5vw; }
  .stats__row { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

  /* Full-width CTA buttons for easy tapping */
  .hero__ctas { flex-direction: column !important; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* G100 — stack the label/value rows on small phones */
  .g100        { padding: 4.5rem 5vw; }
  .g100__meta li { grid-template-columns: 1fr; gap: 0.15rem; }
  .g100__links .btn { width: 100%; justify-content: center; }

  /* Contact form — tighter spacing & full-width inputs */
  .contact-grid { padding: 4.5rem 5vw; gap: 3rem; }
  .contact-form { gap: 1rem; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.8rem 0.9rem;
    font-size: 16px;
  }
  .form-group textarea { min-height: 110px; }
  .contact-info { gap: 2rem; }

  /* Press sections — tighter padding */
  .press-section { padding: 4.5rem 5vw !important; }
  .press-section img { max-width: 260px !important; }

  /* New Art of Living — tighter padding */
  .new-art-section { padding: 4.5rem 5vw !important; }

  /* E.T.C. section — tighter padding */
  .etc-section { padding: 4.5rem 5vw !important; }
  .etc-grid > div { padding: 2rem 1.5rem !important; }

  /* Video thumbnails — 2 columns max on small phones */
  .video-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Speaking hero content padding */
  .speaking__content { padding-top: 6rem !important; }

  /* Marquee — even tighter */
  .marquee__inner { gap: 1rem !important; }

  /* Lead form consent — reduce label font size */
  .lead-form__consent label { font-size: 0.7rem !important; }

  /* Tighter section padding on small phones */
  .pain        { padding: 4.5rem 5vw; }
  .testimonials { padding: 4.5rem 5vw; }
  .how         { padding: 4.5rem 5vw; }
  .faq         { padding: 4.5rem 5vw; }
  .closer      { padding: 4rem 5vw; }
  .lead-section { padding: 4.5rem 5vw; }
}

@media (max-width: 480px) {
  /* Stats — single column on very small screens */
  .stats__row { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Video thumbnails — 2 columns, smaller gap */
  .video-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }

  /* Hero right — smaller min-height */
  .hero__right { min-height: 220px; }

  /* Service panel images — smaller */
  .svc-panel__right { min-height: 180px; }

  /* Split section images — smaller */
  .split-section__img { min-height: 180px; }

  /* G100 links — stack buttons */
  .g100__links { flex-direction: column; gap: 0.75rem; }
  .g100__links .btn,
  .g100__links .link-more { width: 100%; justify-content: center; text-align: center; }

  /* Lead banner — tighter */
  .lead-banner { gap: 0.75rem; padding: 1.2rem; }
  .lead-banner__photo { width: 64px; height: 64px; }

  /* Modal box — full bleed on tiny screens */
  .lead-modal { padding: 2vh 0.75rem; }
  .lead-modal__box { border-radius: 8px; }

  /* Footer socials — larger touch targets (48px min) */
  .footer__social a { width: 3rem; height: 3rem; }
}
