/* ============================================
   ROSE HOWARD — Premium Advisory Website
   V4 — Clean Editorial White Design
   Luxury consulting meets editorial magazine
   ============================================ */

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

:root {
  --truffle: #2A1F14;
  --cognac: #5C3A20;
  --camel: #9B6B3E;
  --warm-gold: #C8965A;
  --linen: #EDE4D3;
  --warm-white: #F7F2EA;
  --white: #ffffff;
  --text-light: #8B7D6F;
  --text-mid: #6B5D4F;
  --border-light: rgba(42, 31, 20, 0.06);
  --border-med: rgba(42, 31, 20, 0.1);
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;
  --max-width: 1100px;
  --max-width-wide: 1400px;
  --section-pad: 100px;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--truffle);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: var(--max-width-wide); margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }

/* ============================================
   SCROLL REVEAL ANIMATIONS — SMOOTH & ELEGANT
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Fade-only variant — no vertical movement */
.reveal-fade {
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-fade.revealed {
  opacity: 1;
}

/* Scale-up variant — subtle zoom-in on reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   TYPOGRAPHY — EDITORIAL, COMMANDING
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: normal;
  line-height: 1.15;
  color: var(--truffle);
}
h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h3 { font-size: clamp(1.5rem, 2.8vw, 2rem); line-height: 1.25; }
h4 { font-size: 1.1rem; line-height: 1.4; }

.subheading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-gold);
  display: block;
}

p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.85;
}
p.large {
  font-size: 1.2rem;
  line-height: 1.9;
}
strong { color: var(--truffle); }
em { font-style: italic; color: var(--warm-gold); }

/* ============================================
   BUTTONS — UNDERSTATED LUXURY
   ============================================ */
.btn {
  display: inline-block;
  padding: 20px 48px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--truffle);
  color: var(--warm-white);
}
.btn-primary:hover {
  background: var(--cognac);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(42, 31, 20, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--truffle);
  border: 1px solid var(--truffle);
}
.btn-outline:hover {
  background: var(--truffle);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--warm-gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--camel);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 150, 90, 0.25);
}

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

/* ============================================
   NAVIGATION — MINIMAL, FLOATING
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 28px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
  padding: 16px 0;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width-wide); margin: 0 auto; padding: 0 40px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: normal;
  color: var(--truffle); letter-spacing: 0.02em;
}
.nav-logo-light { color: var(--warm-white); }
.nav.scrolled .nav-logo-light { color: var(--truffle); }

.nav-links { display: flex; align-items: center; gap: 44px; }

.nav-links a {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cognac);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--warm-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--warm-gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { padding: 12px 28px; }
.nav-links .btn::after { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { width: 24px; height: 1.5px; background: var(--truffle); transition: var(--transition); }

/* ============================================
   HERO — CLEAN WHITE, TYPOGRAPHIC
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(165deg, var(--warm-white) 0%, var(--linen) 40%, var(--warm-white) 100%);
}

/* Thin gold accent line at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--warm-gold);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 40px 100px;
  max-width: 900px;
}

.hero h1 {
  color: var(--truffle);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--warm-gold);
}
.hero p {
  color: var(--text-mid);
  font-size: 1.12rem;
  margin: 0 auto 40px;
  max-width: 540px;
  line-height: 1.85;
}
.hero .subheading {
  color: var(--warm-gold);
  margin-bottom: 28px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator — adapted for white background */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.5;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--warm-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   SECTIONS — GENEROUS WHITE SPACING
   ============================================ */
.section { padding: var(--section-pad) 0; }

.section-dark {
  background: var(--truffle);
  color: var(--linen);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--warm-white); }
.section-dark p { color: rgba(237, 228, 211, 0.8); }
.section-dark .subheading { color: var(--warm-gold); }

.section-linen { background: var(--linen); }
.section-warmwhite { background: var(--warm-white); }
.section-white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .subheading { margin-bottom: 24px; }
.section-header h2 { margin-bottom: 28px; }
.section-header p { margin: 0 auto; }

/* ============================================
   DIVIDER STATEMENT — REPLACES CINEMATIC
   Elegant centered statement on warm background
   ============================================ */
.divider-statement {
  text-align: center;
  padding: 80px 40px;
  background: var(--white);
  position: relative;
}

/* Subtle gold line above */
.divider-statement::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
}

/* Subtle gold line below */
.divider-statement::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
}

.divider-statement h2 {
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
  color: var(--truffle);
}
.divider-statement p {
  color: var(--text-mid);
  margin: 24px auto 0;
  font-size: 1.05rem;
}

/* Linen variant */
.divider-statement-linen {
  background: var(--linen);
}

/* White variant */
.divider-statement-white {
  background: var(--white);
}

/* ============================================
   FADE DIVIDER — SUBTLE GOLD LINE BREAK
   Creates visual breathing room between sections
   ============================================ */
.fade-divider {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  height: 80px;
}

.fade-divider::before {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gold) 50%, transparent);
  opacity: 0.4;
}

/* Wide variant — more breathing room */
.fade-divider-wide {
  height: 120px;
}

/* Gradient variant — no line, just a subtle warm gradient band */
.fade-divider-gradient {
  height: 100px;
  background: linear-gradient(to bottom, var(--white), var(--warm-white), var(--white));
}
.fade-divider-gradient::before {
  display: none;
}

/* Diamond accent variant */
.fade-divider-diamond {
  position: relative;
}
.fade-divider-diamond::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--warm-gold);
  transform: rotate(45deg);
  opacity: 0.3;
}

/* ============================================
   CINEMATIC — LEGACY SUPPORT
   Retained for backward compatibility,
   styled as a divider-statement fallback
   ============================================ */
.cinematic {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--warm-white);
}
.cinematic img {
  display: none;
}
.cinematic::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
}
.cinematic-text {
  position: relative;
  z-index: 1;
  padding: 40px;
}
.cinematic-text h2 {
  color: var(--truffle);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}
.cinematic-text p {
  color: var(--text-mid);
  margin: 20px auto 0;
  font-size: 1rem;
}

/* ============================================
   TWO COLUMN LAYOUT — EDITORIAL
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col-wide-gap { gap: 120px; }

.col-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.col-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.col-image:hover img { transform: scale(1.03); }

.col-text .subheading { margin-bottom: 20px; }
.col-text h2 { margin-bottom: 28px; }
.col-text p { margin-bottom: 20px; }
.col-text .btn { margin-top: 24px; }

/* ============================================
   CREDENTIALS BAR
   ============================================ */
.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  padding: 60px 0;
}

.credential-item {
  position: relative;
  padding: 0 40px;
}
.credential-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: var(--warm-gold);
  opacity: 0.25;
}

.credential-item h4 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--warm-gold);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.credential-item p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 auto;
  color: var(--text-light);
}

/* ============================================
   CARDS — CLEAN, ELEVATED
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 52px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--warm-gold), var(--camel));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(42, 31, 20, 0.07);
}
.card:hover::before { transform: scaleX(1); }

.card h4 { margin-bottom: 14px; }
.card p { font-size: 0.92rem; max-width: none; margin-bottom: 0; }

/* Featured card variant */
.card-featured { background: var(--truffle); border-color: var(--truffle); }
.card-featured::before { background: linear-gradient(90deg, var(--warm-gold), var(--linen)); }
.card-featured h4 { color: var(--warm-white); }
.card-featured p { color: var(--linen); }

/* ============================================
   PILLAR CARDS — EDITORIAL GRID
   ============================================ */
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.pillar-card {
  background: var(--white);
  padding: 56px 44px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--warm-gold);
  transition: height 0.6s ease;
}
.pillar-card:hover {
  box-shadow: 0 20px 56px rgba(42, 31, 20, 0.06);
}
.pillar-card:hover::before { height: 100%; }

.pillar-card .pillar-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--warm-gold);
  margin-bottom: 16px;
  opacity: 0.3;
  letter-spacing: -0.02em;
}
.pillar-card h3 { margin-bottom: 16px; }
.pillar-card p { font-size: 0.92rem; max-width: none; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 52px 40px;
  border: 1px solid var(--border-light);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--warm-gold);
  opacity: 0.12;
  position: absolute;
  top: 16px; left: 28px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-heading); font-size: 1.1rem;
  font-style: italic; color: var(--truffle); line-height: 1.7; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.testimonial-author { font-size: 0.82rem; font-weight: bold; color: var(--truffle); }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

/* ============================================
   STEPS/JOURNEY — VERTICAL TIMELINE
   ============================================ */
.steps { max-width: 680px; margin: 0 auto; }

.step {
  display: flex;
  gap: 36px;
  margin-bottom: 52px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 60px;
  bottom: -44px;
  width: 1px;
  background: rgba(200, 150, 90, 0.15);
}
.step-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.1rem;
  color: var(--warm-gold);
  border: 1px solid rgba(200, 150, 90, 0.25);
  border-radius: 50%;
  background: transparent;
  position: relative; z-index: 1;
}
.step-content h4 { margin-bottom: 8px; }
.step-content p { font-size: 0.92rem; max-width: none; }

/* ============================================
   STATEMENT — BIG EDITORIAL QUOTE
   ============================================ */
.statement {
  text-align: center;
  padding: 80px 40px;
}
.statement h2 {
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.25;
}
.statement p {
  margin: 28px auto 0;
  font-size: 1rem;
}

/* ============================================
   CTA BANNER — DRAMATIC
   ============================================ */
.cta-banner {
  text-align: center;
  padding: 100px 40px;
  background: var(--truffle);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 150, 90, 0.06) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .subheading { color: var(--warm-gold); margin-bottom: 24px; }
.cta-banner h2 { color: var(--warm-white); margin-bottom: 28px; }
.cta-banner p { color: rgba(237, 228, 211, 0.8); margin: 0 auto 48px; }

/* ============================================
   GHL EMBEDS
   ============================================ */
.ghl-embed {
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--border-med);
  color: var(--text-light);
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; padding: 40px;
  background: var(--white);
}

/* ============================================
   BOOKING
   ============================================ */
.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.booking-type {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}
.booking-type h4 { margin-bottom: 8px; }
.booking-type .price-tag { font-size: 0.82rem; color: var(--warm-gold); margin-bottom: 12px; }
.booking-type p { font-size: 0.92rem; }

/* ============================================
   FOOTER — ELEGANT, MINIMAL
   ============================================ */
.footer {
  background: var(--truffle);
  color: var(--linen);
  padding: 100px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-brand .nav-logo { color: var(--warm-white); margin-bottom: 24px; display: block; }
.footer-brand p { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; }

.footer-links h4 {
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-gold); margin-bottom: 28px;
}
.footer-links a {
  display: block; font-size: 0.88rem;
  color: var(--text-light); padding: 7px 0;
}
.footer-links a:hover { color: var(--warm-white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-light);
}

.footer-social { display: flex; gap: 20px; }
.footer-social a { color: var(--text-light); }
.footer-social a:hover { color: var(--warm-white); }

/* ============================================
   PAGE HEROES (inner pages) — CLEAN WHITE
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--white);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 48px;
  background: var(--warm-gold);
  opacity: 0.25;
}
.page-hero .large { margin: 24px auto 0; }

/* ============================================
   APPLY PAGE
   ============================================ */
.apply-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.apply-includes li {
  font-size: 0.92rem; color: var(--text-mid);
  padding: 10px 0 10px 28px; position: relative;
}
.apply-includes li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 10px; height: 1px; background: var(--warm-gold);
}

.apply-form-wrapper {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--border-light);
}

/* ============================================
   LIFE AUDIT
   ============================================ */
.audit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.audit-item {
  background: var(--white);
  padding: 36px 32px;
  border: none;
  border-left: 2px solid var(--warm-gold);
  transition: var(--transition);
}
.audit-item:hover {
  background: var(--warm-white);
  box-shadow: 0 8px 32px rgba(42, 31, 20, 0.05);
}
.audit-item h4 { font-size: 1rem; margin-bottom: 8px; }
.audit-item p { font-size: 0.88rem; max-width: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  :root { --section-pad: 64px; }

  .hero { min-height: 75vh; }
  .hero-content { padding: 120px 24px 72px; }
  .hero h1 { font-size: clamp(2.4rem, 7vw, 3.4rem); }
  .hero-scroll { display: none; }

  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); justify-content: center;
    align-items: center; gap: 28px; z-index: 999;
  }
  .nav-links.active a { font-size: 1.1rem; }
  .nav-links.active a::after { display: none; }
  .nav-toggle { display: flex; z-index: 1001; }

  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .apply-content { grid-template-columns: 1fr; gap: 48px; }
  .booking-content { grid-template-columns: 1fr; gap: 48px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .audit-grid { grid-template-columns: 1fr; }
  .credential-item:not(:last-child)::after { display: none; }
  .divider-statement { padding: 56px 24px; }
  .cinematic { padding: 56px 24px; }
  .container, .container-wide, .container-narrow { padding: 0 24px; }
  .statement { padding: 56px 24px; }
  .fade-divider { height: 60px; }
  .fade-divider-wide { height: 80px; }
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .credentials { grid-template-columns: 1fr; gap: 36px; }
  .card { padding: 40px 28px; }
  .pillar-card { padding: 40px 28px; }
  .apply-form-wrapper { padding: 32px 24px; }
}
