/* ═══════════════════════════════════════════
   LERUO CAPITAL — SHARED STYLES
   ═══════════════════════════════════════════ */

/* ═══════════════════ PRELOADER ═══════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  background: transparent;
}

/* Two curtain panels */
.pl-curtain {
  position: absolute;
  top: 0; bottom: 0;
  width: 50.1%;
  background: #011c16;
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 1;
}
.pl-curtain--left  { left: 0; }
.pl-curtain--right { right: 0; }
.pl-curtain::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,144,42,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,144,42,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Center stage — logo + bar, sits above curtains */
.pl-stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Logo */
#preloader .pl-logo {
  width: 240px;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(10px);
  animation: plLogoIn 0.75s ease-out 0.25s forwards;
}
@keyframes plLogoIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Loader (replaces bar) */
#preloader .pl-loader {
  width: 80px;
  height: 40px;
  display: flex;
  margin-top: 8px;
}
#preloader .pl-loader::before,
#preloader .pl-loader::after {
  content: '';
  flex: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: rgba(255,255,255,0.9);
  animation:
    plL1 1s infinite linear alternate,
    plL2 2s infinite linear -0.5s;
}
#preloader .pl-loader::after { --s: -1,-1; }
@keyframes plL1 {
  0%,  10% { transform: scale(var(--s,1)) translate(0px)   perspective(150px) rotateY(0deg); }
  33%       { transform: scale(var(--s,1)) translate(-10px) perspective(150px) rotateX(0deg); }
  66%       { transform: scale(var(--s,1)) translate(-10px) perspective(150px) rotateX(-180deg); }
  90%,100%  { transform: scale(var(--s,1)) translate(0px)   perspective(150px) rotateX(-180deg); }
}
@keyframes plL2 {
  0%,  49.99% { background: rgba(255,255,255,0.9); }
  50%, 100%   { background: rgba(255,255,255,0.45); }
}

/* EXIT: curtains sweep apart theatrically, stage fades */
#preloader.is-hidden .pl-curtain--left {
  transform: translateX(-101%);
  transition: transform 0.58s cubic-bezier(0.76, 0, 0.24, 1) 0.12s;
}
#preloader.is-hidden .pl-curtain--right {
  transform: translateX(101%);
  transition: transform 0.58s cubic-bezier(0.76, 0, 0.24, 1) 0.12s;
}
#preloader.is-hidden .pl-stage { opacity: 0; }

/* Inner pages: fast curtain, no delay */
#preloader.pl-fast.is-hidden .pl-curtain--left,
#preloader.pl-fast.is-hidden .pl-curtain--right {
  transition-duration: 0.18s;
  transition-delay: 0s;
}
#preloader.pl-fast .pl-logo { display: none; }

@media (prefers-reduced-motion: reduce) {
  #preloader .pl-logo { animation-duration: .01s; }
  #preloader .pl-loader::before,
  #preloader .pl-loader::after { animation-duration: .01s; }
  #preloader.is-hidden .pl-curtain--left,
  #preloader.is-hidden .pl-curtain--right { transition-duration: 0.15s; }
  .hero h1::before { animation: none; }
  .hero h1 em { animation: none; }
  #page-wipe.wipe-out { transition-duration: 0.01s; }
  #page-wipe-exit.active { transition-duration: 0.01s; }
}

/* ═══════════════════ INLINE DUAL-RING SPINNER ═══════════════════ */
.spinner {
  display: inline-block;
  width: 24px; height: 24px;
  position: relative;
  vertical-align: middle;
}
.spinner::before,
.spinner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spnRotate 0.9s linear infinite;
}
.spinner::before {
  inset: 0;
  border-top-color: #b8902a;
  border-right-color: #b8902a;
}
.spinner::after {
  inset: 4px;
  border-top-color: #d4a838;
  border-bottom-color: #d4a838;
  animation-duration: 1.4s;
  animation-direction: reverse;
}
@keyframes spnRotate { to { transform: rotate(360deg); } }
.spinner--light::before { border-top-color: #fff; border-right-color: #fff; }
.spinner--light::after  { border-top-color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.7); }

/* Button-loading state: hide label, show spinner */
.btn-loading { pointer-events: none; position: relative; color: transparent !important; }
.btn-loading > * { visibility: hidden; }
.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: spnRotate 0.7s linear infinite;
}


:root {
  --green: #011c16;
  --green-deep: #011c16;
  --green-mid: #011c16;
  --green-line: rgba(255,255,255,0.08);
  --gold: #b8902a;
  --gold-bright: #d4a838;
  --gold-soft: rgba(184,144,42,0.12);
  --cream: #f8f7f4;
  --cream-2: #f1ede4;
  --ink: #0a0a0a;
  --text: #2a2a2a;
  --muted: #6b6b6b;
  --line-dark: rgba(1,50,40,0.08);
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
  opacity: 0;
  animation: pageFadeIn 0.8s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
a { color: inherit; }

/* ═══════════════════ NAVIGATION ═══════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245,242,234,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(1,28,22,0.08);
  will-change: background, border-color;
  display: flex; align-items: center;
  padding: 0 48px;
  z-index: 100;
  transition: background .3s, border-color .3s;
}
.nav.solid { 
  background: rgba(245,242,234,0.98);
  box-shadow: 0 10px 30px -10px rgba(1, 28, 22, 0.12);
}
.nav.nav--light.solid {
  background: rgba(1,28,22,0.98);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

/* default nav link colour for light (cream) nav over dark sections */
.nav .nav-links a { color: rgba(1,28,22,0.85); }
.nav .nav-links a:hover,
.nav .nav-links a.active { color: var(--green); }
.nav .nav-links a.active::after { background: var(--gold); }
.nav .btn-primary { background: var(--green); color: #fff; }

/* nav over light/cream sections → go dark green */
.nav.nav--light {
  background: rgba(1,28,22,0.97);
  border-bottom-color: var(--green-line);
}
.nav.nav--light .nav-links a { color: rgba(255,255,255,0.75); }
.nav.nav--light .nav-links a:hover,
.nav.nav--light .nav-links a.active { color: #fff; }
.nav.nav--light .nav-links a.active::after { background: var(--gold); }
.nav.nav--light .btn-primary { background: var(--gold); color: var(--green); }
.nav-inner {
  width: 100%; max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.logo-text {
  font-weight: 600; font-size: 16px;
  letter-spacing: 0.16em; color: #fff;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  font-size: 16px; font-weight: 400;
  transition: all 0.3s ease;
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: inherit; opacity: 0.85; }
.nav-links a.active { color: inherit; }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -28px; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.cta-btn {
  background: var(--gold);
  color: var(--green-deep);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.cta-btn:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(184,144,42,0.3); }

.mobile-toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: rgba(1,28,22,0.06);
  border: 1px solid rgba(1,28,22,0.14);
  color: var(--green-deep);
  border-radius: 10px;
  cursor: pointer;
  align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-toggle:hover { background: rgba(1,28,22,0.1); }
.mobile-toggle:active { transform: scale(0.94); }
.mobile-toggle svg { width: 22px; height: 22px; transition: opacity .2s, transform .3s ease; }
.nav.nav--light .mobile-toggle {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.nav.nav--light .mobile-toggle:hover { background: rgba(255,255,255,0.16); }
.mobile-toggle.is-open {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}
.mobile-toggle.is-open svg { opacity: 0; transform: rotate(90deg) scale(0.6); }
.mobile-toggle.is-open::before,
.mobile-toggle.is-open::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  margin: -1px 0 0 -9px;
}
.mobile-toggle.is-open::before { transform: rotate(45deg); }
.mobile-toggle.is-open::after { transform: rotate(-45deg); }

/* ═══════════════════ COMMON ELEMENTS ═══════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(1,50,40,0.07);
  border: 1px solid rgba(1,50,40,0.15);
  border-radius: 999px;
  color: var(--green-deep);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow.dark {
  background: rgba(1,50,40,0.07);
  border-color: rgba(1,50,40,0.15);
  color: var(--green-deep);
  font-size: 12.5px;
  padding: 10px 22px;
}
.eyebrow.outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  transition: all .25s;
  cursor: default;
  font-size: 12.5px;
  padding: 10px 22px;
}
.eyebrow.outline:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: currentColor; border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--green-deep);
  margin-top: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--green-deep);
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-sub {
  margin: 18px auto 0;
  max-width: 600px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ═══════════════════ HERO (PAGE-INNER) ═══════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.55;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 50%; right: -15%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(184,144,42,0.18) 0%, rgba(184,144,42,0.05) 35%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateY(-50%) scale(1.08); }
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-inner {
  width: 100%; max-width: 1440px;
  margin: 0 auto;
  padding: 60px 48px 80px;
  text-align: center;
  position: relative; z-index: 2;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-top: 32px;
  color: #fff;
  animation: fadeUp 2s ease-out .1s both;
  position: relative;
  overflow: hidden;
}
/* Left-to-right warm golden light sweep over heading */
.hero h1::before {
  content: '';
  position: absolute;
  top: -15%; bottom: -15%;
  left: -55%;
  width: 35%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,248,200,0.06) 30%,
    rgba(255,248,200,0.20) 50%,
    rgba(255,248,200,0.06) 70%,
    transparent 100%
  );
  transform: skewX(-8deg);
  animation: heroShimmer 5.5s ease-in-out 3.2s infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroShimmer {
  0%   { left: -55%; }
  38%  { left: 115%; }
  100% { left: 115%; }
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  position: relative;
  display: inline-block;
  animation: counselGlow 5.5s ease-in-out 3.8s infinite;
}
@keyframes counselGlow {
  0%, 100% { text-shadow: none; color: var(--gold-bright); }
  50%       { text-shadow: 0 0 24px rgba(212,168,56,0.55), 0 0 48px rgba(212,168,56,0.25); color: #e8c060; }
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,144,42,0.5) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
}
.hero h1 em.line-ready::after {
  animation: lineDraw 1.4s ease-out 0.2s forwards;
}
@keyframes lineDraw { to { transform: scaleX(1); } }

/* ── Page transition top bar */
#pg-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  z-index: 99998;
  pointer-events: none;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
#pg-bar.run   { width: 88%; }
#pg-bar.done  { width: 100%; opacity: 0; }

/* ── Within-site page wipe (non-home transitions ~1.1s) */
#page-wipe {
  position: fixed;
  inset: 0;
  background: #011c16;
  z-index: 99990;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
}
#page-wipe.wipe-out {
  transform: translateX(101%);
  transition: transform 0.11s cubic-bezier(0.76, 0, 0.24, 1);
}
#page-wipe-exit {
  position: fixed;
  inset: 0;
  background: #011c16;
  z-index: 99990;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-101%);
  transition: transform 0.08s cubic-bezier(0.76, 0, 0.24, 1);
}
#page-wipe-exit.active { transform: translateX(0); }
/* Loader shape centred in the wipe panel */
#page-wipe .wipe-loader,
#page-wipe-exit .wipe-loader {
  width: 80px; height: 40px;
  display: flex;
}
#page-wipe .wipe-loader::before,
#page-wipe .wipe-loader::after,
#page-wipe-exit .wipe-loader::before,
#page-wipe-exit .wipe-loader::after {
  content: '';
  flex: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: rgba(255,255,255,0.9);
  animation: plL1 1s infinite linear alternate, plL2 2s infinite linear -0.5s;
}
#page-wipe .wipe-loader::after,
#page-wipe-exit .wipe-loader::after { --s: -1,-1; }

.hero-sub {
  margin: 28px auto 0;
  max-width: 640px;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  animation: fadeUp 2s ease-out .25s both;
}
.hero-actions {
  margin-top: 36px;
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 2s ease-out .35s both;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  padding: 14px 28px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(184,144,42,0.35); }
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.05); transform: translateY(-3px); }

/* ═══════════════════ STATS ═══════════════════ */
.hero-stats {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--green-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 2s ease-out .4s both;
}
.stat { position: relative; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--green-line);
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 44px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-num .plus { font-size: 0.55em; color: #ffffff; margin-left: 2px; }
.stat-label {
  margin-top: 10px;
  color: rgba(255,255,255,0.5);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s ease-out .8s both;
}
.scroll-cue .bar {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: relative;
}
.scroll-cue .bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 8px;
  background: var(--gold-bright);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(24px); opacity: 0; }
}

/* ═══════════════════ PAGE HERO (smaller, inner pages) ═══════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 32px) 48px 44px;
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero #hero-canvas { opacity: 0.4; }
.page-hero-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}
.page-hero-inner .eyebrow { animation: fadeUp 2s ease-out .05s both; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-top: 24px;
  color: #fff;
  animation: fadeUp 2s ease-out .15s both;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.page-hero p {
  margin: 22px auto 0;
  max-width: 640px;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  font-weight: 300;
  animation: fadeUp 2s ease-out .3s both;
}
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.breadcrumb a { text-decoration: none; color: inherit; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { margin: 0 10px; color: var(--gold); }

/* ═══════════════════ SECTIONS ═══════════════════ */
section.bg-cream { background: var(--cream); padding: 90px 48px; position: relative; }
section.bg-cream-2 { background: var(--cream-2); padding: 90px 48px; position: relative; }
section.bg-green { background: var(--green-deep); color: #fff; padding: 90px 48px; position: relative; overflow: hidden; }
.section-inner { max-width: 1440px; margin: 0 auto; position: relative; z-index: 2; }
.section-inner.narrow { max-width: 1100px; }

.bg-cream::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(184,144,42,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(1,50,40,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.bg-green::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(184,144,42,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* ═══════════════════ CARDS ═══════════════════ */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cap-grid.two-col { grid-template-columns: repeat(2, 1fr); gap: 28px; }
.cap-card {
  background: #fff;
  padding: 30px 26px;
  border-radius: 4px;
  border: 1px solid var(--line-dark);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.cap-card[data-num]::after {
  content: attr(data-num);
  position: absolute;
  top: 22px; right: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(1,50,40,0.15);
  border-color: rgba(184,144,42,0.3);
}
.cap-card:hover::before { transform: scaleX(1); }
.cap-card:hover .cap-icon {
  background: var(--gold);
  color: var(--green-deep);
  transform: rotate(-6deg) scale(1.05);
}
.cap-icon {
  width: 48px; height: 48px;
  background: var(--green-deep);
  color: #fff;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}
.cap-icon svg { width: 22px; height: 22px; }
.cap-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.cap-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
}
.cap-list {
  margin-top: 14px;
  list-style: none;
  padding: 0;
}
.cap-list li {
  font-size: 13px;
  color: #555;
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.5;
  border-top: 1px dashed var(--line-dark);
}
.cap-list li:first-child { border-top: 1px solid var(--line-dark); margin-top: 14px; padding-top: 10px; }
.cap-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--green-deep);
}
.cap-list li:first-child::before { top: 18px; }

/* ═══════════════════ STEPS ═══════════════════ */
.steps {
  margin-top: 48px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 16.66%; right: 16.66%;
  height: 1px;
  background: var(--line-dark);
  opacity: 1;
}
.step {
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-circle {
  width: 56px; height: 56px;
  background: var(--green-deep);
  border: 2px solid var(--green-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 6px var(--cream-2), 0 8px 20px -4px rgba(1,50,40,0.2);
  transition: transform .3s;
}
.bg-cream .step-circle { box-shadow: 0 0 0 6px var(--cream), 0 8px 20px -4px rgba(1,50,40,0.2); }
.step:hover .step-circle { transform: scale(1.08); }
.step-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  max-width: 260px;
  margin: 0 auto;
}

/* ═══════════════════ CTA BAND ═══════════════════ */
.cta-band {
  background: var(--green-deep);
  color: #fff;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(184,144,42,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: 900px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}
.cta-headline {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta-headline em { font-style: italic; color: var(--gold-bright); }
.cta-sub {
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
}
.cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px;
  background: var(--gold);
  color: var(--green-deep);
  padding: 16px 32px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
}
.cta-big:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,144,42,0.35); }
.cta-big .arrow { transition: transform .25s; }
.cta-big:hover .arrow { transform: translateX(4px); }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--green-deep);
  border-top: 1px solid var(--green-line);
  padding: 48px 48px 28px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.footer-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--green-line);
}
.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}
.footer-col a:hover { color: #fff; }
.footer-brand-block {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.footer-brand-block .logo { margin-bottom: 14px; }
.footer-meta {
  max-width: 1440px; margin: 24px auto 0;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 12px;
}

/* ═══════════════════ SPECIFIC SECTIONS ═══════════════════ */
/* Two-column copy block */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.text-block h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--green-deep);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.text-block h3 em { font-style: italic; color: var(--green-deep); }
.text-block p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}

/* Trust statement */
.trust-quote {
  max-width: 900px; margin: 0 auto;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  position: relative;
}
.trust-quote::before {
  content: '"';
  display: block;
  font-size: 80px;
  color: var(--green-deep);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.3;
}
.trust-attr {
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

/* Service detail blocks (Services page) */
.service-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--line-dark);
  align-items: start;
}
.service-row:last-child { border-bottom: 1px solid var(--line-dark); }
.service-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.service-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 36px;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.service-icon-large {
  margin-top: 24px;
  width: 64px; height: 64px;
  background: var(--green-deep);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon-large svg { width: 30px; height: 30px; }
.service-body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 22px;
  max-width: 640px;
}
.service-body ul {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.service-body ul li {
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
  color: #444;
  position: relative;
}
.service-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 19px;
  width: 10px; height: 1px;
  background: var(--green-deep);
}

/* Engagement model cards (How it Works) */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.engagement-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 6px;
  border: 1px solid var(--line-dark);
  transition: all 0.3s ease;
  position: relative;
}
.engagement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -12px rgba(1,50,40,0.15);
  border-color: rgba(184,144,42,0.35);
}
.engagement-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(1,50,40,0.07);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.engagement-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.engagement-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}
.engagement-card .features {
  list-style: none; padding: 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
}
.engagement-card .features li {
  font-size: 13px;
  color: #555;
  padding: 5px 0 5px 18px;
  position: relative;
}
.engagement-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 4px;
  color: var(--green-deep);
  font-size: 12px;
}

/* Insights / blog grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(1,50,40,0.15);
  border-color: rgba(184,144,42,0.35);
}
.insight-thumb {
  height: 180px;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.insight-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(184,144,42,0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(184,144,42,0.15) 0%, transparent 50%);
}
.insight-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.insight-thumb .ico {
  position: absolute;
  bottom: 18px; left: 20px;
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-deep);
}
.insight-thumb .ico svg { width: 18px; height: 18px; }
.insight-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.insight-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.insight-meta .dot { color: var(--muted); margin: 0 8px; }
.insight-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.insight-body p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.55;
  margin-bottom: 16px;
}
.insight-link {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.insight-link:hover { color: #000; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: stretch;
}
.contact-info-card {
  background: var(--green-deep);
  color: #fff;
  padding: 40px 36px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,144,42,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.contact-info-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 12px;
  position: relative;
}
.contact-info-card .desc {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 32px;
  position: relative;
}
.contact-info-list { list-style: none; padding: 0; position: relative; }
.contact-info-list li {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--green-line);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .ico {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-list .ico svg { width: 16px; height: 16px; color: #fff; }
.contact-info-list .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.contact-info-list .value {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.contact-info-list .value:hover { color: rgba(255,255,255,0.75); }
.contact-info-list { flex: 1; }

.contact-webmail-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.contact-webmail-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.contact-webmail-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  line-height: 1.55;
}
.contact-webmail-btn {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.contact-webmail-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

.contact-form {
  background: #fff;
  padding: 40px 36px;
  border-radius: 6px;
  border: 1px solid var(--line-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  margin-bottom: 18px;
  display: flex; flex-direction: column;
}
.form-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  transition: all .2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-deep);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1,50,40,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: var(--green-deep);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: #000; color: #fff; transform: translateY(-1px); }

/* Expertise grid (About page) */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.expertise-item {
  background: #fff;
  padding: 28px 26px;
  transition: all 0.3s ease;
}
.expertise-item:hover { background: var(--cream); }
.expertise-item .ico {
  width: 36px; height: 36px;
  background: rgba(1,50,40,0.07);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--green-deep);
}
.expertise-item .ico svg { width: 18px; height: 18px; }
.expertise-item h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--green-deep);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.expertise-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .nav { padding: 0 24px; }
  .hero-inner { padding: 50px 24px 80px; }
  section.bg-cream, section.bg-cream-2, section.bg-green, .cta-band, .footer { padding-left: 24px; padding-right: 24px; }
  .page-hero { padding-left: 24px; padding-right: 24px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 500px; }
  .stat:nth-child(2)::after { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-stack { grid-template-columns: 1fr; gap: 30px; }
  .engagement-grid, .insights-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 30px; padding: 50px 0; }
  .service-body ul { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { padding: 0 16px; }
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }

  /* Backdrop overlay behind mobile menu */
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 99;
    animation: backdropIn .3s ease forwards;
  }
  body.menu-open { overflow: hidden; }

  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: linear-gradient(180deg, var(--green-deep) 0%, #02110d 100%);
    flex-direction: column;
    padding: 20px 22px 32px;
    gap: 0;
    border-top: 1px solid var(--gold);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    z-index: 101;
    animation: navSlideDown .35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .nav-links.mobile-open li { width: 100%; }
  .nav .nav-links.mobile-open a,
  .nav.nav--light .nav-links.mobile-open a {
    display: block;
    color: rgba(255,255,255,0.85);
    padding: 16px 6px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color .2s, padding .2s;
  }
  .nav .nav-links.mobile-open a:hover,
  .nav.nav--light .nav-links.mobile-open a:hover {
    color: var(--gold-bright);
    padding-left: 12px;
  }
  .nav .nav-links.mobile-open a.active,
  .nav.nav--light .nav-links.mobile-open a.active { color: var(--gold-bright); }
  .nav .nav-links.mobile-open a.active::after,
  .nav.nav--light .nav-links.mobile-open a.active::after {
    content: '';
    display: block;
    position: static;
    width: 24px; height: 2px;
    background: var(--gold);
    margin-top: 8px;
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes backdropIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* Logo sizing on mobile */
  .nav .logo img { height: 48px !important; }
  .footer .logo img { height: 52px !important; }

  /* Hero & typography */
  .hero-inner { padding: 32px 16px 60px; }
  .hero h1 { font-size: clamp(36px, 9vw, 56px); margin-top: 22px; line-height: 1.02; }
  .hero-sub { font-size: 15.5px; margin-top: 20px; }
  .hero-actions { margin-top: 28px; gap: 10px; }
  .btn-primary, .btn-secondary { padding: 13px 22px; font-size: 13.5px; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; padding-top: 28px; max-width: 100%; }
  .stat::after { display: none !important; }
  .stat:not(:last-child) { padding-bottom: 20px; border-bottom: 1px solid var(--green-line); }
  .stat-num { font-size: 36px; }

  /* Sections */
  section.bg-cream, section.bg-cream-2, section.bg-green {
    padding: 64px 18px;
  }
  .page-hero {
    padding: calc(var(--nav-h) + 24px) 18px 40px;
  }
  .page-hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .page-hero p { font-size: 15px; margin-top: 18px; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: clamp(28px, 7vw, 38px); }
  .section-sub { font-size: 15px; }

  /* Grids → single column */
  .cap-grid, .cap-grid.two-col { grid-template-columns: 1fr; gap: 14px; }
  .cap-card { padding: 24px 22px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .engagement-grid, .insights-grid { grid-template-columns: 1fr; gap: 16px; }
  .engagement-card { padding: 26px 22px; }
  .expertise-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 40px 18px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Services */
  .service-row { gap: 24px; padding: 44px 0; }
  .service-title { font-size: 26px; }
  .service-icon-large { width: 52px; height: 52px; margin-top: 18px; }
  .service-icon-large svg { width: 24px; height: 24px; }

  /* Contact */
  .contact-form, .contact-info-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* CTA band */
  .cta-band { padding: 60px 18px 50px; }
  .cta-headline { font-size: clamp(26px, 6.5vw, 34px); }
  .cta-big { padding: 14px 24px; font-size: 13.5px; }

  .scroll-cue { display: none; }

  /* Better tap feedback */
  a, button { -webkit-tap-highlight-color: rgba(184,144,42,0.18); }
}

@media (max-width: 420px) {
  .nav { padding: 0 12px; }
  .nav .logo img { height: 42px !important; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 15px; }
  .stat-num { font-size: 32px; }
  .section-title { font-size: 26px; }
  .btn-primary, .btn-secondary, .cta-big { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
