/* ============================================================
   GIBEON CREATIVE — Global Stylesheet
   Alignment Before Amplification.
   ============================================================ */

/* ── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --brand-blue:      #3A5068;
  --brand-blue-dark: #2C3E50;
  --brand-blue-mid:  #4A6480;
  --brand-blue-dim:  rgba(58, 80, 104, 0.18);

  /* Neutrals */
  --dark:       #111111;
  --dark-2:     #1A1A1A;
  --dark-3:     #222222;

  /* Gold — matched to logo */
  --gold:       #D4A843;
  --gold-dim:   rgba(212, 168, 67, 0.15);
  --gold-glow:  rgba(212, 168, 67, 0.28);

  --light:      #F5F5F5;
  --grey:       #AAAAAA;
  --white:      #FFFFFF;
  --cream:      #F5F0E8;
  --cream-dark: #EDE8DC;
  --surface:    #F8F8F8;
  --text-dark:  #1A1A1A;
  --text-mid:   #555555;
  --text-muted: #888888;
  --max-w:      1200px;
  --nav-h:      80px;
  --pad-section: 120px;
  --pad-section-sm: 80px;
  --radius:     4px;
  --transition: 0.25s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  width: 100%;
}
ul, ol { list-style: none; }

/* ── Base ───────────────────────────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display { font-size: clamp(52px, 8vw, 96px); }
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(30px, 4.5vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; letter-spacing: -0.01em; }
p { max-width: 68ch; }

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: var(--pad-section) 0;
}
.section--dark {
  background: var(--brand-blue-dark);
  color: var(--light);
}
.section--dark-2 {
  background: var(--brand-blue);
  color: var(--light);
}
.section--surface {
  background: var(--surface);
}
.section--white {
  background: var(--white);
}
.section--cream {
  background: var(--cream);
}
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── Gold Divider ───────────────────────────────────────────── */
.gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 24px 0;
}
.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 24px var(--gold-glow);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn-group--center { justify-content: center; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition),
              border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(28, 38, 50, 0.97);
  backdrop-filter: blur(12px);
  border-color: rgba(58, 80, 104, 0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--transition);
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo-icon {
  height: 40px;
  width: auto;
  display: block;
}
.nav__logo-wordmark {
  display: none;
}
/* Fallback text if images not yet in assets/ */
.nav__logo-text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--white); }
.nav__link.active::after { width: 100%; }
.nav__cta { margin-left: 20px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--brand-blue-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav__mobile-link {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--brand-blue-dark);
  color: var(--grey);
  padding: 80px 0 40px;
  border-top: 3px solid var(--gold);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__logo-icon {
  height: 48px;
  width: auto;
}
.footer__logo-wordmark {
  display: none;
}
/* Fallback text */
.footer__logo-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.footer__tagline {
  font-size: 14px;
  color: var(--grey);
  font-style: italic;
}
.footer__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link {
  font-size: 14px;
  color: var(--grey);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--gold); }
.footer__cta-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
}

/* ── Hero (Homepage) ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brand-blue-dark);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(28,44,60,0.60) 0%, transparent 50%);
}
.hero__content {
  position: absolute;
  z-index: 2;
  bottom: 100px;
  left: 67%;
  text-align: left;
  max-width: 600px;
  padding: 0;
}
.hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  color: var(--white);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero__title span { color: var(--gold); }
.hero__sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  margin: 0;
  line-height: 1.7;
}
.hero__scroll {
  position: absolute;
  bottom: 48px;
  left: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll svg { width: 20px; height: 20px; stroke: var(--gold); }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--brand-blue-dark);
  padding: calc(var(--nav-h) + 80px) 0 100px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: var(--grey); font-size: 20px; margin: 0 auto; max-width: 600px; }

/* ── Section Headings ────────────────────────────────────────── */
.section-intro { margin-bottom: 64px; }
.section-intro h2 { margin-bottom: 20px; }
.section-intro p { font-size: 19px; color: var(--text-mid); }

.section--dark .section-intro h2,
.section--dark-2 .section-intro h2 { color: var(--white); }
.section--dark .section-intro p,
.section--dark-2 .section-intro p { color: var(--grey); }

/* ── Who We Are ──────────────────────────────────────────────── */
.who-statement {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.who-statement h2 {
  font-size: clamp(26px, 4vw, 44px);
  color: var(--dark);
  margin-bottom: 40px;
  line-height: 1.25;
}
.who-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  margin: 60px 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.who-pillar {
  background: var(--white);
  padding: 36px 28px;
  text-align: left;
}
.who-pillar__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.who-pillar__text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: none;
}
.who-closing {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  max-width: none;
  text-align: center;
}

/* ── Problem Section ─────────────────────────────────────────── */
.problem-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.problem-copy h2 {
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.2;
}
.problem-copy p {
  color: var(--grey);
  margin: 0 auto 20px;
  font-size: 19px;
}
.problem-copy .bridge {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
}
.problem-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 40px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.problem-link:hover { border-color: var(--gold); }

/* ── ASCEND Preview Cards ────────────────────────────────────── */
.ascend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}
.ascend-card {
  background: var(--brand-blue);
  padding: 40px 32px;
  border-left: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  cursor: default;
}
.ascend-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  background: var(--brand-blue-mid);
}
.ascend-card__letter {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.ascend-card__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.ascend-card__desc {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.7;
  max-width: none;
}

/* ── Two-Column Dark Section ─────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section__left h2 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
}
.split-section__right p {
  color: var(--grey);
  font-size: 18px;
  margin-bottom: 20px;
  max-width: none;
}
.split-divider {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  display: block;
}

/* ── Proof Section ───────────────────────────────────────────── */
.proof-statement {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.proof-quote {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 24px;
  font-style: italic;
}
.proof-quote::before { content: '\201C'; color: var(--gold); }
.proof-quote::after { content: '\201D'; color: var(--gold); }
.proof-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: none;
}

/* ── Final CTA Band ──────────────────────────────────────────── */
.cta-band {
  text-align: center;
  padding: var(--pad-section) 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 20px; }
.cta-band p { color: var(--grey); font-size: 19px; margin: 0 auto 40px; max-width: 560px; }

/* ── About Page ──────────────────────────────────────────────── */
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.founder-img {
  aspect-ratio: 4/5;
  background: var(--dark-2);
  border-radius: var(--radius);
  border: 1px solid #333;
  overflow: hidden;
  position: relative;
}
.founder-img__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.founder-img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}
.founder-copy h2 { color: var(--dark); margin-bottom: 8px; }
.founder-copy .founder-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}
.founder-copy p {
  color: var(--text-mid);
  margin-bottom: 20px;
  max-width: none;
}

.philosophy-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-block h2 {
  color: var(--white);
  margin-bottom: 40px;
}
.philosophy-block p {
  color: var(--grey);
  font-size: 18px;
  margin: 0 auto 20px;
  max-width: none;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.principle-card {
  background: var(--brand-blue-dark);
  border: 1px solid var(--brand-blue);
  border-top: 2px solid var(--gold);
  padding: 36px 28px;
  border-radius: var(--radius);
}
.principle-card h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 1.3;
}
.principle-card p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.7;
  max-width: none;
}

/* ── ASCEND Process Page ─────────────────────────────────────── */
.ascend-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.ascend-intro h2 { color: var(--white); margin-bottom: 28px; }
.ascend-intro p { color: var(--grey); font-size: 19px; margin: 0 auto 0; max-width: none; }

.stages-list { margin-top: 80px; }
.stage-block {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 64px 0;
  transition: background var(--transition);
}
.stage-block:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.stage-block__letter-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 48px;
}
.stage-block__big-letter {
  font-size: 100px;
  font-weight: 900;
  color: var(--gold);
  line-height: 0.9;
  display: block;
  opacity: 0.9;
}
.stage-block__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 12px;
}
.stage-block__content h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-top: 8px;
}
.stage-block__content p {
  color: #cccccc;
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 16px;
}
.stage-block__content p:last-child { margin-bottom: 0; }

/* ── Services Page ───────────────────────────────────────────── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 64px;
}
.tier-card {
  background: var(--brand-blue);
  padding: 48px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-card--featured {
  background: var(--brand-blue-dark);
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  z-index: 1;
}
.tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.tier-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.tier-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.tier-oneliner {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 36px;
  max-width: none;
}
.tier-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 32px;
}
.tier-includes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.tier-includes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}
.tier-includes li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
}
.tier-includes li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.tier-best-for {
  font-size: 13px;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 32px;
  max-width: none;
  line-height: 1.6;
}

.engagement-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: var(--pad-section) 0;
}
.engagement-block h2 { color: var(--dark); margin-bottom: 28px; }
.engagement-block p {
  color: var(--text-mid);
  font-size: 18px;
  margin: 0 auto 16px;
  max-width: none;
}
.engagement-highlight {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 8px;
}

/* ── Contact Page ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { color: var(--dark); margin-bottom: 20px; }
.contact-info p { color: var(--text-mid); font-size: 18px; max-width: none; margin-bottom: 20px; }
.audit-points {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.audit-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.audit-point__arrow {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.audit-point__text { font-size: 15px; color: var(--text-mid); line-height: 1.6; max-width: none; }
.audit-meta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 32px;
}
.audit-meta-item { font-size: 13px; color: var(--text-muted); }
.audit-meta-item strong { display: block; font-size: 14px; color: var(--dark); margin-bottom: 2px; }

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 48px 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field--full { grid-column: 1 / -1; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-input::placeholder { color: #bbb; }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: #b8963e;
  box-shadow: 0 4px 24px var(--gold-glow);
}
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}
.form-success .checkmark {
  width: 60px;
  height: 60px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success .checkmark svg { stroke: var(--gold); width: 28px; height: 28px; }
.form-success h3 { color: var(--dark); margin-bottom: 12px; font-size: 22px; }
.form-success p { color: var(--text-mid); font-size: 16px; max-width: 340px; margin: 0 auto; }

.reassurance-strip {
  background: var(--brand-blue-dark);
  padding: 40px 0;
  text-align: center;
}
.reassurance-strip p {
  color: var(--grey);
  font-size: 15px;
  letter-spacing: 0.04em;
  margin: 0 auto;
}
.reassurance-strip span { color: var(--gold); margin: 0 12px; }

/* ── Scroll Animations ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3, .who-pillars, .ascend-grid, .principles-grid { grid-template-columns: 1fr 1fr; }
  .tiers-grid { grid-template-columns: 1fr; gap: 2px; }
  .tier-card--featured { outline: none; border: 2px solid var(--gold); }
  .founder-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --pad-section: 72px; }
  .container { padding: 0 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .grid-2, .split-section { grid-template-columns: 1fr; gap: 40px; }
  .who-pillars, .grid-3, .ascend-grid, .principles-grid, .tiers-grid { grid-template-columns: 1fr; }
  .stage-block { grid-template-columns: 80px 1fr; }
  .stage-block__big-letter { font-size: 64px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .audit-meta { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  .hero__content {
    bottom: 80px;
    left: 24px;
    right: 24px;
    max-width: 100%;
  }
  .hero__scroll { left: 24px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 38px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 32px 24px; }
}
