/* ── RESET & BASE ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1B3A5C;
  --navy-d:  #0D2135;
  --navy-m:  #243F63;
  --gold:    #B8941F;
  --gold-lt: #D4A820;
  --cream:   #F8F5EF;
  --white:   #FFFFFF;
  --ink:     #111827;
  --mid:     #6B7280;
  --light:   #E8E2D5;
  --border:  #DDD5C0;
  --success: #16A34A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(27,58,92,0.12);
  --shadow-lg: 0 12px 48px rgba(27,58,92,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────────── */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.section-label.light { color: rgba(184,148,31,0.9); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-title.light { color: var(--white); }
.section-title.centered { text-align: center; }

.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 1rem;
}
.section-body.light { color: rgba(255,255,255,0.72); }
.section-body.centered { text-align: center; }
.section-body.max-600 { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── LAYOUT ─────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad { padding: 6rem 0; }

.mt-24 { margin-top: 1.5rem !important; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.22s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,148,31,0.35); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-m); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

.btn-ghost-light {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost-light:hover { background: var(--navy); color: var(--white); }

/* ── NAV ─────────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s var(--ease);
  padding: 0;
}

#nav.scrolled {
  background: rgba(13,33,53,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184,148,31,0.3);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  width: 36px;
  height: 30px;
  object-fit: contain;
  mix-blend-mode: lighten;
  background: transparent;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active { color: var(--white); }

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 600;
}
.nav-link.nav-cta:hover { background: var(--gold-lt); color: var(--navy); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-d);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(184,148,31,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(27,58,92,0.8) 0%, transparent 70%),
    linear-gradient(135deg, #0D2135 0%, #1B3A5C 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,148,31,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,148,31,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.kicker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 760px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(184,148,31,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ── STRIP ───────────────────────────────────────────────────────────────────── */
.strip {
  background: var(--navy);
  padding: 3rem 0;
}

.strip-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.strip-text em {
  color: var(--gold);
  font-style: italic;
}

/* ── WHAT WE DO ──────────────────────────────────────────────────────────────── */
.what { background: var(--cream); }

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.feature-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: all 0.25s var(--ease);
  border-left: 3px solid transparent;
}

.feature-card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.fc-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

.fc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.fc-body { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* ── SPOTLIGHT ───────────────────────────────────────────────────────────────── */
.spotlight { background: var(--navy-d); }

.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.level-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }

.level-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

.level-item.active {
  background: rgba(184,148,31,0.15);
  color: var(--gold);
  border: 1px solid rgba(184,148,31,0.3);
}

.level-emoji { font-size: 1rem; }

/* SCORE CARD */
.score-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,148,31,0.25);
  border-radius: 8px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.sc-header {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.sc-business {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.sc-score-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.sc-ring {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.sc-ring svg { width: 100%; height: 100%; }
.sc-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.sc-level {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}
.sc-level-name { font-size: 0.78rem; color: var(--gold); margin-top: 0.2rem; }

.sc-dims { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }

.sc-dim { display: grid; grid-template-columns: 1fr 3fr 0.5fr; gap: 0.5rem; align-items: center; }
.sc-dim-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.sc-dim-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.sc-dim-fill { height: 100%; border-radius: 2px; }
.sc-dim-pct { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-align: right; }

.sc-rec {
  font-size: 0.8rem;
  color: var(--gold);
  padding: 0.6rem 0.8rem;
  background: rgba(184,148,31,0.1);
  border-radius: 3px;
  border: 1px solid rgba(184,148,31,0.2);
}

/* ── WHO WE SERVE ────────────────────────────────────────────────────────────── */
.serve { background: var(--white); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.serve-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.serve-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.serve-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.serve-card:hover::before { transform: scaleX(1); }

.serve-icon { font-size: 2rem; margin-bottom: 1rem; }
.serve-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.serve-body { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }

/* ── FOUNDER ─────────────────────────────────────────────────────────────────── */
.founder { background: var(--cream); }

.founder-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
  opacity: 0.5;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.sig-name { font-weight: 600; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.sig-title { font-size: 0.82rem; color: var(--mid); }

.founder-meta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 3rem;
  border-left: 2px solid var(--gold);
}

.fm-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.fm-label { font-size: 0.75rem; color: var(--mid); margin-top: 0.2rem; }

/* ── CTA ─────────────────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(184,148,31,0.07);
}

.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-d);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(184,148,31,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer-logo { width: 48px; height: 40px; object-fit: contain; margin-bottom: 0.75rem; mix-blend-mode: lighten; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.35rem; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.35); font-style: italic; }

.footer-col-title { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.footer-link { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-d);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(184,148,31,0.1) 0%, transparent 60%),
    linear-gradient(135deg, #0D2135 0%, #1B3A5C 100%);
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 540px; line-height: 1.75; }

/* ── ABOUT PAGE ──────────────────────────────────────────────────────────────── */
.about-story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-visual {
  background: var(--navy);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.story-visual::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(184,148,31,0.1);
}
.story-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; position: relative; z-index: 1; }
.s-stat { padding: 1.25rem; background: rgba(255,255,255,0.05); border-radius: 3px; border: 1px solid rgba(184,148,31,0.2); }
.s-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.s-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.value-card { padding: 2rem; border: 1px solid var(--border); border-radius: 4px; }
.value-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.value-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.value-body { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* ── NAVIGATOR PAGE ──────────────────────────────────────────────────────────── */
.nav-how { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.step-card { padding: 2rem; background: var(--white); border: 1px solid var(--border); border-radius: 4px; position: relative; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.step-body { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

.dim-section { background: var(--navy-d); }
.dim-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.dim-card-full {
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,148,31,0.18);
  border-radius: 4px;
  transition: all 0.25s;
}
.dim-card-full:hover { background: rgba(255,255,255,0.07); border-color: rgba(184,148,31,0.4); }
.dim-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.dim-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.dim-card-body { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── SERVICES PAGE ───────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.service-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.25s;
  border-top: 3px solid var(--gold);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.service-price { font-size: 0.8rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.service-body { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

/* ── CONTACT PAGE ────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label { font-size: 0.72rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; }
.form-input, .form-select, .form-textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); }
.form-textarea { resize: vertical; min-height: 120px; }
.contact-info { padding: 2.5rem; background: var(--navy-d); border-radius: 4px; }
.ci-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 1.5rem; }
.ci-item { margin-bottom: 1.5rem; }
.ci-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 0.3rem; font-weight: 600; }
.ci-value { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .what-grid, .spotlight-inner, .story-grid, .founder-inner, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .serve-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .dim-cards-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .founder-meta { flex-direction: row; border-left: none; border-top: 2px solid var(--gold); padding-left: 0; padding-top: 1.5rem; }
}

@media (max-width: 600px) {
  .section-pad { padding: 4rem 0; }
  .serve-grid, .values-grid, .dim-cards-grid, .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--navy-d); padding: 2rem; gap: 1.25rem; border-top: 1px solid rgba(184,148,31,0.2); }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .hero-stats { gap: 1rem; }
  .stat-div { display: none; }
  .spotlight-visual { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── NAVIGATOR SIGN-IN BOX ───────────────────────────────────────────────────── */
.signin-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,148,31,0.3);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
}

.signin-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.signin-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.signin-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.signin-input::placeholder { color: rgba(255,255,255,0.35); }
.signin-input:focus { border-color: var(--gold); }

.signin-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── MATURITY LEVEL FULL CARDS ───────────────────────────────────────────────── */
.level-full-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--lc, var(--navy));
  border-radius: 4px;
  transition: all 0.25s var(--ease);
}

.level-full-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.lfc-emoji { font-size: 1.75rem; flex-shrink: 0; }

.lfc-content { flex: 1; }

.lfc-level {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.lfc-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.lfc-body {
  font-size: 0.83rem;
  color: var(--mid);
  line-height: 1.55;
}

.lfc-score {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lc, var(--navy));
  flex-shrink: 0;
  min-width: 70px;
  text-align: right;
}

/* ── HOMEPAGE NAVIGATOR FEATURE ──────────────────────────────────────────────── */
.nav-feature {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.nav-feature::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(184,148,31,0.07);
  pointer-events: none;
}

.nav-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.nav-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  transition: all 0.22s var(--ease);
  text-decoration: none;
}

.nav-feature-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,148,31,0.35);
}

@media (max-width: 900px) {
  .nav-feature-grid { grid-template-columns: 1fr; }
  .signin-form { flex-direction: column; }
  .level-full-card { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .lfc-score { text-align: left; }
}

/* ── FORMSPREE SUCCESS / ERROR STATES ───────────────────────────────────────── */
[data-fs-success] { display: none; }
[data-fs-success]:not([style*="display: none"]) { display: block !important; }

[data-fs-error]:not(:empty) { display: block !important; }

form[data-fs-state="success"] ~ [data-fs-success],
[data-fs-success][style*="display: block"] {
  display: block !important;
}
