@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cabinet+Grotesk:wght@300;400;500;700;800;900&family=Instrument+Serif:ital@0;1&display=swap');

/* ── TOKENS ── */
:root {
  --navy:        #0B1C35;
  --navy-mid:    #0E2240;
  --navy-deep:   #071528;
  --navy-banner: #011D3F;
  --orange:      #F47B20;
  --orange-dark: #E86E10;
  --orange-light:#FFB060;
  --cream:       #F9F6F1;
  --gray-card:   #EFEDE8;
  --border:      #E0DDD6;
  --white:       #FFFFFF;
  --ink:         #1E2535;
  --ink-2:       #3C4150;
  --muted:       #7A7A8C;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  background: var(--cream);
  color: var(--ink-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── ORANGE STRIPE ── */
.stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--orange) 15%, var(--orange-light) 50%, var(--orange) 85%, var(--navy) 100%);
  flex-shrink: 0;
}

/* ── G MARK LOGO ── */
.g-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
  filter: brightness(0) invert(1);
}
.g-mark-sm {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
  filter: brightness(0) invert(1);
}

/* ── NAV ── */
.site-nav {
  background: var(--navy-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 36px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
}
.nav-wordmark sup {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 7px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  vertical-align: middle;
  display: inline-block;
  transform: rotate(-90deg);
  transform-origin: center center;
  margin-left: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 8.5pt;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  font-size: 8.5pt !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

/* ── HERO BANNER ── */
.site-banner {
  background: var(--navy-banner);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.site-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.site-banner::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 70px solid rgba(244,123,32,0.04);
  pointer-events: none;
}
.site-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 36px 160px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.banner-eyebrow {
  font-size: 7.5pt;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.banner-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  color: var(--white);
  letter-spacing: 4px;
  line-height: 0.95;
  margin-bottom: 6px;
}
.banner-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.banner-sub {
  font-size: 11pt;
  color: rgba(255,255,255,0.6);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 32px;
}
.banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.banner-stats {
  border-left: 1px solid rgba(244,123,32,0.3);
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.banner-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30pt;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 1px;
}
.banner-stat-lbl {
  font-size: 7pt;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-top: 3px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 52px 36px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: -40px; bottom: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 36px solid rgba(244,123,32,0.06);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-eyebrow {
  font-size: 7.5pt;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--orange);
  display: inline-block;
  margin-bottom: 12px;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 14px;
}
.page-subtitle {
  font-size: 11pt;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.72;
}

/* ── SUBHEADER (below hero, matching packages doc) ── */
.subheader {
  background: var(--navy-mid);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.subheader-left {}
.subheader-eyebrow {
  font-size: 7pt;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.subheader-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.subheader-nav li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8pt;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.subheader-nav li svg { width: 14px; height: 14px; flex-shrink: 0; }
.subheader-right {
  font-size: 8pt;
  color: rgba(255,255,255,0.35);
  text-align: right;
  line-height: 1.8;
}
.subheader-right a { color: var(--orange); }

/* ── SECTION WRAPPERS ── */
.section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 36px;
}
.section-sm {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 36px;
}

/* ── SECTION LABELS ── */
.sec-label {
  font-size: 7.5pt;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--orange);
  margin-bottom: 14px;
}
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1.02;
  margin-bottom: 14px;
}
.sec-body {
  font-size: 10.5pt;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 660px;
}

/* ── DARK BAND ── */
.dark-band {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.dark-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.dark-band::after {
  content: '';
  position: absolute;
  left: -50px; bottom: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 40px solid rgba(244,123,32,0.06);
  pointer-events: none;
}
.dark-band-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 36px;
  position: relative;
  z-index: 2;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 8.5pt;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1.5px solid transparent;
}
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.28); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.btn-ghost-dark { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.card {
  background: var(--gray-card);
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.card-body { font-size: 9.5pt; color: var(--ink-2); line-height: 1.72; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-deep); }
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 36px 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 3px;
}
.footer-wordmark sup {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 7px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  vertical-align: middle;
  display: inline-block;
  transform: rotate(-90deg);
  transform-origin: center center;
  margin-left: -2px;
}
.footer-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 9.5pt;
  color: var(--orange);
  margin-bottom: 10px;
}
.footer-sub {
  font-size: 7.5pt;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col-title {
  font-size: 7.5pt;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 9pt; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-line { font-size: 9pt; color: rgba(255,255,255,0.5); line-height: 1.9; }
.footer-contact-line a { color: var(--orange); }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 36px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 8pt; color: rgba(255,255,255,0.22); }
.footer-sub-links { display: flex; gap: 20px; list-style: none; }
.footer-sub-links a { font-size: 8pt; color: rgba(255,255,255,0.22); transition: color 0.2s; }
.footer-sub-links a:hover { color: rgba(255,255,255,0.5); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ── HERO ENTRANCE (CSS only, no JS) ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeInUp 0.65s ease 0.05s both; }
.anim-2 { animation: fadeInUp 0.65s ease 0.22s both; }
.anim-3 { animation: fadeInUp 0.65s ease 0.38s both; }
.anim-4 { animation: fadeInUp 0.65s ease 0.52s both; }
.anim-5 { animation: fadeInUp 0.65s ease 0.65s both; }

/* ── CARD HOVER LIFT ── */
.card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(11,28,53,0.1); }

/* ── TRAIT CARDS (careers) ── */
.trait-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 20px;
}
.trait-card {
  background: var(--white);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.trait-card:hover { background: var(--gray-card); }
.trait-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: rgba(11,28,53,0.06);
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 18px;
  letter-spacing: 1px;
}
.trait-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.trait-icon svg { width: 18px; height: 18px; color: var(--white); }
.trait-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1;
}
.trait-body { font-size: 9.5pt; color: var(--ink-2); line-height: 1.72; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .trait-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy-deep);
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
  }
  .nav-links.open li a { display: block; padding: 12px 36px; width: 100%; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }
  .site-banner-inner { padding: 72px 20px 160px; }
  .hero-stats-inner { flex-wrap: wrap; padding: 0 20px; }
  .hero-stat-item { flex: 1 1 50%; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; padding: 14px 0; }
  .hero-stat-item:nth-child(2n) { padding-left: 20px; }
  .hero-stat-item:nth-last-child(-n+2) { border-bottom: none !important; }
  .about-split { grid-template-columns: 1fr; gap: 32px; padding: 52px 20px; }
  .process-header { grid-template-columns: 1fr; gap: 24px; }
  .step-grid { grid-template-columns: 1fr; }
  .new-serve-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .process-inner { padding: 56px 20px; }
  .cta-band { padding: 72px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 48px 20px; }
  .section-sm { padding: 36px 20px; }
  .dark-band-inner { padding: 48px 20px; }
  .page-hero { padding: 40px 20px; }
  .subheader { padding: 12px 20px; flex-direction: column; gap: 8px; align-items: flex-start; }
}
@media (max-width: 560px) {
  .site-banner-inner { padding: 56px 20px 180px; }
  .hero-stat-item { flex: 1 1 50%; }
  .new-serve-grid { grid-template-columns: 1fr; }
  .banner-headline { font-size: clamp(52px, 14vw, 100px); }
}

/* ══════════════════════════════════════════
   HOMEPAGE REDESIGN — NEW COMPONENTS
   ══════════════════════════════════════════ */

/* ── HERO WATERMARK ── */
.banner-bg-text {
  position: absolute;
  right: -3vw;
  top: 50%;
  transform: translateY(-55%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 20vw, 300px);
  color: rgba(255,255,255,0.022);
  letter-spacing: 10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}

/* ── HERO STATS BAR ── */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(1,8,20,0.7);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 3;
}
.hero-stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: stretch;
}
.hero-stat-item {
  flex: 1;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hero-stat-item:first-child { padding-left: 0; }
.hero-stat-item:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26pt;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 1px;
}
.hero-stat-lbl {
  font-size: 7pt;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}

/* ── MARQUEE TICKER ── */
.marquee-strip {
  background: var(--orange);
  overflow: hidden;
  padding: 11px 0;
  position: relative;
  z-index: 4;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-run 90s linear infinite;
  will-change: transform;
}
.marquee-item {
  display: flex;
  align-items: center;
  padding: 0 32px;
  font-size: 7.5pt;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  gap: 10px;
}
.marquee-dot { color: rgba(255,255,255,0.4); }
@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ── CREAM SECTION BACKGROUND ── */
.cream-bg { background: var(--cream); }

/* ── ABOUT SPLIT ── */
.about-split {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 36px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.about-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0.01em;
  quotes: none;
  border: none;
  padding: 0;
  margin: 14px 0 0;
}
.about-accent-bar {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 22px 0 10px;
}

/* ── PROCESS / NAVIGATE ── */
.process-wrapper {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.process-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.process-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 36px;
  position: relative;
  z-index: 2;
}
.process-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.price-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 9vw, 108px);
  color: var(--orange);
  line-height: 0.9;
  letter-spacing: 2px;
}
.price-term {
  font-size: 8pt;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}
.step-box {
  background: var(--navy-deep);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.step-box:hover { background: var(--navy-mid); }
.step-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
}
.step-box:hover .step-accent { transform: scaleX(1); }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  color: rgba(244,123,32,0.16);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.step-title {
  font-size: 10pt;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-body {
  font-size: 9.5pt;
  color: rgba(255,255,255,0.5);
  line-height: 1.72;
}

/* ── NEW SERVE CARDS ── */
.new-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.new-serve-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}
.new-serve-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(11,28,53,0.12);
  border-color: var(--orange);
}
.serve-icon-box {
  width: 44px;
  height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.new-serve-card:hover .serve-icon-box { background: var(--orange); }
.serve-icon-box svg { width: 20px; height: 20px; color: var(--white); }
.new-serve-num {
  position: absolute;
  right: 14px;
  bottom: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: rgba(11,28,53,0.04);
  line-height: 1;
  letter-spacing: 1px;
  transition: color 0.2s;
  pointer-events: none;
  user-select: none;
}
.new-serve-card:hover .new-serve-num { color: rgba(244,123,32,0.07); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 100px 36px;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-band-bg {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: min(28vw, 340px);
  color: rgba(255,255,255,0.018);
  letter-spacing: 14px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}
.cta-inner { position: relative; z-index: 2; }
.cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  letter-spacing: 4px;
  line-height: 1.05;
  margin-bottom: 14px;
  text-wrap: balance;
}
.cta-sub {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14pt;
  color: var(--orange);
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════
   BOLD + MOTION HERO
   ══════════════════════════════════════════ */

.hero-bm {
  background: #06090F;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bm-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-bm-ghost {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-52%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(200px, 30vw, 440px);
  color: rgba(255,255,255,0.02);
  letter-spacing: 8px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}
.hero-bm-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 36px 80px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-bm-eyebrow {
  font-size: 7.5pt;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  animation: bm-fade-up 0.6s ease 0.05s both;
}
.hero-bm-headline {
  line-height: 0.9;
  margin-bottom: 36px;
}
.hero-bm-l1 {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 196px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 3px;
}
.hero-bm-l2 {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 196px);
  line-height: 0.9;
  color: var(--orange);
  opacity: 0.6;
  letter-spacing: 3px;
}
.bm-w {
  display: inline-block;
  animation: bm-word-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.bm-w1 { animation-delay: 0.18s; }
.bm-w2 { animation-delay: 0.34s; }
.bm-w3 { animation-delay: 0.50s; }
.bm-w4 { animation-delay: 0.66s; }
@keyframes bm-word-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bm-fade { animation: bm-fade-up 0.6s ease both; }
.bm-f1 { animation-delay: 0.82s; }
.bm-f2 { animation-delay: 0.96s; }
.bm-f3 { animation-delay: 1.10s; }
@keyframes bm-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-bm-sub {
  font-size: 11pt;
  color: rgba(255,255,255,0.5);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-bm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-bm-stats {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
.hero-bm-stat {
  flex: 1;
  max-width: 160px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-bm-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-bm-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26pt;
  color: var(--orange);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-bm-stat-lbl {
  font-size: 7pt;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
@media (max-width: 900px) {
  .hero-bm-inner { padding: 72px 20px 64px; }
  .hero-bm-stats { flex-wrap: wrap; gap: 0; }
  .hero-bm-stat {
    flex: 1 1 45%;
    max-width: none;
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .hero-bm-stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.06);
    padding-right: 20px;
    margin-right: 20px;
  }
  .hero-bm-stat:nth-last-child(-n+2) { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
}
@media (max-width: 560px) {
  .hero-bm-inner { padding: 56px 20px 52px; }
}
@media (prefers-reduced-motion: reduce) {
  .bm-w, .hero-bm-eyebrow, .bm-fade { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ══════════════════════════════════════════
   LIGHT-FIRST REDESIGN — HOMEPAGE v2
   ══════════════════════════════════════════ */

/* LIGHT HERO */
.hero-light {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.hero-light-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 36px 80px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-light-eyebrow {
  font-size: 8pt;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-light-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.hero-light-headline {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  line-height: 0.96;
}
.hero-serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(54px, 8.5vw, 120px);
  color: var(--navy);
  letter-spacing: -0.01em;
  display: block;
}
.hero-bold {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(54px, 8.5vw, 120px);
  color: var(--navy);
  letter-spacing: -0.035em;
  display: block;
}
.hero-light-sub {
  font-size: 12pt;
  color: var(--ink-2);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-light-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-light-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero-light-stat {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid var(--border);
  margin-right: 28px;
  max-width: 160px;
}
.hero-light-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-light-stat-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 22pt;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-light-stat-lbl {
  font-size: 7.5pt;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

/* WHITE SECTION UTILITY */
.white-bg { background: var(--white); }

/* LIGHT ABOUT REFINEMENTS */
.about-meta {
  font-size: 10pt;
  color: var(--muted);
  line-height: 1.7;
  font-style: normal;
}

/* LIGHT PROCESS */
.process-light {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-light-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 36px;
}
.process-light-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.price-display-light {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 9vw, 108px);
  color: var(--navy);
  line-height: 0.9;
  letter-spacing: 2px;
}
.price-term-light {
  font-size: 8pt;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
.step-grid-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.step-box-light {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.step-box-light:hover { background: var(--cream); }
.step-accent-light {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
}
.step-box-light:hover .step-accent-light { transform: scaleX(1); }
.step-num-light {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 11pt;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.step-title-light {
  font-size: 11pt;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-body-light {
  font-size: 9.5pt;
  color: var(--ink-2);
  line-height: 1.72;
}

/* LIGHT SERVE CARDS on cream */
.serve-card-light {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  transition: border-top-color 0.22s, transform 0.22s ease, box-shadow 0.22s ease;
}
.serve-card-light:hover {
  border-top-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,28,53,0.09);
}
.serve-card-light .new-serve-num {
  position: absolute;
  right: 14px; bottom: 8px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: rgba(11,28,53,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.2s;
  letter-spacing: -0.02em;
}
.serve-card-light:hover .new-serve-num { color: rgba(244,123,32,0.07); }
.serve-card-light .card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 12pt;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

/* CTA BAND — kept dark, one dark section only */

/* RESPONSIVE — LIGHT COMPONENTS */
@media (max-width: 900px) {
  .hero-light-inner { padding: 72px 20px 64px; }
  .hero-light-stats { flex-wrap: wrap; gap: 16px; }
  .hero-light-stat { flex: 1 1 40%; border-right: none; margin-right: 0; padding-right: 0; max-width: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .hero-light-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .process-light-header { grid-template-columns: 1fr; gap: 28px; }
  .step-grid-light { grid-template-columns: 1fr; }
  .process-light-inner { padding: 56px 20px; }
}
@media (max-width: 560px) {
  .hero-light-inner { padding: 56px 20px 52px; }
  .hero-light-stats { gap: 0; border-top: 1px solid var(--border); }
  .hero-light-stat { flex: 1 1 50%; border-bottom: none; padding: 14px 0; }
  .hero-light-stat:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 14px; margin-right: 14px; }
}
