/* ══════════════════════════════════════════════
   STRATUS — Elevated Design System v2
   Theme: Deep Obsidian × Warm Ivory × Burnished Gold
   Aesthetic: Premium Advisory Firm × Architecture Magazine
   ══════════════════════════════════════════════ */

:root {
  --ivory:        #F7F3ED;
  --ivory-deep:   #EDE6DA;
  --ivory-mid:    #DDD4C5;
  --parchment:    #C9BCAA;
  --slate:        #18202E;
  --slate-mid:    #28364A;
  --slate-light:  #3D506A;
  --slate-muted:  #6E8099;
  --gold:         #B8913A;
  --gold-bright:  #D4AB50;
  --gold-light:   #E8C87A;
  --gold-pale:    #F5E4B4;
  --gold-wash:    rgba(184,145,58,0.10);
  --gold-rim:     rgba(184,145,58,0.28);
  --white:        #FFFFFF;
  --green:        #3D9970;
  --red-light:    #E57373;

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

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm:  0 1px 4px rgba(18,24,38,0.08), 0 2px 10px rgba(18,24,38,0.05);
  --shadow-md:  0 4px 20px rgba(18,24,38,0.12), 0 1px 4px rgba(18,24,38,0.07);
  --shadow-lg:  0 16px 56px rgba(18,24,38,0.16), 0 4px 16px rgba(18,24,38,0.09);
  --shadow-gold: 0 8px 36px rgba(184,145,58,0.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--ivory);
  color: var(--slate);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: 0.5;
}

::selection { background: var(--gold-pale); color: var(--slate); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--parchment); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── LAYOUT ── */
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
section { padding: 112px 0; }
hr.divider { border: none; border-top: 1px solid var(--ivory-mid); margin: 0; }

/* ── TYPOGRAPHY ── */
h1 { font-family: var(--ff-display); font-size: clamp(3rem, 6.5vw, 5.4rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-family: var(--ff-display); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; }
h3 { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; line-height: 1.3; }
p  { color: var(--slate-light); line-height: 1.8; }
a  { text-decoration: none; color: inherit; }

/* SVG ICONS — inline SVG system for guaranteed rendering */
.icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1em; height: 1em;
  vertical-align: middle;
  fill: currentColor;
  flex-shrink: 0;
}
.icon svg { width: 100%; height: 100%; fill: currentColor; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(247,243,237,0.90);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  border-bottom-color: var(--ivory-mid);
  box-shadow: 0 2px 28px rgba(18,24,38,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 700;
  color: var(--slate); letter-spacing: -0.03em;
}
.nav-logo .logo-icon {
  width: clamp(56px, 12vw, 72px); height: clamp(56px, 12vw, 72px);
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--slate-muted); position: relative; padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease-expo);
}
.nav-links a:hover { color: var(--slate); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 99px;
  background: var(--slate); color: var(--ivory);
  border: 1.5px solid var(--slate);
  transition: background 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--slate-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18,24,38,0.22);
  color: var(--ivory);
}

/* Burger */
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--slate); border-radius: 99px;
  transition: transform 0.3s var(--ease-expo), opacity 0.2s;
  margin: 5px 0;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--ivory-mid);
  padding: 28px 24px 32px;
  z-index: 499; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 500; color: var(--slate);
  padding: 14px 16px; border-radius: 10px;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav a:hover { background: var(--ivory-deep); }
.mobile-nav a.mobile-cta {
  background: var(--slate); color: var(--ivory);
  margin-top: 12px; justify-content: center;
  letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.8rem;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
#hero {
  min-height: 100svh; padding-top: 72px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--ivory);
}

.hero-geo {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-geo::before {
  content: '';
  position: absolute; top: -15%; right: -10%;
  width: 55vw; height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle at 55% 40%, var(--ivory-deep) 0%, var(--ivory-mid) 50%, transparent 75%);
  opacity: 0.8;
}
.hero-geo::after {
  content: '';
  position: absolute; bottom: 5%; left: -8%;
  width: 35vw; height: 35vw; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-wash) 0%, transparent 70%);
  animation: breathe 10s ease-in-out infinite alternate;
}
@keyframes breathe { from { transform: scale(1); opacity: 0.5; } to { transform: scale(1.18); opacity: 1; } }

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(18,24,38,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,24,38,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
}

.hero-inner { position: relative; z-index: 2; padding: 80px 0 60px; }
.hero-inner .wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* LEFT */
.hero-left { max-width: 560px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-wash);
  border: 1px solid var(--gold-rim);
  padding: 7px 14px; border-radius: 99px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s var(--ease-expo) both;
}
.hero-tag .tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.hero-left h1 { color: var(--slate); margin-bottom: 24px; animation: fadeUp 0.7s var(--ease-expo) 0.1s both; }
.hero-left h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem; color: var(--slate-light); line-height: 1.85;
  max-width: 480px; margin-bottom: 40px;
  animation: fadeUp 0.7s var(--ease-expo) 0.2s both;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.7s var(--ease-expo) 0.3s both; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px; border-radius: 99px;
  background: var(--slate); color: var(--ivory);
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid var(--slate); cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--slate-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18,24,38,0.24);
  color: var(--ivory);
}
.btn-primary .arrow { transition: transform 0.2s var(--ease-spring); }
.btn-primary:hover .arrow { transform: translateX(5px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px; border-radius: 99px;
  background: transparent; color: var(--slate);
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid var(--ivory-mid); cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-spring);
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--slate-muted); background: var(--ivory-deep); transform: translateY(-1px); }

/* HERO STATS */
.hero-stats {
  display: flex; gap: 0; margin-top: 52px;
  border-top: 1px solid var(--ivory-mid); padding-top: 36px;
  animation: fadeUp 0.7s var(--ease-expo) 0.4s both;
}
.stat-box { flex: 1; padding: 0 28px 0 0; border-right: 1px solid var(--ivory-mid); }
.stat-box:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.stat-box:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--ff-display); font-size: 2.6rem; font-weight: 700;
  color: var(--slate); line-height: 1; margin-bottom: 5px;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--slate-muted);
}

/* RIGHT — Card stack */
.hero-right { position: relative; animation: fadeUp 0.8s var(--ease-expo) 0.25s both; }
.hero-card-stack { position: relative; height: 500px; }
.hcard {
  position: absolute;
  background: var(--white); border-radius: 22px;
  padding: 30px 34px; box-shadow: var(--shadow-md);
  border: 1px solid var(--ivory-mid);
}
.hcard-main {
  top: 0; left: 0; right: 0; z-index: 3;
  background: var(--slate); color: var(--ivory);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.hcard-main .card-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold-wash); border: 1px solid var(--gold-rim);
  color: var(--gold-light); font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 99px; margin-bottom: 20px;
}
.hcard-main .card-tag .icon { font-size: 0.75rem; color: var(--gold-bright); }
.hcard-main h3 { color: var(--ivory); font-size: 1.2rem; margin-bottom: 10px; }
.hcard-main p { color: var(--slate-muted); font-size: 0.87rem; line-height: 1.7; margin-bottom: 0; }
.hcard-main .card-metrics { display: flex; gap: 22px; margin-top: 26px; }
.metric-val {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.metric-val.green { color: #81C784; }
.metric-lbl {
  font-size: 0.65rem; color: rgba(255,255,255,0.35);
  margin-top: 3px; letter-spacing: 0.07em; text-transform: uppercase;
}

.hcard-float-1 {
  top: 210px; right: -28px; width: 210px; z-index: 4; padding: 20px 22px;
  animation: float1 5s ease-in-out infinite alternate;
  box-shadow: var(--shadow-md);
}
.hcard-float-1 .mini-num { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hcard-float-1 .mini-label { font-size: 0.68rem; font-weight: 500; color: var(--slate-muted); margin-top: 4px; letter-spacing: 0.05em; }
.hcard-float-1 .mini-trend {
  display: flex; align-items: center; gap: 5px; margin-top: 12px;
  font-size: 0.7rem; color: var(--green); font-weight: 600;
}
.mini-trend .icon { font-size: 0.8rem; }

.hcard-float-2 {
  bottom: 0; left: 20px; right: 60px; z-index: 4;
  padding: 20px 24px; display: flex; align-items: center; gap: 14px;
  animation: float2 6s ease-in-out infinite alternate;
  box-shadow: var(--shadow-md);
}
.avatar-row { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.63rem; font-weight: 700; margin-left: -8px; flex-shrink: 0;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: #D4A574; color: #5D3A1A; }
.av2 { background: #7BA4C5; color: #1A3A5D; }
.av3 { background: #8FBC8F; color: #1A3D1A; }
.av4 { background: var(--gold-wash); color: var(--gold); border: 2px solid var(--gold-rim); font-size: 0.8rem; }
.float-text .t1 { font-size: 0.78rem; font-weight: 600; color: var(--slate); }
.float-text .t2 { font-size: 0.67rem; color: var(--slate-muted); }

.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
  position: absolute; top: 18px; right: 18px;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(61,153,112,0.5);} 50%{box-shadow:0 0 0 8px rgba(61,153,112,0);} }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
@keyframes float1 { from{transform:translateY(0);} to{transform:translateY(-10px);} }
@keyframes float2 { from{transform:translateY(-4px);} to{transform:translateY(7px);} }

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
  background: var(--slate);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.trust-sep { color: rgba(255,255,255,0.15); font-size: 1.2rem; }
.trust-icon { color: var(--gold); font-size: 0.95rem; }

/* ═══════════════════════════════════════
   WHO WE ARE
   ═══════════════════════════════════════ */
#who-we-are {
  background: var(--slate); color: var(--ivory);
  position: relative; overflow: hidden;
}
#who-we-are::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(184,145,58,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.section-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

#who-we-are .section-label { color: var(--gold); }
#who-we-are h2 { color: var(--ivory); margin-bottom: 20px; }
.intro-text {
  color: var(--slate-muted); font-size: 1.05rem;
  max-width: 560px; line-height: 1.85; margin-bottom: 72px;
}

.wwa-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(255,255,255,0.05);
  border-radius: 20px; overflow: hidden;
}
.wwa-card {
  background: rgba(255,255,255,0.03);
  padding: 44px 38px;
  position: relative; cursor: default;
  transition: background 0.3s;
}
.wwa-card:hover { background: rgba(255,255,255,0.07); }
.wwa-card .wwa-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-wash); border: 1px solid var(--gold-rim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--gold-bright); font-size: 1.2rem;
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}
.wwa-card:hover .wwa-icon { transform: scale(1.1) rotate(-4deg); background: rgba(184,145,58,0.18); }
.wwa-card .gold-line {
  width: 28px; height: 2px; background: var(--gold);
  border-radius: 99px; margin-bottom: 18px;
  transition: width 0.35s var(--ease-expo);
}
.wwa-card:hover .gold-line { width: 48px; }
.wwa-card h3 { font-size: 1.1rem; color: var(--ivory); margin-bottom: 10px; }
.wwa-card p { font-size: 0.87rem; color: var(--slate-muted); line-height: 1.75; }

/* ═══════════════════════════════════════
   WHO SHOULD CONNECT
   ═══════════════════════════════════════ */
#who-connect { background: var(--ivory-deep); }

.section-header { display: flex; flex-direction: column; gap: 12px; margin-bottom: 64px; }
#who-connect .section-label { color: var(--gold); }
#who-connect .section-label::before { background: var(--gold); }

.connect-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.connect-card {
  background: var(--white); border-radius: 22px;
  padding: 44px 40px; border: 1px solid var(--ivory-mid);
  position: relative; overflow: hidden; cursor: default;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s, border-color 0.3s;
}
.connect-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
}
.connect-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.connect-card:hover::before { transform: scaleX(1); }

.connect-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 24px;
  background: var(--gold-wash); border: 1px solid var(--gold-rim);
  color: var(--gold); transition: transform 0.3s var(--ease-spring), background 0.3s;
}
.connect-card:hover .connect-icon { transform: scale(1.1) rotate(-5deg); background: rgba(184,145,58,0.18); }
.connect-card h3 { font-size: 1.2rem; color: var(--slate); margin-bottom: 12px; }
.connect-card p { font-size: 0.9rem; color: var(--slate-light); line-height: 1.8; }

/* ═══════════════════════════════════════
   FOCUS AREAS
   ═══════════════════════════════════════ */
#focus-areas { background: var(--ivory); }

.focus-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.focus-intro p { font-size: 1rem; color: var(--slate-light); line-height: 1.85; }

.focus-row { display: flex; gap: 14px; flex-wrap: wrap; }
.focus-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 17px 28px; background: var(--white);
  border: 1px solid var(--ivory-mid); border-radius: 99px;
  transition: all 0.28s var(--ease-expo); cursor: default;
}
.focus-pill:hover { background: var(--slate); border-color: var(--slate); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.focus-pill .pill-icon { color: var(--gold); font-size: 1rem; transition: color 0.2s; flex-shrink: 0; }
.focus-pill:hover .pill-icon { color: var(--gold-light); }
.focus-pill span { font-size: 0.9rem; font-weight: 500; color: var(--slate); transition: color 0.2s; }
.focus-pill:hover span { color: var(--ivory); }

.focus-deco {
  font-family: var(--ff-display); font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 700; color: rgba(18,24,38,0.04); letter-spacing: -0.04em;
  line-height: 1; margin-top: 48px; user-select: none; pointer-events: none;
}

/* ═══════════════════════════════════════
   NEXT STEPS
   ═══════════════════════════════════════ */
#next-steps { background: var(--ivory-deep); }
#next-steps h2 { margin-bottom: 14px; }
#next-steps .intro { font-size: 1rem; color: var(--slate-light); max-width: 520px; margin-bottom: 72px; }

.steps-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.steps-aside { position: sticky; top: 100px; }
.steps-aside .big-num {
  font-family: var(--ff-display); font-size: 8rem; font-weight: 700;
  color: rgba(18,24,38,0.06); line-height: 1; margin-bottom: -16px;
}
.steps-aside p { font-size: 0.88rem; color: var(--slate-muted); line-height: 1.8; }
.steps-aside .step-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; padding: 12px 22px; border-radius: 99px;
  background: var(--slate); color: var(--ivory);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
}
.steps-aside .step-cta:hover { background: var(--slate-mid); transform: translateY(-2px); }

.steps-list { display: flex; flex-direction: column; }
.step-item {
  display: flex; gap: 28px; padding: 40px 0;
  border-bottom: 1px solid var(--ivory-mid); position: relative;
}
.step-item:last-child { border-bottom: none; }

.step-badge {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%; background: var(--ivory);
  border: 1.5px solid var(--parchment);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 0.95rem; font-weight: 700;
  color: var(--slate-muted);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.step-item:hover .step-badge { background: var(--gold); border-color: var(--gold); color: var(--white); }
.step-body h3 { font-size: 1.1rem; margin-bottom: 14px; color: var(--slate); }
.step-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.step-body li {
  font-size: 0.88rem; color: var(--slate-light);
  padding-left: 18px; position: relative; line-height: 1.7;
}
.step-body li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 1.5px; background: var(--gold);
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
#faqs { background: var(--ivory); }
.faq-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left h2 { margin-bottom: 16px; }
.faq-left p { font-size: 0.9rem; color: var(--slate-light); line-height: 1.85; margin-bottom: 32px; }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 99px;
  border: 1.5px solid var(--gold-rim); color: var(--gold);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-outline-gold:hover { background: var(--gold-wash); border-color: var(--gold); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--ivory-mid); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid var(--ivory-mid); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 26px 0; cursor: pointer; user-select: none;
  font-size: 0.95rem; font-weight: 500; color: var(--slate); transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-toggle {
  flex-shrink: 0; width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--parchment);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-muted); font-size: 1.1rem;
  transition: transform 0.35s var(--ease-expo), background 0.2s, border-color 0.2s, color 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold-wash); border-color: var(--gold-rim); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-expo); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 40px 26px 0; font-size: 0.9rem; color: var(--slate-light); line-height: 1.85; }

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
#contact { background: var(--slate); position: relative; overflow: hidden; }
#contact::after {
  content: ''; position: absolute; bottom: -30%; left: 30%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(184,145,58,0.07) 0%, transparent 65%);
  pointer-events: none;
}
#contact .section-label { color: var(--gold); }
#contact .section-label::before { background: var(--gold); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; position: relative; z-index: 1;
}
#contact h2 { color: var(--ivory); margin-bottom: 16px; }
#contact .tagline { font-size: 1rem; color: var(--slate-muted); line-height: 1.85; margin-bottom: 48px; }

.contact-tiles { display: flex; flex-direction: column; gap: 14px; }
.contact-tile {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s var(--ease-spring);
}
.contact-tile:hover { background: rgba(255,255,255,0.09); border-color: var(--gold-rim); transform: translateX(6px); }
.contact-tile-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-wash); border: 1px solid var(--gold-rim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright); font-size: 1.15rem; flex-shrink: 0;
}
.contact-tile-text .label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-muted); margin-bottom: 2px;
}
.contact-tile-text .val { font-size: 0.92rem; font-weight: 500; color: var(--ivory); }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px; padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.fg label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--slate-muted);
}
.fg input, .fg textarea, .fg select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px; padding: 13px 16px;
  font-family: var(--ff-body); font-size: 0.9rem; color: var(--ivory);
  outline: none; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.22); }
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--gold-rim);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 3px rgba(184,145,58,0.14);
}
.fg textarea { min-height: 110px; resize: vertical; }
.fg select option { background: var(--slate-mid); color: var(--ivory); }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--gold); color: var(--slate);
  font-family: var(--ff-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: 99px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
  margin-top: 6px;
}
.form-submit:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.form-submit:active { transform: translateY(0) scale(0.99); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  background: var(--slate);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 0;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-inner p { font-size: 0.75rem; color: var(--slate-muted); letter-spacing: 0.05em; }
.footer-logo {
  font-family: var(--ff-display); font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,0.2); letter-spacing: -0.02em;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.72rem; color: var(--slate-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease-expo), transform 0.65s var(--ease-expo); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s var(--ease-expo), transform 0.65s var(--ease-expo); }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s var(--ease-expo), transform 0.65s var(--ease-expo); }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo); }
.stagger.in > *:nth-child(1) { opacity:1;transform:none;transition-delay:0ms; }
.stagger.in > *:nth-child(2) { opacity:1;transform:none;transition-delay:80ms; }
.stagger.in > *:nth-child(3) { opacity:1;transform:none;transition-delay:160ms; }
.stagger.in > *:nth-child(4) { opacity:1;transform:none;transition-delay:240ms; }
.stagger.in > *:nth-child(5) { opacity:1;transform:none;transition-delay:320ms; }
.stagger.in > *:nth-child(6) { opacity:1;transform:none;transition-delay:400ms; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner .wrap { grid-template-columns: 1fr; gap: 52px; }
  .hero-right { display: none; }
  .wwa-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-layout { grid-template-columns: 1fr; gap: 40px; }
  .steps-aside { position: static; }
  .focus-intro { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .wrap { padding: 0 20px; }
  #nav { padding: 0 20px; height: 64px; }
  .nav-logo .logo-icon { width: 56px; height: 56px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }

  /* Mobile nav top offset */
  .mobile-nav { top: 64px; }

  /* Hero mobile */
  .hero-inner { padding: 52px 0 40px; }
  .hero-left { max-width: 100%; }
  .hero-left h1 { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .hero-sub { font-size: 0.97rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 20px; padding-top: 28px; margin-top: 36px; }
  .stat-box { flex: 1; min-width: calc(50% - 10px); border-right: none; border-bottom: none; padding: 0; }
  .stat-box:nth-child(1), .stat-box:nth-child(2) { border-bottom: 1px solid var(--ivory-mid); padding-bottom: 16px; }
  .stat-num { font-size: 2rem; }

  /* Trust bar mobile */
  .trust-item:nth-child(n+4) { display: none; }
  .trust-sep:nth-child(n+3) { display: none; }

  /* Who we are mobile */
  .wwa-grid { grid-template-columns: 1fr; }
  .wwa-card { padding: 28px 24px; }

  /* Connect grid mobile */
  .connect-grid { grid-template-columns: 1fr; }
  .connect-card { padding: 32px 28px; }

  /* Focus pills mobile */
  .focus-intro { grid-template-columns: 1fr; gap: 16px; }
  .focus-row { gap: 10px; }
  .focus-pill { padding: 13px 20px; }
  .focus-pill span { font-size: 0.85rem; }

  /* Steps mobile */
  .steps-layout { grid-template-columns: 1fr; gap: 32px; }
  .steps-aside { position: static; }
  .steps-aside .big-num { font-size: 5rem; }
  .step-item { gap: 18px; padding: 28px 0; }

  /* FAQ mobile */
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .faq-a p { padding-right: 0; }

  /* Contact mobile */
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer mobile */
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; }
  .stat-box { min-width: 100%; border-bottom: 1px solid var(--ivory-mid) !important; padding-bottom: 16px !important; }
  .stat-box:last-child { border-bottom: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-right, .stagger > * { opacity: 1 !important; transform: none !important; }
}


