/* ==========================================================================
   SAMRIDHHI ODISHA MULTIVENTURE PVT. LTD.
   Public website — design system
   Palette: deep navy + burnished gold, drawn from the corporate identity.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* brand */
  --navy-950: #04102E;
  --navy-900: #071A44;
  --navy-800: #0B2560;
  --navy-700: #10307A;
  --navy-600: #1A45A0;
  --navy-100: #E8EEFB;
  --navy-50:  #F4F7FE;

  --gold-700: #9A6F12;
  --gold-600: #B98A19;
  --gold-500: #D4A02A;
  --gold-400: #E8B93C;
  --gold-300: #F2D07A;
  --gold-100: #FBF1D8;

  --green-700: #14603A;
  --green-600: #1F7A45;
  --green-500: #279455;
  --green-100: #E3F5EA;

  /* neutrals */
  --ink:      #0E1526;
  --ink-soft: #354056;
  --muted:    #6B7691;
  --line:     #E3E7F0;
  --line-soft:#EFF2F8;
  --paper:    #FFFFFF;
  --cream:    #FCFAF5;
  --shell:    #F6F8FC;

  /* semantic */
  --ok:   #16794C;
  --warn: #B4690E;
  --err:  #B42318;
  --info: var(--navy-600);

  /* typography — Segoe UI throughout, with sensible per-platform fallbacks.
     Segoe UI is a Windows system font; on macOS/Linux/Android the stack falls
     through to the closest native UI face so the site never loads a webfont. */
  --font-ui: "Segoe UI", "Segoe UI Variable Text", -apple-system, BlinkMacSystemFont,
             system-ui, "Helvetica Neue", Roboto, "Noto Sans", Arial, sans-serif;
  --font-display: var(--font-ui);
  --font-body: var(--font-ui);
  --font-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", SFMono-Regular, Menlo, Consolas, monospace;

  --step--1: clamp(.8125rem, .78rem + .16vw, .875rem);
  --step-0:  clamp(.9375rem, .9rem + .2vw, 1.0625rem);
  --step-1:  clamp(1.0625rem, 1rem + .3vw, 1.25rem);
  --step-2:  clamp(1.25rem, 1.13rem + .6vw, 1.625rem);
  --step-3:  clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
  --step-4:  clamp(1.875rem, 1.5rem + 1.8vw, 3rem);
  --step-5:  clamp(2rem, 1.55rem + 2.2vw, 3.35rem);
  --step-6:  clamp(2.35rem, 1.7rem + 3.1vw, 4rem);

  /* space */
  --gap: clamp(.9rem, .78rem + .7vw, 1.4rem);
  --section-y: clamp(2.75rem, 2.2rem + 2.6vw, 5rem);
  --shell-x: clamp(1.15rem, .6rem + 2.4vw, 3rem);
  --max: 1240px;
  --max-wide: 1440px;

  /* form */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(7,26,68,.06), 0 1px 3px rgba(7,26,68,.05);
  --sh-2: 0 4px 12px rgba(7,26,68,.07), 0 2px 4px rgba(7,26,68,.04);
  --sh-3: 0 14px 34px rgba(7,26,68,.10), 0 4px 10px rgba(7,26,68,.05);
  --sh-4: 0 28px 70px rgba(7,26,68,.16), 0 8px 20px rgba(7,26,68,.07);
  --sh-gold: 0 14px 34px rgba(184,138,25,.24);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -.021em;
}

::selection { background: var(--gold-300); color: var(--navy-950); }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.shell { width: min(100% - var(--shell-x) * 2, var(--max)); margin-inline: auto; }
.shell-wide { width: min(100% - var(--shell-x) * 2, var(--max-wide)); margin-inline: auto; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2rem, 1.6rem + 1.6vw, 3.25rem); }
.section--cream { background: var(--cream); }
.section--shell { background: var(--shell); }
.section--navy { background: var(--navy-900); color: rgba(255,255,255,.78); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.grid { display: grid; gap: var(--gap); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .g-4 { grid-template-columns: repeat(2, 1fr); } .g-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px)  { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.stack > * + * { margin-top: var(--gap); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* --------------------------------------------------------------------------
   4. TYPE HELPERS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
}
.eyebrow--center::after {
  content: ""; width: 28px; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--gold-400); }

.h-display { font-size: var(--step-5); }
.h1 { font-size: var(--step-4); }
.h2 { font-size: var(--step-3); }
.h3 { font-size: var(--step-2); }
.h4 { font-size: var(--step-1); }

.lead { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.6; }
.small { font-size: var(--step--1); }
.muted { color: var(--muted); }
.gold { color: var(--gold-600); }

.gold-text {
  background: linear-gradient(100deg, var(--gold-600) 0%, var(--gold-400) 42%, var(--gold-300) 62%, var(--gold-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* hand-drawn style underline beneath the accent phrase in the hero */
.gold-underline { position: relative; display: inline-block; }
.gold-underline svg {
  position: absolute; left: 0; right: 0; bottom: -.24em;
  width: 100%; height: .3em; overflow: visible;
}
.gold-underline path {
  fill: none; stroke: url(#heroUnderline); stroke-width: 7; stroke-linecap: round;
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.1s var(--ease-out) .5s;
}
html.js-reveal .hero h1.is-in .gold-underline path,
html:not(.js-reveal) .gold-underline path { stroke-dashoffset: 0; }

.serif-quote { font-family: var(--font-display); font-style: italic; font-weight: 600; }

.section-head { max-width: 720px; }
.section-head .eyebrow { margin-bottom: .7rem; }
.section-head h2 { font-size: var(--step-3); margin-bottom: .6rem; }
.section-head p { color: var(--muted); font-size: var(--step-1); }
.section-head--center { margin-inline: auto; text-align: center; }

.rule-gold {
  width: 68px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95em 1.7em;
  font-family: var(--font-body);
  font-size: var(--step--1); font-weight: 700;
  letter-spacing: .01em;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-3); }
.btn:active { transform: translateY(0); }

.btn--gold {
  --btn-bg: linear-gradient(120deg, var(--gold-600), var(--gold-400) 55%, var(--gold-500));
  --btn-fg: var(--navy-950);
}
.btn--gold:hover { box-shadow: var(--sh-gold); }
.btn--gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.55) 50%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}
.btn--gold:hover::after { animation: shimmer .85s var(--ease-out); }
@keyframes shimmer { to { transform: translateX(120%); } }

.btn--navy { --btn-bg: var(--navy-800); --btn-fg: #fff; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--navy-800); --btn-bd: var(--line);
}
.btn--ghost:hover { --btn-bd: var(--navy-800); background: var(--navy-50); }

.btn--ghost-light {
  --btn-bg: rgba(255,255,255,.06); --btn-fg: #fff; --btn-bd: rgba(255,255,255,.32);
  backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { --btn-bg: rgba(255,255,255,.14); --btn-bd: rgba(255,255,255,.6); }

.btn--sm { padding: .7em 1.25em; font-size: .8125rem; }
.btn--lg { padding: 1.05em 2.1em; font-size: var(--step-0); }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .55; pointer-events: none; }

.btn-arrow { transition: transform .35s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: var(--step--1); color: var(--navy-700);
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow:hover { gap: .85rem; color: var(--gold-600); }

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar__list { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__list a { display: inline-flex; align-items: center; gap: .45rem; transition: color .25s; }
.topbar__list a:hover { color: var(--gold-400); }
.topbar__list svg { width: 14px; height: 14px; opacity: .8; }
.topbar__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .18rem .6rem; border-radius: var(--r-pill);
  background: rgba(212,160,42,.14); color: var(--gold-300);
  font-weight: 700; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
}
@media (max-width: 860px) { .topbar__hide-sm { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .35s var(--ease), background-color .35s;
}
.site-header.is-stuck { box-shadow: 0 8px 30px rgba(7,26,68,.09); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 78px;
}

.brand { display: flex; align-items: center; gap: .8rem; flex: none; }
.brand img {
  width: clamp(206px, 18vw, 282px); height: auto;
  transition: width .35s var(--ease);
}
.site-header.is-stuck .brand img { width: clamp(188px, 16vw, 246px); }
@media (max-width: 1060px) { .brand img { width: 190px; } }
@media (max-width: 560px)  { .brand img { width: 156px; } }
@media (max-width: 380px)  { .brand img { width: 136px; } }

.nav__menu { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  position: relative;
  white-space: nowrap;
  padding: .6rem .95rem;
  font-size: .9rem; font-weight: 600;
  color: var(--ink); border-radius: var(--r-sm);
  transition: color .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .3rem;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--navy-800); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: .6rem; flex: none; }

/* the drawer CTA only exists for the mobile menu */
.nav__menu > .btn { display: none; }
@media (max-width: 1060px) { .nav__menu > .btn { display: inline-flex; } }

.nav__toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; cursor: pointer;
}
.nav__toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--navy-800); position: relative;
  transition: background .2s;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  border-radius: 2px; background: var(--navy-800);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1060px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 88vw);
    flex-direction: column; align-items: stretch; gap: .25rem;
    padding: 6rem 1.5rem 2rem;
    background: #fff; box-shadow: -20px 0 60px rgba(7,26,68,.18);
    transform: translateX(100%); transition: transform .45s var(--ease-out);
    overflow-y: auto; z-index: 95;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link { padding: .9rem 1rem; font-size: 1rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav__link::after { display: none; }
  .nav__actions .btn--nav-cta { display: none; }
  .nav__menu .btn { margin-top: 1.25rem; }
}
.nav-scrim {
  position: fixed; inset: 0; z-index: 94;
  background: rgba(7,26,68,.45); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(440px, 66vh, 640px);
  display: grid; align-items: center;
  background: var(--navy-950);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 54%;
  filter: saturate(1.02) contrast(1.03) brightness(.88);
}
@keyframes heroPan { from { transform: scale(1.06) translate3d(0,0,0); } to { transform: scale(1.14) translate3d(-1.5%,-1%,0); } }

.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(3,12,36,.9) 0%, rgba(4,16,46,.82) 34%, rgba(6,22,58,.52) 58%, rgba(6,22,58,.24) 80%, rgba(3,12,36,.38) 100%),
    linear-gradient(180deg, rgba(3,12,36,.42) 0%, transparent 24%, transparent 60%, rgba(3,12,36,.62) 100%),
    radial-gradient(120% 90% at 12% 108%, rgba(212,160,42,.26) 0%, transparent 56%);
}
.hero__glow {
  position: absolute; z-index: -1; pointer-events: none;
  width: 640px; height: 640px; right: -180px; top: -220px;
  background: radial-gradient(circle, rgba(212,160,42,.22) 0%, transparent 62%);
  filter: blur(10px);
}

.hero__inner {
  padding-block: clamp(2.6rem, 4.5vh, 3.5rem);
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center; gap: clamp(1.75rem, 1rem + 3vw, 4rem);
}
.hero__copy { max-width: 40rem; }
.hero__aside { position: relative; max-width: 344px; margin-left: auto; width: 100%; }

/* Between ~1080 and ~1400 the content shell reaches close enough to the viewport
   edge that the floating WhatsApp button overlaps the card — and around 1100-1250
   it lands squarely on the card's CTA. Inset the card so the two never meet.
   Past ~1400 the shell hits its 1240px cap and there is clearance already. */
@media (min-width: 1081px) and (max-width: 1400px) {
  .hero__aside { margin-right: 74px; max-width: 322px; }
}
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { max-width: 690px; }
}

/* ---- decorative layers ---------------------------------------------------
   A gold arc echoing the swoosh in the logo mark, plus a faint dot grid.
   Both are pointer-events:none and sit behind the copy. */
.hero__arc {
  position: absolute; z-index: -1; pointer-events: none;
  right: -6%; top: 50%; translate: 0 -50%;
  width: min(780px, 68vw); aspect-ratio: 1; opacity: .5;
}
.hero__arc svg { width: 100%; height: 100%; display: block; }
.hero__arc circle { fill: none; stroke-width: 1.2; }
.hero__arc .a1 { stroke: url(#heroArcGold); }
.hero__arc .a2 { stroke: rgba(255,255,255,.16); stroke-dasharray: 3 9; }
@media (max-width: 1080px) { .hero__arc { right: -28%; opacity: .32; } }

.hero__dots {
  position: absolute; z-index: -1; pointer-events: none; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(80% 60% at 78% 45%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(80% 60% at 78% 45%, #000 0%, transparent 72%);
  opacity: .55;
}

/* ---- the hero project card -----------------------------------------------
   Sits over a photograph, so the body is near-opaque: legibility beats
   translucency. Every badge lives INSIDE the card — nothing floats outside it,
   which used to collide with the sticky header at short viewports. */
.hero-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, #0C1E4A 0%, #071634 62%, #050F26 100%);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,42,.55);
  box-shadow: 0 32px 74px rgba(0,0,0,.55), 0 0 0 1px rgba(212,160,42,.25);
}

.hero-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.hero-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.hero-card:hover .hero-card__media img { transform: scale(1.06); }
.hero-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,15,38,.34) 0%, transparent 34%, rgba(5,15,38,.9) 100%);
}

/* both badges sit on the image, balanced left and right */
.hero-card__tags {
  position: absolute; z-index: 2; top: .6rem; left: .6rem; right: .6rem;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.hero-card__pill {
  padding: .26rem .62rem; border-radius: var(--r-pill);
  font-size: .6rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  background: linear-gradient(120deg, #C0341F, #E4572E); color: #fff; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.hero-card__pill--open { background: linear-gradient(120deg, var(--green-700), var(--green-500)); }
.hero-chip {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .26rem .6rem; border-radius: var(--r-pill);
  background: rgba(5,15,38,.72);
  border: 1px solid rgba(242,208,122,.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--gold-300); font-size: .58rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; white-space: nowrap;
}
.hero-chip svg { width: 11px; height: 11px; }

.hero-card__loc {
  position: absolute; left: .8rem; bottom: .55rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .3rem;
  color: #fff; font-size: .74rem; font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.hero-card__loc svg { width: 13px; height: 13px; color: var(--gold-300); }

.hero-card__body { padding: .95rem 1.05rem 1.05rem; }
.hero-card__eyebrow {
  font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-400); display: block; margin-bottom: .28rem;
}
.hero-card__name {
  color: #fff; font-size: 1rem; font-weight: 700; line-height: 1.28;
  letter-spacing: -.012em; margin-bottom: .8rem;
}
.hero-card__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: .9rem;
  padding: .65rem .8rem; margin-bottom: .75rem;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm);
}
.hero-card__row span {
  display: block; font-size: .56rem; font-weight: 800; letter-spacing: .11em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: .1rem;
}
.hero-card__row b {
  display: block; color: #fff; font-size: 1.05rem; font-weight: 700;
  font-variant-numeric: tabular-nums; letter-spacing: -.015em; line-height: 1.1;
}
.hero-card__row b small { font-size: .55em; font-weight: 600; color: rgba(255,255,255,.55); margin-left: .1em; }

.hero-card__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .64rem; color: rgba(255,255,255,.6); font-weight: 700;
  letter-spacing: .04em; margin-bottom: .3rem;
}
.hero-card__meta b { color: var(--gold-300); font-weight: 800; }
.hero-card__bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,.12); overflow: hidden; }
.hero-card__bar i { display: block; height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--gold-600), var(--gold-300)); }

.hero-card__cta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .9rem; padding-top: .8rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #fff; font-size: .82rem; font-weight: 700;
}
.hero-card__cta svg { color: var(--gold-400); transition: transform .3s var(--ease); }
.hero-card:hover .hero-card__cta svg { transform: translateX(4px); }

/* status + location line, shown only in the compact strip layout below */
.hero-card__sub {
  display: none;
  font-size: .69rem; color: rgba(255,255,255,.64); font-weight: 600; line-height: 1.45;
}
.hero-card__sub b { color: var(--gold-300); font-weight: 700; }

/* on narrow screens the card becomes a slim horizontal strip */
@media (max-width: 1080px) {
  .hero__aside { max-width: none; margin-left: 0; padding-top: .7rem; }
  .hero-card { display: grid; grid-template-columns: 108px 1fr; align-items: stretch; }
  .hero-card__media { aspect-ratio: auto; height: 100%; }
  .hero-card__media::after { background: linear-gradient(90deg, transparent 55%, rgba(4,16,46,.5) 100%); }
  /* the overlay pill and location cannot fit a thumbnail — they move into the body */
  .hero-card__tags, .hero-card__loc { display: none; }
  .hero-card__row, .hero-card__bar, .hero-card__meta { display: none; }
  .hero-card__body { padding: .75rem .9rem; display: flex; flex-direction: column; justify-content: center; }
  .hero-card__eyebrow { margin-bottom: .2rem; }
  .hero-card__name { font-size: .92rem; margin-bottom: .3rem; }
  .hero-card__sub { display: block; }
  .hero-card__cta { margin-top: .5rem; padding-top: .5rem; font-size: .74rem; }
}
@media (max-width: 460px) {
  .hero-card { grid-template-columns: 88px 1fr; }
  .hero-card__name { font-size: .86rem; }
}


.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .45rem 1rem .45rem .5rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: #fff; font-size: .76rem; font-weight: 600; letter-spacing: .02em;
  margin-bottom: 1.05rem;
}
.hero__badge b {
  display: inline-flex; align-items: center;
  padding: .2rem .6rem; border-radius: var(--r-pill);
  background: linear-gradient(120deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950); font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.1rem, 1.5rem + 2.5vw, 3.3rem);
  color: #fff; line-height: 1.06;
  letter-spacing: -.03em;
  text-wrap: balance;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 30px rgba(3,12,36,.55);
}
.hero p.lead {
  color: rgba(255,255,255,.88); max-width: 54ch; font-size: var(--step-1);
  text-shadow: 0 1px 18px rgba(3,12,36,.6);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }

.hero__proof {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem; margin-top: 1.75rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__proof-item strong {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.2rem, .95rem + .8vw, 1.6rem); color: #fff; line-height: 1.1;
  letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.hero__proof-item > span {
  display: block; margin-top: .3rem;
  font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.58); font-weight: 700; line-height: 1.35;
}

.hero__scroll {
  position: absolute; bottom: 1rem; left: clamp(1.15rem, .6rem + 2.4vw, 3rem); transform: none;
  display: grid; place-items: center; gap: .5rem;
  color: rgba(255,255,255,.55); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
}
.hero__scroll i {
  display: block; width: 1px; height: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.5), transparent);
  animation: scrollCue 2.4s var(--ease) infinite;
}
@keyframes scrollCue { 0%,100% { transform: scaleY(.35); opacity: .3; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 1080px) { .hero__scroll { display: none; } }

/* page banner (inner pages) */
.page-banner {
  position: relative; background: var(--navy-900);
  padding-block: clamp(3.5rem, 3rem + 5vw, 7rem);
  overflow: hidden; isolation: isolate;
}
.page-banner__media { position: absolute; inset: 0; z-index: -2; }
.page-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(96deg, rgba(4,16,46,.95) 8%, rgba(7,26,68,.82) 52%, rgba(7,26,68,.55) 100%),
    radial-gradient(90% 120% at 100% 0%, rgba(212,160,42,.24), transparent 60%);
}
.page-banner h1 { color: #fff; font-size: var(--step-4); margin-bottom: .75rem; }
.page-banner p { color: rgba(255,255,255,.74); max-width: 60ch; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .8rem; margin-bottom: 1.1rem; color: rgba(255,255,255,.6); }
.crumbs a { color: var(--gold-300); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span[aria-hidden] { opacity: .5; }

/* --------------------------------------------------------------------------
   8. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.07);
}
.trust-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-strip__item {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.6rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-strip__item:last-child { border-right: 0; }
.trust-strip__item svg { width: 26px; height: 26px; flex: none; color: var(--gold-400); }
.trust-strip__item b { display: block; color: #fff; font-size: .9rem; font-weight: 700; }
.trust-strip__item span { display: block; color: rgba(255,255,255,.55); font-size: .76rem; }
@media (max-width: 900px) { .trust-strip__grid { grid-template-columns: repeat(2, 1fr); } .trust-strip__item:nth-child(2n) { border-right: 0; } .trust-strip__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); } }
@media (max-width: 520px) { .trust-strip__grid { grid-template-columns: 1fr; } .trust-strip__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); } }

/* --------------------------------------------------------------------------
   9. CARDS
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.15rem, 1rem + .8vw, 1.65rem);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--gold-300); }
.card h3 { font-size: var(--step-1); margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: var(--step--1); }

.card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 1.25rem;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  color: var(--gold-300);
  box-shadow: 0 10px 24px rgba(11,37,96,.24);
  transition: transform .45s var(--ease);
}
.card:hover .card__icon { transform: rotate(-6deg) scale(1.05); }
.card__icon svg { width: 26px; height: 26px; }
.card__icon--gold { background: linear-gradient(140deg, var(--gold-600), var(--gold-400)); color: var(--navy-950); box-shadow: 0 10px 24px rgba(184,138,25,.28); }
.card__icon--green { background: linear-gradient(140deg, var(--green-700), var(--green-500)); color: #fff; box-shadow: 0 10px 24px rgba(31,122,69,.24); }

.card__num {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
  color: var(--navy-50); line-height: 1; pointer-events: none;
}

/* vertical / business-line card */
.vcard {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.75rem;
  color: #fff;
  isolation: isolate;
}
.vcard img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.vcard::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(4,16,46,.14) 0%, rgba(4,16,46,.55) 48%, rgba(4,16,46,.93) 100%);
  transition: background .5s;
}
.vcard:hover img { transform: scale(1.08); }
.vcard:hover::after { background: linear-gradient(180deg, rgba(4,16,46,.24) 0%, rgba(7,26,68,.68) 42%, rgba(4,16,46,.96) 100%); }
.vcard h3 { color: #fff; font-size: var(--step-2); margin-bottom: .5rem; }
.vcard p { color: rgba(255,255,255,.76); font-size: var(--step--1); }
.vcard__tag {
  align-self: flex-start; margin-bottom: auto;
  padding: .35rem .8rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   10. PROJECT CARD
   -------------------------------------------------------------------------- */
.pcard {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--sh-4); border-color: transparent; }

.pcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-100); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.09); }
.pcard__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4,16,46,.68) 100%);
}

.pcard__pill {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  padding: .32rem .75rem; border-radius: var(--r-pill);
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.94); color: var(--navy-800);
  box-shadow: var(--sh-1);
}
.pcard__pill--hot   { background: linear-gradient(120deg, #C0341F, #E4572E); color: #fff; }
.pcard__pill--open  { background: linear-gradient(120deg, var(--green-700), var(--green-500)); color: #fff; }
.pcard__pill--soon  { background: linear-gradient(120deg, var(--navy-800), var(--navy-600)); color: #fff; }
.pcard__pill--sold  { background: #6B7691; color: #fff; }

.pcard__loc {
  position: absolute; left: 1.1rem; bottom: .9rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  color: #fff; font-size: .82rem; font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.pcard__loc svg { width: 15px; height: 15px; color: var(--gold-300); }

.pcard__body { padding: 1.1rem 1.2rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.pcard__body h3 { font-size: var(--step-1); margin-bottom: .45rem; }
.pcard__body h3 a { transition: color .25s; }
.pcard:hover .pcard__body h3 a { color: var(--gold-600); }
.pcard__desc { color: var(--muted); font-size: var(--step--1); margin-bottom: 1.1rem; }

.pcard__meta {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .1rem 1rem; padding: .9rem 0;
  border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line);
  margin-bottom: 1.1rem;
}
.pcard__meta div span { display: block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.pcard__meta div b { display: block; font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: var(--navy-900); font-variant-numeric: tabular-nums; }

.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }

.progress {
  height: 6px; border-radius: 3px; background: var(--line-soft); overflow: hidden;
}
.progress i {
  display: block; height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transition: width 1.2s var(--ease-out);
}
.progress--green i { background: linear-gradient(90deg, var(--green-700), var(--green-500)); }

/* --------------------------------------------------------------------------
   11. SPLIT / COLLAGE
   -------------------------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 5rem); align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

.collage { position: relative; margin-bottom: clamp(2rem, 4.5vw, 3.25rem); }
.collage__main {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-4); aspect-ratio: 4 / 3;
}
.collage__main img { width: 100%; height: 100%; object-fit: cover; }
.collage__sub {
  position: absolute; right: -8%; bottom: -12%;
  width: 46%; aspect-ratio: 1;
  border-radius: var(--r-lg); overflow: hidden;
  border: 8px solid #fff; box-shadow: var(--sh-4);
}
.collage__sub img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 940px) { .collage__sub { right: 0; bottom: -10%; width: 40%; } }

.floating-stat {
  position: absolute; left: -6%; bottom: 12%;
  background: #fff; border-radius: var(--r-lg);
  padding: 1.1rem 1.4rem; box-shadow: var(--sh-4);
  display: flex; align-items: center; gap: .9rem;
  border: 1px solid var(--line-soft);
}
.floating-stat__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--gold-600), var(--gold-400)); color: var(--navy-950);
}
.floating-stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--navy-900); line-height: 1; }
.floating-stat span { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
@media (max-width: 640px) { .floating-stat { left: 0; bottom: -8%; } }

.tick-list { display: grid; gap: .8rem; }
.tick-list li { display: flex; gap: .8rem; align-items: flex-start; font-size: var(--step-0); }
.tick-list svg { width: 21px; height: 21px; flex: none; margin-top: .2rem; color: var(--green-600); }
.section--navy .tick-list svg { color: var(--gold-400); }

/* --------------------------------------------------------------------------
   12. STATS
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stats__item { background: #fff; padding: clamp(1.15rem, .95rem + .9vw, 1.75rem) 1.15rem; text-align: center; }
.stats__num {
  font-family: var(--font-display); font-size: var(--step-4); font-weight: 700;
  color: var(--navy-900); line-height: 1; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums; display: block;
}
.stats__num em { font-style: normal; color: var(--gold-500); }
.stats__label { display: block; margin-top: .6rem; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   13. PROCESS TIMELINE
   -------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); position: relative; }
.process::before {
  content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process__step { position: relative; z-index: 1; text-align: center; }
.process__dot {
  width: 58px; height: 58px; margin: 0 auto 1rem;
  border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--line);
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--navy-800);
  font-variant-numeric: tabular-nums;
  transition: all .45s var(--ease);
  box-shadow: 0 0 0 8px #fff;
}
.process__step:hover .process__dot {
  background: linear-gradient(140deg, var(--gold-600), var(--gold-400));
  border-color: transparent; color: var(--navy-950);
  transform: translateY(-4px) scale(1.06); box-shadow: 0 0 0 8px #fff, var(--sh-gold);
}
.process__step h3 { font-size: var(--step-1); margin-bottom: .45rem; }
.process__step p { color: var(--muted); font-size: var(--step--1); }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } .process::before { display: none; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   14. TEAM
   -------------------------------------------------------------------------- */
.tcard {
  text-align: center;
  padding: .75rem .75rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(7,26,68,.08);
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(7,26,68,.07);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--sh-4); border-color: var(--gold-300); }
.tcard__photo {
  position: relative; width: 100%; max-width: 340px; margin: 0 auto 1.15rem;
  aspect-ratio: 4 / 5; border-radius: 17px; overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7,26,68,.1);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.tcard:hover .tcard__photo { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(7,26,68,.16); }
.tcard__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.tcard h3 { font-size: var(--step-1); margin-bottom: .25rem; }
.tcard__role { color: var(--gold-600); font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .6rem; }
.tcard p { color: var(--muted); font-size: var(--step--1); padding-inline: .35rem; }

/* --------------------------------------------------------------------------
   15. TESTIMONIALS
   -------------------------------------------------------------------------- */
.tst-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 1fr);
  gap: var(--gap); overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; scrollbar-width: thin;
}
.tst-rail::-webkit-scrollbar { height: 6px; }
.tst-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.tst {
  scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem 1.4rem 1.35rem;
  display: flex; flex-direction: column;
  position: relative;
}
.tst__mark {
  font-family: var(--font-display); font-size: 4.5rem; font-weight: 700; line-height: .7;
  color: var(--gold-300); margin-bottom: .6rem;
}
.tst p { font-size: var(--step-0); color: var(--ink-soft); flex: 1; }
.tst__who { display: flex; align-items: center; gap: .85rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line-soft); }
.tst__av {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  color: var(--gold-300); font-weight: 800; font-size: .9rem;
}
.tst__who b { display: block; color: var(--navy-900); font-size: .95rem; }
.tst__who span { display: block; color: var(--muted); font-size: .78rem; }
.stars { display: flex; gap: 2px; color: var(--gold-500); margin-bottom: .9rem; }
.stars svg { width: 15px; height: 15px; }

.rail-nav { display: flex; gap: .5rem; }
.rail-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--navy-800);
  display: grid; place-items: center; cursor: pointer;
  transition: all .3s var(--ease);
}
.rail-nav button:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); transform: translateY(-2px); }
.rail-nav svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 1.05rem 3rem 1.05rem 0; position: relative;
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 700;
  color: var(--navy-900); line-height: 1.4;
  transition: color .25s;
}
.faq__q:hover { color: var(--gold-600); }
.faq__q::after, .faq__q::before {
  content: ""; position: absolute; right: .75rem; top: 50%;
  background: var(--gold-600); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s;
}
.faq__q::before { width: 16px; height: 2px; transform: translateY(-50%); }
.faq__q::after  { width: 2px; height: 16px; right: 1.19rem; transform: translateY(-50%); }
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.faq__a > div { padding: 0 3rem 1.15rem 0; color: var(--muted); }

/* --------------------------------------------------------------------------
   17. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(112deg, var(--navy-950) 0%, var(--navy-800) 48%, var(--navy-700) 100%);
  border-radius: var(--r-xl);
  padding: clamp(1.9rem, 1.6rem + 2vw, 3.25rem);
  color: #fff;
}
.cta-band::before {
  content: ""; position: absolute; z-index: -1; inset: auto -10% -60% auto;
  width: 520px; height: 520px; right: -120px; bottom: -240px;
  background: radial-gradient(circle, rgba(212,160,42,.34), transparent 62%);
}
.cta-band::after {
  content: ""; position: absolute; z-index: -1; top: -50%; left: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(26,69,160,.5), transparent 64%);
}
.cta-band h2 { color: #fff; font-size: var(--step-3); margin-bottom: .8rem; }
.cta-band p { color: rgba(255,255,255,.76); }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* --------------------------------------------------------------------------
   18. FORMS
   -------------------------------------------------------------------------- */
.field { display: block; margin-bottom: 1.1rem; }
.field > label, .label {
  display: block; margin-bottom: .45rem;
  font-size: .8rem; font-weight: 700; color: var(--navy-900);
  letter-spacing: .01em;
}
.label .req { color: var(--err); }

.input, .select, .textarea {
  width: 100%; padding: .82rem 1rem;
  font-size: var(--step-0); color: var(--ink);
  background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .25s, box-shadow .25s, background-color .25s;
}
.input::placeholder, .textarea::placeholder { color: #9AA3B8; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 4px rgba(26,69,160,.12);
}
.input.is-error, .select.is-error, .textarea.is-error { border-color: var(--err); box-shadow: 0 0 0 4px rgba(180,35,24,.1); }
.input.is-ok { border-color: var(--ok); }
.textarea { min-height: 130px; resize: vertical; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7691' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.input[readonly] { background: var(--shell); color: var(--muted); }

.hint { display: block; margin-top: .35rem; font-size: .76rem; color: var(--muted); }
.err-text { display: block; margin-top: .35rem; font-size: .76rem; color: var(--err); font-weight: 600; }

.check { display: flex; gap: .65rem; align-items: flex-start; font-size: var(--step--1); cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: .18rem; accent-color: var(--navy-700); flex: none; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 1.1rem; }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   19. ALERTS
   -------------------------------------------------------------------------- */
.alert {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .95rem 1.15rem; border-radius: var(--r-md);
  font-size: var(--step--1); margin-bottom: 1.1rem;
  border: 1px solid; line-height: 1.55;
}
.alert svg { width: 19px; height: 19px; flex: none; margin-top: .12rem; }
.alert--success { background: #ECFDF3; border-color: #A6F4C5; color: #05603A; }
.alert--error   { background: #FEF3F2; border-color: #FECDCA; color: #912018; }
.alert--warning { background: #FFFAEB; border-color: #FEDF89; color: #93370D; }
.alert--info    { background: var(--navy-50); border-color: #C7D7FE; color: var(--navy-800); }

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.62); position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; top: -220px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(212,160,42,.11), transparent 64%);
}
.footer-main { position: relative; padding-block: clamp(2.25rem, 1.9rem + 2vw, 3.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.5fr; gap: clamp(1.75rem, 1.2rem + 2vw, 3.5rem); }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { width: min(300px, 100%); height: auto; margin-bottom: 1.15rem; }
.footer-brand p { font-size: var(--step--1); max-width: 40ch; }

.footer-h {
  color: #fff; font-family: var(--font-body);
  font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1.25rem; position: relative; padding-bottom: .7rem;
}
.footer-h::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent); border-radius: 2px;
}
.footer-links { display: grid; gap: .65rem; }
.footer-links a {
  font-size: var(--step--1);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: color .25s, gap .25s;
}
.footer-links a::before { content: "›"; color: var(--gold-500); font-size: 1.1em; line-height: 1; }
.footer-links a:hover { color: var(--gold-300); gap: .75rem; }

.footer-contact { display: grid; gap: 1rem; }
.footer-contact li { display: flex; gap: .8rem; font-size: var(--step--1); align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: .2rem; color: var(--gold-500); }
.footer-contact a:hover { color: var(--gold-300); }

.socials { display: flex; gap: .55rem; margin-top: 1.5rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.75);
  transition: all .3s var(--ease);
}
.socials a:hover { background: linear-gradient(140deg, var(--gold-600), var(--gold-400)); border-color: transparent; color: var(--navy-950); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }

.legal-strip {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.09);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .78rem;
}
.legal-strip__ids { display: flex; flex-wrap: wrap; gap: .5rem; }
.legal-strip__ids span {
  padding: .28rem .7rem; border-radius: var(--r-sm);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  font-size: .72rem; letter-spacing: .03em;
}
.legal-strip__ids b { color: var(--gold-400); font-weight: 700; }
.legal-strip a:hover { color: var(--gold-300); }

.disclaimer-note {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: 1.2rem;
  font-size: .74rem; line-height: 1.6; color: rgba(255,255,255,.42);
}

/* --------------------------------------------------------------------------
   21. FLOATING ACTIONS
   -------------------------------------------------------------------------- */
.fab-stack {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 80;
  display: grid; gap: .65rem;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 26px rgba(4,16,46,.28);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 0; cursor: pointer;
}
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab svg { width: 25px; height: 25px; }
.fab--wa { background: #25D366; }
.fab--call { background: linear-gradient(140deg, var(--navy-800), var(--navy-600)); }
.fab--top { background: #fff; color: var(--navy-800); border: 1px solid var(--line); box-shadow: var(--sh-2); opacity: 0; pointer-events: none; }
.fab--top.is-visible { opacity: 1; pointer-events: auto; }
.fab--wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }
.fab { position: relative; }

/* --------------------------------------------------------------------------
   22. UTILITY: BADGES / PILLS / TABLES
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .28rem .68rem; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .03em;
  background: var(--navy-50); color: var(--navy-800);
}
.badge--gold  { background: var(--gold-100); color: var(--gold-700); }
.badge--green { background: var(--green-100); color: var(--green-700); }
.badge--red   { background: #FEF3F2; color: #912018; }
.badge--grey  { background: var(--line-soft); color: var(--muted); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
.tbl { min-width: 640px; font-size: var(--step--1); }
.tbl thead th {
  background: var(--shell); text-align: left;
  padding: .95rem 1.1rem; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--line); white-space: nowrap;
}
.tbl tbody td { padding: .95rem 1.1rem; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr:hover { background: var(--navy-50); }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tbl tfoot td { padding: .95rem 1.1rem; background: var(--shell); font-weight: 800; color: var(--navy-900); border-top: 1px solid var(--line); }

/* --------------------------------------------------------------------------
   23. SCROLL REVEAL
   -------------------------------------------------------------------------- */
/* Reveal engine. Every variant animates only opacity/transform/filter/clip so
   it stays on the compositor. `--i` is set by main.js to stagger siblings.

   The hidden state is scoped to `html.js-reveal`, which main.js adds only after
   it has successfully wired the observer. Without JS — or if the script fails —
   nothing is ever hidden. */
html.js-reveal [data-reveal] {
  --rv-delay: calc(var(--i, 0) * 65ms);
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity   .72s var(--ease-out) var(--rv-delay),
    transform .72s var(--ease-out) var(--rv-delay),
    filter    .72s var(--ease-out) var(--rv-delay),
    clip-path .82s var(--ease-out) var(--rv-delay);
  will-change: opacity, transform;
}
html.js-reveal [data-reveal="left"]   { transform: translate3d(-30px, 0, 0); }
html.js-reveal [data-reveal="right"]  { transform: translate3d(30px, 0, 0); }
html.js-reveal [data-reveal="zoom"]   { transform: scale(.93); }
html.js-reveal [data-reveal="rise"]   { transform: translate3d(0, 40px, 0) scale(.985); }
html.js-reveal [data-reveal="blur"]   { filter: blur(10px); transform: translate3d(0, 14px, 0); }
html.js-reveal [data-reveal="mask"]   { opacity: 1; transform: none; clip-path: inset(0 0 102% 0); }
html.js-reveal [data-reveal="tilt"]   { transform: perspective(900px) rotateX(7deg) translate3d(0, 26px, 0); transform-origin: 50% 100%; }

html.js-reveal [data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0);
  will-change: auto;
}

/* --------------------------------------------------------------------------
   23b. SCROLL PROGRESS + PARALLAX
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  transform-origin: 0 50%; transform: scaleX(var(--p, 0));
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300), var(--gold-500));
  pointer-events: none;
}

/* hero image drifts a little slower than the page */
.hero__media { will-change: transform; }
.hero__media img { transform: translate3d(0, var(--par, 0px), 0) scale(1.08); animation: none; }

/* section images lift gently as they cross the viewport */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html.js-reveal [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .scroll-progress { display: none; }
  .hero__media img { transform: none; }
  [data-parallax] { transform: none !important; }
}

/* --------------------------------------------------------------------------
   24. MISC
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-900); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--shell); min-height: 340px; }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

.divider-wave { display: block; width: 100%; height: auto; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.gallery-grid a {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  aspect-ratio: 4/3; display: block; background: var(--navy-50);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.1); }
.gallery-grid a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4,16,46,.75));
  opacity: 0; transition: opacity .4s;
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid figcaption {
  position: absolute; left: 1rem; right: 1rem; bottom: .9rem; z-index: 2;
  color: #fff; font-size: .82rem; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: all .4s var(--ease);
}
.gallery-grid a:hover figcaption { opacity: 1; transform: none; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.print-only { display: none; }
@media print {
  .site-header, .site-footer, .fab-stack, .topbar, .hero__scroll { display: none !important; }
  .print-only { display: block; }
  body { color: #000; }
}

/* --------------------------------------------------------------------------
   25. LIGHTBOX
   -------------------------------------------------------------------------- */
.lb {
  position: fixed; inset: 0; z-index: 120;
  display: none; place-items: center;
  background: rgba(4,16,46,.92); backdrop-filter: blur(6px);
  padding: clamp(1rem, 4vw, 3rem);
}
.lb.is-open { display: grid; animation: lbIn .3s var(--ease-out); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb img {
  max-width: min(1100px, 92vw); max-height: 80vh;
  width: auto; border-radius: var(--r-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  object-fit: contain;
}
.lb__cap { display: block; margin-top: 1rem; color: rgba(255,255,255,.8); font-size: .9rem; text-align: center; }
.lb__close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer;
  transition: background .25s, transform .25s;
}
.lb__close:hover { background: rgba(255,255,255,.22); transform: rotate(90deg); }

/* --------------------------------------------------------------------------
   26. FILTER BAR / CHIPS
   -------------------------------------------------------------------------- */
.filter-bar {
  display: grid; gap: 1rem;
  background: var(--shell); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.25rem 1.4rem;
}
.filter-bar__group { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.filter-bar__label {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-right: .5rem; min-width: 68px;
}
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line);
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  transition: all .25s var(--ease);
}
.chip small {
  display: inline-grid; place-items: center; min-width: 18px; height: 18px;
  padding: 0 .3rem; border-radius: var(--r-pill);
  background: var(--line-soft); color: var(--muted);
  font-size: .66rem; font-weight: 800;
}
.chip:hover { border-color: var(--navy-600); color: var(--navy-800); }
.chip.is-on { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.chip.is-on small { background: rgba(255,255,255,.18); color: #fff; }

/* --------------------------------------------------------------------------
   27. SPEC LIST / DETAIL PANELS
   -------------------------------------------------------------------------- */
.spec-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.spec-list > div { background: #fff; padding: 1.1rem 1.25rem; }
.spec-list span { display: block; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.spec-list b { display: block; font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: var(--navy-900); font-variant-numeric: tabular-nums; }
@media (max-width: 520px) { .spec-list { grid-template-columns: 1fr; } }

.sticky-panel { position: sticky; top: 108px; }
@media (max-width: 940px) { .sticky-panel { position: static; } }

.panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem;
  box-shadow: var(--sh-2);
}
.panel--navy { background: linear-gradient(150deg, var(--navy-900), var(--navy-800)); border-color: transparent; color: rgba(255,255,255,.78); }
.panel--navy h3, .panel--navy b { color: #fff; }

.price-tag {
  display: flex; align-items: baseline; gap: .4rem;
  font-family: var(--font-display); font-weight: 700; color: var(--navy-900);
  font-variant-numeric: tabular-nums;
}
.price-tag .amt { font-size: var(--step-4); line-height: 1; letter-spacing: -.02em; }
.price-tag .unit { font-family: var(--font-body); font-size: .85rem; font-weight: 700; color: var(--muted); }

/* --------------------------------------------------------------------------
   28. DOC / CONTENT PAGES
   -------------------------------------------------------------------------- */
.prose { max-width: 76ch; }
.prose h2 { font-size: var(--step-2); margin: 2.4rem 0 .9rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--step-1); margin: 1.8rem 0 .6rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { display: grid; gap: .6rem; margin: 0 0 1.2rem; }
.prose ul li { display: flex; gap: .7rem; }
.prose ul li::before { content: "—"; color: var(--gold-500); flex: none; font-weight: 700; }
/* lists that carry their own icon must not also get the dash marker */
.prose ul.tick-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem 1.5rem; }
.prose ul.tick-grid li::before { content: none; }
.prose ul.tick-grid svg { color: var(--green-600); flex: none; margin-top: .15rem; }
@media (max-width: 640px) { .prose ul.tick-grid { grid-template-columns: 1fr; } }
.prose ol { counter-reset: n; display: grid; gap: .7rem; margin: 0 0 1.2rem; }
.prose ol li { counter-increment: n; display: flex; gap: .8rem; }
.prose ol li::before {
  content: counter(n); flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy-50); color: var(--navy-800);
  font-size: .74rem; font-weight: 800; margin-top: .12rem;
}
.prose a { color: var(--navy-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--navy-900); }

.toc {
  background: var(--shell); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.4rem 1.5rem;
}
.toc h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-body); color: var(--muted); margin-bottom: .9rem; }
.toc a { display: block; padding: .4rem 0; font-size: var(--step--1); color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.toc a:last-child { border-bottom: 0; }
.toc a:hover { color: var(--gold-600); }

/* --------------------------------------------------------------------------
   29. NARROW-SCREEN REFINEMENTS
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  .hero { min-height: auto; }
  .hero__inner { padding-block: 1.9rem 2.25rem; }
  /* the headline and lead dominate a narrow viewport — pull both in */
  .hero h1 { font-size: clamp(1.95rem, 8.4vw, 2.4rem); line-height: 1.08; margin-bottom: .7rem; }
  .hero p.lead { font-size: var(--step-0); line-height: 1.55; max-width: 40ch; }
  /* proof stats as a compact 3-up row instead of a tall stack */
  .hero__proof {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: .75rem; margin-top: 1.5rem; padding-top: 1.1rem;
  }
  .hero__proof-item strong { font-size: var(--step-1); }
  .hero__proof-item > span { font-size: .6rem; letter-spacing: .07em; margin-top: .2rem; }
  .hero__media img { object-position: 68% 52%; filter: saturate(1.02) contrast(1.03) brightness(.88); }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(3,12,36,.86) 0%, rgba(4,16,46,.8) 45%, rgba(3,12,36,.9) 100%),
      radial-gradient(90% 60% at 10% 100%, rgba(212,160,42,.22), transparent 60%);
  }
  .hero__badge { font-size: .72rem; padding: .35rem .8rem .35rem .4rem; gap: .5rem; margin-bottom: 1.2rem; }
  .hero__badge b { font-size: .62rem; padding: .18rem .5rem; }
  /* stacked, but stopping short of the floating action buttons on the right */
  .hero__cta { flex-direction: column; align-items: stretch; max-width: 300px; }
  .hero__cta .btn { width: 100%; }
  .hero__proof { gap: 1.25rem 2rem; margin-top: 2.25rem; padding-top: 1.5rem; }

  /* keep floating buttons clear of stacked CTAs */
  .fab-stack { right: .8rem; bottom: .8rem; }
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 22px; height: 22px; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; }
  .cta-band__actions .btn { width: 100%; }

  .collage__sub { width: 44%; right: 0; bottom: -8%; border-width: 6px; }
  .floating-stat { padding: .85rem 1.1rem; }
  .floating-stat b { font-size: 1.15rem; }

  .tst-rail { grid-auto-columns: minmax(270px, 85vw); }
  .filter-bar__label { min-width: 100%; margin-bottom: -.2rem; }
  .pcard__meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .hero h1 { letter-spacing: -.02em; }
  .stats__item { padding: 1.25rem .9rem; }
  .legal-strip { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   30. COMPACT SECTION FURNITURE
   -------------------------------------------------------------------------- */
.mb-sec { margin-bottom: clamp(1.6rem, 1.3rem + 1.2vw, 2.5rem); }
.sec-bar {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 1rem 1.5rem;
}

/* --------------------------------------------------------------------------
   31. FRONT PAGE COMPOSITION
   -------------------------------------------------------------------------- */
.home-page { background: #fff; }

.home-page .home-section {
  overflow: clip;
  isolation: isolate;
  border-top: 1px solid rgba(7,26,68,.045);
}
.home-page .home-section > .shell { position: relative; z-index: 1; }
.home-page .home-section::before {
  content: "";
  position: absolute; z-index: 0; pointer-events: none;
  width: clamp(260px, 36vw, 560px); aspect-ratio: 1;
  right: clamp(-260px, -16vw, -100px); top: clamp(-250px, -14vw, -90px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,42,.09), rgba(212,160,42,0) 68%);
}
.home-page .home-section::after {
  content: "";
  position: absolute; z-index: 2; pointer-events: none;
  top: 0; left: 50%; width: min(84%, 1060px); height: 1px;
  translate: -50% 0;
  background: linear-gradient(90deg, transparent, rgba(212,160,42,.48), transparent);
  transform-origin: 50% 50%;
}

/* A section's furniture animates once when the section first enters view. */
html.js-reveal .home-page .home-section[data-section-reveal]::before {
  opacity: 0;
  transform: translate3d(48px,-24px,0) scale(.82);
  transition: opacity 1.05s var(--ease-out), transform 1.15s var(--ease-out);
}
html.js-reveal .home-page .home-section[data-section-reveal]::after {
  transform: scaleX(0);
  transition: transform 1.05s var(--ease-out) .08s;
}
html.js-reveal .home-page .home-section[data-section-reveal].is-section-in::before {
  opacity: 1;
  transform: none;
}
html.js-reveal .home-page .home-section[data-section-reveal].is-section-in::after {
  transform: scaleX(1);
}

.home-page .section-head { max-width: 760px; }
.home-page .section-head h2,
.home-page h2.h2 {
  font-size: clamp(1.9rem, 1.45rem + 1.8vw, 3rem);
  letter-spacing: -.04em;
  text-wrap: balance;
}
.home-page .section-head p { max-width: 62ch; line-height: 1.65; }
.home-page .section-head--center p { margin-inline: auto; }
.home-page .home-grid { gap: clamp(1rem, .75rem + 1.15vw, 1.75rem); }

/* About: a calmer editorial split with more air around the image collage. */
.home-section--about .split {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2.75rem, 2rem + 4vw, 6.5rem);
}
.home-section--about .collage__main { box-shadow: 0 28px 70px rgba(7,26,68,.18); }
.home-section--about .collage__main img,
.home-section--about .collage__sub img { transition: transform 1.2s var(--ease); }
.home-section--about .collage:hover .collage__main img { transform: scale(1.025); }
.home-section--about .tick-list { gap: .95rem; }
.home-section--about .tick-list li {
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line-soft);
}
.home-section--about .tick-list li:last-child { padding-bottom: 0; border-bottom: 0; }

/* Business verticals: stronger image presence and a consistent card baseline. */
.home-section--verticals {
  background:
    radial-gradient(70% 90% at 0% 100%, rgba(212,160,42,.09), transparent 62%),
    var(--cream);
}
.home-section--verticals .vcard {
  min-height: clamp(320px, 29vw, 390px);
  padding: clamp(1.35rem, 1rem + 1vw, 1.85rem);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 18px 45px rgba(7,26,68,.13);
}
.home-section--verticals .vcard::after {
  background: linear-gradient(180deg, rgba(4,16,46,.08), rgba(4,16,46,.42) 42%, rgba(4,16,46,.96) 100%);
}
.home-section--verticals .vcard__tag { margin-bottom: clamp(5rem, 9vw, 8.5rem); }
.home-section--verticals .vcard h3 { font-size: clamp(1.25rem, 1rem + .75vw, 1.75rem); }

/* The proof numbers become a visual pause between image-heavy sections. */
.home-section--stats { background: #fff; }
.home-page .home-section--stats .stats {
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: clamp(18px, 2vw, 28px);
  background:
    radial-gradient(80% 160% at 100% 50%, rgba(26,69,160,.68), transparent 64%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 24px 60px rgba(7,26,68,.2);
}
.home-page .home-section--stats .stats__item {
  position: relative;
  background: transparent;
  padding-block: clamp(1.6rem, 1.15rem + 1.7vw, 2.6rem);
}
.home-page .home-section--stats .stats__item + .stats__item {
  border-left: 1px solid rgba(255,255,255,.12);
}
.home-page .home-section--stats .stats__num { color: #fff; }
.home-page .home-section--stats .stats__label { color: rgba(255,255,255,.62); }

/* Project and reason grids share a softer, premium card surface. */
.home-section--projects {
  background:
    linear-gradient(rgba(7,26,68,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,26,68,.025) 1px, transparent 1px),
    var(--shell);
  background-size: 32px 32px;
}
.home-section--projects .pcard {
  border-color: rgba(7,26,68,.08);
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(7,26,68,.07);
}
.home-section--projects .pcard__body { padding: 1.35rem 1.4rem 1.45rem; }
.home-section--why .card {
  border-color: transparent;
  border-radius: 22px;
  box-shadow: 0 10px 34px rgba(7,26,68,.075);
}
.home-section--why .card::after {
  content: ""; position: absolute; inset: auto 1.4rem 0; height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s var(--ease);
}
.home-section--why .card:hover::after { transform: scaleX(1); }

/* Investment cards replace the previous inline styles and carry the dark band. */
.home-section--investment {
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(26,69,160,.58), transparent 64%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}
.home-section--investment::before {
  background: radial-gradient(circle, rgba(212,160,42,.2), rgba(212,160,42,0) 68%);
}
.investment-grid { align-items: stretch; }
.investment-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0,0,0,.13);
  transition: transform .45s var(--ease), border-color .45s, background-color .45s;
}
.investment-card:hover {
  transform: translateY(-7px);
  border-color: rgba(242,208,122,.5);
  background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
}
.investment-card__tag { color: var(--gold-400); margin-bottom: .9rem; }
.investment-card h3 { color: #fff; font-size: var(--step-2); margin-bottom: .55rem; }
.investment-card__price {
  font-family: var(--font-display); font-size: var(--step-3);
  font-weight: 700; margin-bottom: 1.45rem;
}
.investment-card__list { display: grid; gap: 1rem; flex: 1; }
.investment-card__list li { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--step--1); }
.investment-card__list li > svg { flex: none; color: var(--gold-400); margin-top: .2rem; }
.investment-card__list b { color: #fff; font-weight: 700; }
.investment-card__list b + span { color: rgba(255,255,255,.72); }
.investment-card__cta { margin-top: 1.7rem; }
.investment-note { margin-top: 2rem; color: rgba(255,255,255,.5); max-width: 80ch; }

/* Process steps read as connected cards rather than loose text blocks. */
.home-section--process {
  background: linear-gradient(180deg, #fff 0%, #fff 42%, var(--navy-50) 100%);
}
.home-section--process .process { gap: clamp(.8rem, .6rem + 1vw, 1.4rem); }
.home-section--process .process::before { top: 35px; }
.home-section--process .process__step {
  padding: 0 1rem 1.3rem;
  border-radius: 18px;
}
.home-section--process .process__dot {
  width: 68px; height: 68px;
  border-color: var(--gold-300);
  color: var(--gold-700);
}

.home-section--leadership .tcard__photo {
  box-shadow: 0 16px 38px rgba(7,26,68,.14);
}
.home-section--leadership .tcard__role { color: var(--gold-700); }

.home-section--testimonials .tst-rail { padding: .35rem .25rem 1.4rem; }
.home-section--testimonials .tst {
  min-height: 290px;
  border-color: rgba(7,26,68,.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(7,26,68,.065);
}
.home-section--testimonials .tst::before {
  content: "“";
  position: absolute; right: 1.15rem; top: .5rem;
  font-family: Georgia, serif; font-size: 4.5rem; line-height: 1;
  color: var(--gold-100); pointer-events: none;
}

.home-section--gallery .gallery-grid { gap: clamp(.65rem, .45rem + .8vw, 1rem); }
.home-section--gallery .gallery-grid a {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(7,26,68,.09);
}
.home-section--gallery .gallery-grid a::after { opacity: .32; }
.home-section--gallery .gallery-grid figcaption { opacity: 1; transform: none; }

.home-section--faq { background: linear-gradient(180deg, #fff, var(--cream)); }
.home-section--faq .faq {
  padding: .5rem clamp(1.1rem, .9rem + 1vw, 1.6rem);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(7,26,68,.08);
}
.home-section--faq .faq__item:last-child { border-bottom: 0; }
.home-section--cta { border-top: 0; }
.home-section--cta::after { display: none; }
.home-section--cta .cta-band { box-shadow: 0 26px 65px rgba(7,26,68,.2); }

@media (max-width: 1000px) {
  .home-section--verticals .vcard { min-height: 330px; }
  .home-section--verticals .vcard__tag { margin-bottom: 6.5rem; }
}

@media (max-width: 940px) {
  .home-section--about .split { grid-template-columns: 1fr; }
  .home-section--about .split__media { max-width: 720px; }
}

@media (max-width: 860px) {
  .home-page .home-section--stats .stats__item:nth-child(3) { border-left: 0; }
  .home-page .home-section--stats .stats__item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 660px) {
  .home-page .home-section { --section-y: clamp(3.4rem, 12vw, 4.6rem); }
  .home-page .section-head h2,
  .home-page h2.h2 { font-size: clamp(1.75rem, 7.8vw, 2.35rem); }
  .home-section--verticals .vcard { min-height: 340px; }
  .home-section--verticals .vcard__tag { margin-bottom: 7rem; }
  .home-section--projects .pcard__body { padding: 1.15rem; }
  .investment-card { border-radius: 18px; }
  .home-section--testimonials .tst { min-height: 270px; }
}

@media (max-width: 480px) {
  .home-page .home-section--stats .stats { grid-template-columns: 1fr 1fr; }
  .home-page .home-section--stats .stats__item { padding-inline: .65rem; }
  .home-page .home-section--stats .stats__num { font-size: clamp(1.65rem, 10vw, 2.25rem); }
  .home-page .home-section--stats .stats__label { font-size: .61rem; letter-spacing: .08em; }
  .home-section--faq .faq { padding-inline: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal .home-page .home-section[data-section-reveal]::before,
  html.js-reveal .home-page .home-section[data-section-reveal]::after {
    opacity: 1;
    transform: none;
  }
}
