/* Cliniviva — Design System 2026 */
:root {
  --navy: #0f2038;
  --navy-deep: #081322;
  --navy-soft: #1a2d48;
  --sage: #7eb8a8;
  --sage-soft: #a5ccc0;
  --sage-deep: #4a8575;
  --emerald: #2d5f50;
  --cream: #f6f2ea;
  --cream-2: #ece5d5;
  --cream-3: #e0d7c2;
  --paper: #ffffff;
  --ink: #0a1220;
  --ink-2: #2b3447;
  --muted: #6b7487;
  --line: #d9d1bf;
  --line-soft: #ebe4d3;
  --accent: #dfe5c9;
  --shadow-sm: 0 1px 2px rgba(8,19,34,.04), 0 2px 8px rgba(8,19,34,.04);
  --shadow-md: 0 4px 12px rgba(8,19,34,.06), 0 16px 40px rgba(8,19,34,.08);
  --shadow-lg: 0 12px 24px rgba(8,19,34,.10), 0 40px 80px rgba(8,19,34,.14);
  --r-sm: 6px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --serif: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-in: cubic-bezier(.7,0,.84,0);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--navy); color: var(--cream); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
section[id] { scroll-margin-top: 110px; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

/* Grain overlay across the whole page for texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--navy);
  font-variation-settings: "SOFT" 50, "WONK" 0;
}

.serif { font-family: var(--serif); }
.italic { font-style: italic; font-weight: 300; color: var(--sage-deep); }

.mono {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}
.eyebrow.white { color: var(--sage-soft); }

/* Container */
.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 1040px; margin: 0 auto; padding: 0 40px; }

/* Navigation */
.nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: rgba(246, 242, 234, 0.72);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(15, 32, 56, 0.08);
  border-radius: 999px;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(246, 242, 234, 0.92);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 16px 0 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.nav-brand .name {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.86rem;
  color: var(--ink-2);
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.nav-links a:hover { background: rgba(15, 32, 56, 0.06); color: var(--navy); }
.nav-links a.active { background: var(--navy); color: var(--cream); }

.nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 12px 20px 12px 24px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--navy);
}
.nav-cta:hover { background: var(--navy-deep); transform: translateY(-1px); }
.nav-cta .dot { width: 7px; height: 7px; background: var(--sage); border-radius: 50%; box-shadow: 0 0 10px var(--sage); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

.nav-burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 50%; background: rgba(15, 32, 56, 0.06); }
.nav-burger span { display: block; width: 18px; height: 1.5px; background: var(--navy); transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 100px;
  left: 16px;
  right: 16px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
  z-index: 99;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 1.8rem;
  font-family: var(--serif);
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a::after { content: '→'; font-family: var(--sans); font-size: 1rem; color: var(--sage-deep); }
.mobile-menu .nav-cta { align-self: flex-start; margin-top: 16px; }
.mobile-menu .nav-cta::after { content: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  letter-spacing: 0;
  font-family: var(--sans);
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(8,19,34,.25); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-sage { background: var(--sage); color: var(--navy); border-color: var(--sage); }
.btn-sage:hover { background: var(--sage-soft); border-color: var(--sage-soft); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 14px 0;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
}
.btn-ghost:hover .arrow { transform: translateX(6px); }
.arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.btn .ic { display: inline-flex; width: 18px; height: 18px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 0;
  overflow: hidden;
  background: var(--cream);
}
.hero-video {
  position: absolute;
  inset: 120px 16px 16px 16px;
  border-radius: var(--r-xl);
  overflow: hidden;
  z-index: 1;
}
.hero-video video, .hero-video .fallback {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(8,19,34,.7), transparent 60%),
    linear-gradient(180deg, rgba(8,19,34,.1) 0%, rgba(8,19,34,.5) 100%);
  z-index: 1;
}
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.25;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 60px 40px 80px;
  color: var(--cream);
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 28px;
  font-size: 0.75rem;
  color: rgba(246,242,234,.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.hero-meta .live { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 8px var(--sage); animation: pulse 2s infinite; }

.hero-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: auto;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.035em;
  font-weight: 300;
  font-variation-settings: "SOFT" 80;
}
.hero-title .it { font-style: italic; color: var(--sage-soft); font-weight: 300; }
.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--sage-soft);
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(246,242,234,.82);
  max-width: 420px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-outline { color: var(--cream); border-color: rgba(246,242,234,.4); }
.hero-actions .btn-outline:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

.hero-corner {
  position: absolute;
  z-index: 3;
  color: var(--cream);
}
.hero-corner.tl { top: 28px; left: 28px; }
.hero-corner.tr { top: 28px; right: 28px; text-align: right; }
.hero-corner.bl { bottom: 28px; left: 28px; }
.hero-corner.br { bottom: 28px; right: 28px; }
.hero-corner .mono { display: block; opacity: 0.6; margin-bottom: 4px; }
.hero-corner .val { font-family: var(--serif); font-size: 1.25rem; font-style: italic; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  opacity: 0.7;
}
.scroll-cue .line { width: 1px; height: 40px; background: var(--cream); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--sage));
  animation: scrollDrop 2.5s ease-in-out infinite;
}
@keyframes scrollDrop { to { top: 100%; } }

/* === MARQUEE === */
.marquee {
  background: var(--navy);
  color: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(246,242,234,.08);
  border-bottom: 1px solid rgba(246,242,234,.08);
}
.marquee-track {
  display: inline-flex;
  gap: 52px;
  animation: marqueeScroll 42s linear infinite;
  padding-left: 52px;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: rgba(246,242,234,.95);
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 52px;
}
.marquee-track .it { font-style: italic; color: var(--sage-soft); }
.marquee-track .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* === SECTIONS === */
.section { padding: 140px 0; position: relative; }
.section-sm { padding: 80px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.03em;
}
.section-head p { color: var(--ink-2); font-size: 1.05rem; line-height: 1.6; max-width: 520px; }

/* === BENTO OFFERS === */
.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  grid-template-areas:
    "a b c"
    "a d d";
}
.bento-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento-card .ic-big {
  width: 44px; height: 44px;
  color: var(--sage-deep);
  margin-bottom: auto;
}
.bento-card h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin-bottom: 14px;
  line-height: 1.02;
}
.bento-card p { font-size: 0.96rem; color: var(--ink-2); line-height: 1.6; max-width: 440px; }
.bento-card .num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.14em;
}

.bento-card.a { grid-area: a; background: var(--navy); color: var(--cream); min-height: 620px; padding-bottom: 0; }
.bento-card.a h3 { color: var(--cream); font-size: clamp(1.9rem, 2.8vw, 2.8rem); max-width: 90%; }
.bento-card.a p { color: rgba(246,242,234,.75); max-width: 92%; }
.bento-card.a .num { color: rgba(246,242,234,.4); }
.bento-card.a .ic-big { color: var(--sage-soft); }
.bento-card.a .visual {
  margin: 28px -36px 0;
  aspect-ratio: 16/10;
  border-bottom-left-radius: var(--r-lg);
  border-bottom-right-radius: var(--r-lg);
  overflow: hidden;
}
.bento-card.a .visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bento-card.a .chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.bento-card.a .chip {
  padding: 6px 12px;
  border: 1px solid rgba(246,242,234,.2);
  border-radius: 999px;
  font-size: 0.75rem;
  color: rgba(246,242,234,.85);
}

.bento-card.b { grid-area: b; background: var(--cream-2); }
.bento-card.c { grid-area: c; background: var(--sage); color: var(--cream); }
.bento-card.c h3 { color: var(--cream); }
.bento-card.c p { color: rgba(246,242,234,.85); }
.bento-card.c .ic-big { color: var(--cream); }
.bento-card.c .num { color: rgba(246,242,234,.6); }

.bento-card.d { grid-area: d; background: var(--paper); padding: 0; overflow: hidden; min-height: 320px; }
.bento-card.d .split { display: grid; grid-template-columns: 1fr 1fr; height: 100%; }
.bento-card.d .split > div:first-child { padding: 36px; display: flex; flex-direction: column; justify-content: space-between; }
.bento-card.d .split img { width: 100%; height: 100%; object-fit: cover; }
.bento-card.d .stat { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.bento-card.d .stat .v { font-family: var(--serif); font-size: 2.8rem; color: var(--navy); line-height: 1; }
.bento-card.d .stat .l { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* === SHOWCASE === */
.showcase-wrap { padding: 0 40px; }
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.showcase figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-2);
  transition: transform 0.6s var(--ease);
}
.showcase figure:hover { transform: scale(0.99); }
.showcase figure img, .showcase figure video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.showcase figure:hover img, .showcase figure:hover video { transform: scale(1.06); }
.showcase figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,19,34,.55));
  pointer-events: none;
}
.showcase figcaption {
  position: absolute;
  bottom: 20px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--cream);
  z-index: 2;
}
.showcase figcaption .label { font-family: var(--serif); font-size: 1.3rem; font-style: italic; }
.showcase figcaption .tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; opacity: 0.85; background: rgba(15,32,56,.4); backdrop-filter: blur(8px); padding: 4px 10px; border-radius: 999px; }

/* === APPROCHE / VALUES === */
.approche {
  background: var(--navy);
  color: var(--cream);
  padding: 140px 0;
  border-radius: var(--r-xl);
  margin: 0 16px;
  position: relative;
  overflow: hidden;
}
.approche::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(126,184,168,.14), transparent 60%);
  border-radius: 50%;
}
.approche h2 { color: var(--cream); }
.approche .section-head p { color: rgba(246,242,234,.7); }

.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(246,242,234,.12);
  counter-reset: val;
}
.value-item {
  display: grid;
  grid-template-columns: 80px 280px 1fr 120px;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(246,242,234,.12);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.value-item:hover { padding-left: 24px; background: rgba(246,242,234,.02); }
.value-item::before {
  counter-increment: val;
  content: "/ 0" counter(val);
  font-family: var(--mono);
  font-size: 0.75rem;
  color: rgba(126,184,168,.7);
  letter-spacing: 0.12em;
}
.value-item h4 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--cream);
  line-height: 1.05;
}
.value-item h4 em { font-style: italic; color: var(--sage-soft); }
.value-item p {
  font-size: 0.98rem;
  color: rgba(246,242,234,.72);
  line-height: 1.55;
  max-width: 520px;
}
.value-item .go {
  justify-self: end;
  width: 48px; height: 48px;
  border: 1px solid rgba(246,242,234,.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.value-item:hover .go { background: var(--sage); border-color: var(--sage); color: var(--navy); transform: rotate(-45deg); }

/* === SPECIALTIES === */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.spec-tile {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 32px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.spec-tile:hover { transform: translateY(-4px); background: var(--navy); color: var(--cream); border-color: var(--navy); }
.spec-tile:hover h4 { color: var(--cream); }
.spec-tile:hover p { color: rgba(246,242,234,.7); }
.spec-tile:hover .spec-num { color: var(--sage-soft); }
.spec-tile:hover .ic-spec { color: var(--sage-soft); }
.spec-tile .spec-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.spec-tile .ic-spec {
  width: 40px; height: 40px;
  color: var(--sage-deep);
  margin: 24px 0 24px;
  transition: color 0.4s var(--ease);
}
.spec-tile h4 { font-size: 1.4rem; margin-bottom: 8px; }
.spec-tile p { font-size: 0.86rem; color: var(--ink-2); line-height: 1.5; }

/* === QUOTE === */
.quote-block {
  padding: 120px 0;
  position: relative;
}
.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-weight: 300;
}
.quote-block blockquote .it { font-style: italic; color: var(--sage-deep); }
.quote-attr {
  text-align: center;
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* === PROCESS === */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--line);
}
.step {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.4rem;
  color: var(--sage-deep);
  line-height: 1;
  display: block;
  margin-bottom: 32px;
  font-weight: 300;
}
.step h4 { font-size: 1.5rem; margin-bottom: 14px; }
.step p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.55; }
.step .dur { font-family: var(--mono); font-size: 0.7rem; color: var(--sage-deep); letter-spacing: 0.12em; margin-top: 16px; text-transform: uppercase; }

/* === PRO STATS / REASSURANCE === */
.stats-band {
  background: var(--cream-2);
  padding: 80px 0;
  border-radius: var(--r-xl);
  margin: 0 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
}
.stat-big .v {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  color: var(--navy);
  line-height: 0.95;
  font-style: italic;
  font-weight: 300;
}
.stat-big .v .unit { font-style: normal; font-size: 0.5em; color: var(--sage-deep); margin-left: 4px; }
.stat-big .l { font-size: 0.9rem; color: var(--ink-2); margin-top: 12px; max-width: 240px; line-height: 1.45; }

/* === CTA BAND === */
.cta-band {
  position: relative;
  padding: 0 16px;
  margin-top: 60px;
}
.cta-inner {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 60px;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(126,184,168,.2), transparent 55%);
  border-radius: 50%;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(126,184,168,.14), transparent 55%);
  border-radius: 50%;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-inner h2 { color: var(--cream); font-size: clamp(2.4rem, 5vw, 4.8rem); margin-bottom: 24px; }
.cta-inner p { color: rgba(246,242,234,.75); font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; }
.cta-inner .hero-actions .btn-outline { color: var(--cream); border-color: rgba(246,242,234,.28); }
.cta-inner .hero-actions .btn-outline:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

.cta-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 36px;
}
.cta-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cta-card .row:last-child { border-bottom: none; }
.cta-card .row .k { color: rgba(246,242,234,.55); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.cta-card .row .v { color: var(--cream); font-family: var(--serif); font-size: 1.15rem; font-style: italic; }

/* === FOOTER === */
.footer {
  background: var(--navy-deep);
  color: rgba(246,242,234,.72);
  padding: 120px 0 40px;
  margin-top: 60px;
  border-top-left-radius: var(--r-xl);
  border-top-right-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.footer-huge {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.02em;
  font-weight: 300;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(246,242,234,.12);
  margin-bottom: 48px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-huge .it { font-style: italic; color: rgba(126,184,168,.7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; font-size: 0.92rem; }
.footer a { transition: color 0.2s; }
.footer a:hover { color: var(--cream); }
.footer-brand p { font-size: 0.95rem; line-height: 1.6; margin-top: 20px; max-width: 360px; }
.footer-brand .logo-row { display: flex; align-items: center; gap: 14px; }
.footer-brand .logo-row img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand .logo-row .name { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); letter-spacing: 0.08em; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(246,242,234,.08);
  font-size: 0.82rem;
  color: rgba(246,242,234,.45);
  flex-wrap: wrap;
  gap: 16px;
}

/* === PAGE HEADER (centres / contact) === */
.page-header {
  padding: 180px 0 120px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 40%;
  left: -10%;
  width: 40%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(126,184,168,.12), transparent 60%);
  border-radius: 50%;
}
.page-header .eyebrow { margin-bottom: 24px; }
.page-header h1 {
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  font-weight: 300;
}
.page-header h1 .it { font-style: italic; color: var(--sage-deep); }
.page-header p { max-width: 580px; font-size: 1.1rem; color: var(--ink-2); line-height: 1.55; }

/* === FILTERS === */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.filter-chip {
  padding: 12px 20px;
  font-size: 0.84rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  transition: all 0.25s var(--ease);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.filter-chip:hover { border-color: var(--navy); }
.filter-chip.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.filter-chip .count { opacity: 0.55; font-size: 0.75rem; font-variant-numeric: tabular-nums; }

/* === CENTRES GRID === */
.centres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.centre-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.centre-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.centre-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
}
.centre-img img, .centre-img video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.centre-card:hover .centre-img img, .centre-card:hover .centre-img video { transform: scale(1.06); }
.centre-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,19,34,.35));
}
.centre-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(246,242,234,.94);
  backdrop-filter: blur(10px);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.centre-badge.new { background: var(--sage); color: var(--cream); }
.centre-badge.dept {
  top: 18px;
  right: 18px;
  left: auto;
  background: rgba(8,19,34,.6);
  color: var(--cream);
  font-family: var(--mono);
}
.centre-body { padding: 28px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.centre-body .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.centre-body .city {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
}
.centre-body .dist { font-size: 0.78rem; color: var(--muted); font-family: var(--mono); }
.centre-body h3 { font-size: 1.8rem; margin-bottom: 10px; line-height: 1.02; }
.centre-body .addr { font-size: 0.88rem; color: var(--ink-2); margin-bottom: 24px; }
.centre-specs {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 20px;
}
.centre-specs .spec { flex: 1; }
.centre-specs .spec .val {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1;
  font-style: italic;
  font-weight: 300;
}
.centre-specs .spec .lab {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.centre-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.centre-tag {
  font-size: 0.72rem;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
}
.centre-cta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.centre-cta .link {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease);
}
.centre-cta .link:hover { gap: 14px; }
.centre-cta .status {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--sage-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.centre-cta .status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 8px var(--sage);
}

/* === CONTACT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-intro > p { margin-bottom: 56px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.contact-method::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--sage);
  transform: translateX(-4px);
  transition: transform 0.3s var(--ease);
}
.contact-method:hover { border-color: var(--navy); transform: translateX(6px); box-shadow: var(--shadow-sm); }
.contact-method:hover::before { transform: translateX(0); }
.contact-method .ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method.email .ic { background: rgba(15,32,56,.08); color: var(--navy); }
.contact-method.wa .ic { background: rgba(37,211,102,.12); color: #25D366; }
.contact-method.phone .ic { background: rgba(126,184,168,.15); color: var(--sage-deep); }
.contact-method .tx { flex: 1; }
.contact-method .tx .t { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); font-style: italic; }
.contact-method .tx .s { font-size: 0.88rem; color: var(--muted); margin-top: 4px; }
.contact-method .go {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.contact-method:hover .go { background: var(--navy); color: var(--cream); border-color: var(--navy); transform: rotate(-45deg); }

.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.contact-form-wrap .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.contact-form-wrap .head h3 { font-size: 1.7rem; }
.contact-form-wrap .head .badge {
  padding: 6px 12px;
  background: rgba(126,184,168,.14);
  color: var(--sage-deep);
  font-size: 0.7rem;
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.06em;
}
.contact-form-wrap .head .badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage-deep);
  animation: pulse 2s infinite;
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 10px;
  font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(15,32,56,.06);
}
.field textarea { min-height: 140px; resize: vertical; font-family: var(--sans); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-send { display: flex; gap: 12px; margin-top: 32px; }
.btn-full { flex: 1; justify-content: center; }
.btn-wa { background: #25D366; border-color: #25D366; color: white; }
.btn-wa:hover { background: #1fb855; border-color: #1fb855; }
.legal { font-size: 0.78rem; color: var(--muted); margin-top: 20px; line-height: 1.55; }

/* === MAP SECTION === */
.map-section { padding: 0 16px; margin-top: 60px; }
.map-inner {
  background: var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 680px;
  position: relative;
}
.map-inner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(246,242,234,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,242,234,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
}
.map-text { padding: 80px 60px; color: var(--cream); display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.map-text h2 { color: var(--cream); font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 20px; }
.map-text p { color: rgba(246,242,234,.7); max-width: 440px; margin-bottom: 40px; }
.map-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; margin-bottom: 40px;
  border-top: 1px solid rgba(246,242,234,.12);
  border-bottom: 1px solid rgba(246,242,234,.12);
}
.map-stat { padding: 20px 0; border-right: 1px solid rgba(246,242,234,.12); }
.map-stat:last-child { border-right: none; padding-left: 20px; }
.map-stat .v { font-family: var(--serif); font-style: italic; font-size: 2.4rem; font-weight: 300; color: var(--sage); display: block; line-height: 1; margin-bottom: 6px; }
.map-stat .l { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(246,242,234,.55); }
.map-legend { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.map-legend-item { display: flex; align-items: center; gap: 14px; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,242,234,.75); }
.map-legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.map-legend-dot.active { background: var(--sage); box-shadow: 0 0 0 4px rgba(126,184,168,.15); }
.map-legend-dot.soon { background: transparent; border: 1.5px dashed rgba(246,242,234,.55); }

.map-visual {
  background: radial-gradient(ellipse at 30% 40%, #0d1d30 0%, var(--navy-deep) 70%);
  position: relative; overflow: hidden;
  border-left: 1px solid rgba(246,242,234,.08);
  min-height: 520px;
  z-index: 1;
}
.map-svg { width: 100%; height: 100%; display: block; }

/* Map markers */
.map-marker circle.pulse { transform-origin: center; transform-box: fill-box; animation: mapPulse 2.8s ease-out infinite; }
@keyframes mapPulse {
  0% { r: 6; opacity: .55; }
  100% { r: 28; opacity: 0; }
}
.map-marker.soon circle.pulse { animation-duration: 3.6s; }

/* Map corner labels */
.map-corner {
  position: absolute;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(246,242,234,.4);
  z-index: 3;
  pointer-events: none;
}
.map-corner.tl { top: 24px; left: 28px; }
.map-corner.tr { top: 24px; right: 28px; }
.map-corner.bl { bottom: 24px; left: 28px; }
.map-corner.br { bottom: 24px; right: 28px; }

/* === COMING SOON SECTION === */
.coming-soon {
  padding: 140px 0 120px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  position: relative;
}
.coming-soon::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(11,31,58,.08) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}
.coming-soon .container { position: relative; z-index: 2; }
.coming-soon-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.coming-soon-head h2 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.coming-soon-head h2 .it { font-style: italic; color: var(--sage-deep); }
.coming-soon-head p { font-size: 1.05rem; color: var(--ink-2); max-width: 460px; line-height: 1.6; }

.soon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.soon-card {
  padding: 32px 28px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  transition: background .5s var(--ease);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.soon-card:hover { background: #fefbf4; }
.soon-card .num {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.soon-card .city {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.soon-card .city .it { font-style: italic; color: var(--sage-deep); display: block; font-size: 1.1rem; margin-top: 4px; }
.soon-card .region {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: auto;
  padding-bottom: 24px;
}
.soon-card .date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.soon-card .date {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--ink-1);
  font-weight: 500;
}
.soon-card .tag {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--sage-50, rgba(126,184,168,.18));
  color: var(--sage-deep);
}
.soon-card .tag.priority { background: var(--navy); color: var(--cream); }

/* Waitlist band */
.waitlist-band {
  margin-top: 72px;
  padding: 56px 48px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.waitlist-band h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.015em;
}
.waitlist-band h3 .it { font-style: italic; color: var(--sage); }
.waitlist-band p { color: rgba(246,242,234,.7); margin-top: 14px; font-size: .98rem; line-height: 1.6; }
.waitlist-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.waitlist-band .btn-outline { color: var(--cream); border-color: rgba(246,242,234,.35); background: transparent; }
.waitlist-band .btn-outline:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

/* === SPECIALITES PAGE === */
.spec-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-idx {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--ink-1);
  background: transparent;
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.spec-idx .n { font-size: .65rem; color: var(--ink-3); letter-spacing: .14em; }
.spec-idx:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.spec-idx:hover .n { color: var(--sage); }

.spec-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 48px;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  scroll-margin-top: 110px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row.reverse .spec-row-visual { order: -1; }
.spec-row.reverse { grid-template-columns: 1fr 1fr 160px; }
.spec-row.reverse .spec-row-label { order: 2; text-align: right; align-items: flex-end; }
.spec-row-label {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 110px;
}
.spec-row-label .num {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--ink-3);
}
.spec-row-label .tag {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11,31,58,.06);
  color: var(--ink-1);
  align-self: flex-start;
}
.spec-row.reverse .spec-row-label .tag { align-self: flex-end; }
.spec-row-label .tag-sage { background: rgba(126,184,168,.2); color: var(--sage-deep); }

.spec-row-body h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--navy-deep);
}
.spec-row-body .lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 520px;
}
.spec-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 24px;
}
.spec-specs .ss {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  padding-right: 16px;
}
.spec-specs .ss:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 0; padding-left: 0; }
.spec-specs .ss:nth-child(even) { padding-left: 16px; }
.spec-specs .k {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.spec-specs .v {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy-deep);
  font-style: italic;
}
.spec-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.spec-tags span {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink-1);
  border: 1px solid var(--line);
}
.spec-row-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--line);
}
.spec-row-visual img, .spec-row-visual video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Equipment grid */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 48px;
}
.equip-item {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  transition: background .4s var(--ease);
}
.equip-item:hover { background: #fefbf4; }
.equip-num {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.equip-item h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--navy-deep);
}
.equip-item p {
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 16px;
}
.equip-tag {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

@media (max-width: 1100px) {
  .spec-row, .spec-row.reverse {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .spec-row-label { flex-direction: row; align-items: center; position: static; grid-column: 1 / -1; }
  .spec-row.reverse .spec-row-label { text-align: left; align-items: center; }
  .spec-row.reverse .spec-row-label .tag { align-self: center; }
  .spec-row-visual { aspect-ratio: 16/10; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .spec-row, .spec-row.reverse { grid-template-columns: 1fr; padding: 56px 0; gap: 24px; }
  .spec-row.reverse .spec-row-visual { order: 0; }
  .spec-row-body h2 { font-size: 2rem; }
  .spec-specs { grid-template-columns: 1fr; }
  .spec-specs .ss:nth-child(odd) { border-right: none; padding-right: 0; }
  .spec-specs .ss:nth-child(even) { padding-left: 0; }
  .equip-grid { grid-template-columns: 1fr; }
  .equip-item { padding: 28px 24px; }
  .spec-index { gap: 6px; }
  .spec-idx { padding: 8px 12px; font-size: .72rem; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: all 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-body { grid-template-columns: 1fr; gap: 32px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a a"
      "b c"
      "d d";
  }
  .bento-card.a { min-height: 420px; }
  .centres-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .value-item { grid-template-columns: 60px 1fr auto; }
  .value-item p { grid-column: 2 / -1; }
  .value-item h4 { grid-column: 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { position: static; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-inner { grid-template-columns: 1fr; }
  .map-text { padding: 56px 32px; }
  .map-visual { min-height: 520px; border-left: none; border-top: 1px solid rgba(246,242,234,.08); }
  .coming-soon-head { grid-template-columns: 1fr; gap: 32px; }
  .soon-grid { grid-template-columns: repeat(2, 1fr); }
  .waitlist-band { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .waitlist-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav { top: 10px; left: 10px; right: 10px; }
  .nav-inner { padding: 0 10px 0 18px; height: 60px; }
  .mobile-menu { top: 82px; left: 10px; right: 10px; }
  .hero { padding-top: 90px; }
  .hero-video { inset: 90px 8px 8px 8px; border-radius: var(--r-lg); }
  .hero-inner { padding: 30px 22px 60px; min-height: calc(100vh - 90px); }
  .hero-meta { display: none; }
  .hero-corner { display: none; }
  .scroll-cue { display: none; }
  .section { padding: 80px 0; }
  .bento { grid-template-columns: 1fr; grid-template-areas: "a" "b" "c" "d"; }
  .bento-card { min-height: 280px !important; padding: 28px; }
  .bento-card.a { min-height: 380px !important; }
  .bento-card.a .visual { width: 70%; }
  .bento-card.d .split { grid-template-columns: 1fr; }
  .centres-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .spec-tile { padding: 24px 20px; min-height: 240px; }
  .spec-tile .ic-spec { width: 32px; height: 32px; margin: 16px 0; }
  .spec-tile h4 { font-size: 1.15rem; }
  .process { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); padding: 36px 0; }
  .step:last-child { border-bottom: none; }
  .stats-band { padding: 48px 24px; margin: 0 8px; border-radius: var(--r-lg); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-grid .stat-big:nth-child(1), .stats-grid .stat-big:nth-child(2) { border-bottom: 1px solid rgba(15,32,56,.08); padding-bottom: 24px; }
  .approche { padding: 80px 0; margin: 0 8px; border-radius: var(--r-lg); }
  .approche .container { padding: 0 24px; }
  .value-item { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .value-item::before { grid-column: 1; }
  .value-item h4 { grid-column: 1; }
  .value-item p { grid-column: 1; }
  .value-item .go { grid-column: 1; justify-self: start; }
  .quote-block { padding: 80px 0; }
  .cta-band { padding: 0 8px; }
  .cta-inner { padding: 60px 28px; border-radius: var(--r-lg); }
  .cta-card { padding: 28px; }
  .cta-card .row .v { font-size: 1rem; }
  .contact-form-wrap { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-send { flex-direction: column; }
  .footer { padding: 80px 0 32px; margin-top: 40px; }
  .footer-huge { font-size: clamp(1.4rem, 5.5vw, 2rem); padding-bottom: 28px; margin-bottom: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .map-section { padding: 0 8px; }
  .map-inner { border-radius: var(--r-lg); }
  .map-stats { grid-template-columns: 1fr 1fr; }
  .soon-grid { grid-template-columns: 1fr; }
  .coming-soon { padding: 100px 0 90px; }
  .soon-card { min-height: 220px; padding: 28px 24px; }
  .waitlist-band { padding: 36px 24px; margin-top: 56px; }
  .filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .filter-chip { flex-shrink: 0; }
  .showcase-wrap { padding: 0 20px; }
  .showcase { grid-template-columns: 1fr; gap: 12px; }
  .page-header { padding: 130px 0 80px; }
}


/* ============================================= */
/* === MOBILE OPTIMIZATIONS (v2) =============== */
/* ============================================= */

/* Kill hover effects on touch devices — they cause stuck states on tap */
@media (hover: none) {
  .btn:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-sage:hover,
  .spec-tile:hover,
  .showcase figure:hover,
  .showcase figure:hover img,
  .showcase figure:hover video,
  .centre-card:hover,
  .bento-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Prevent horizontal overflow anywhere on mobile */
@media (max-width: 720px) {
  html, body { overflow-x: hidden; }
  img, video, svg { max-width: 100%; }

  /* Navigation — bigger tap targets */
  .nav-burger { width: 48px; height: 48px; }
  .nav-burger span { width: 20px; }
  .nav-brand .name { font-size: 1.15rem; }
  .nav-brand img { width: 36px; height: 36px; }

  /* Hero — tighter, more mobile-native */
  .hero-inner { padding: 24px 20px 48px; }
  .hero-title { font-size: clamp(2.6rem, 11vw, 4rem); letter-spacing: -0.025em; }
  .hero-top { gap: 16px; }
  .hero-sub { font-size: 1rem; line-height: 1.55; }
  .hero-actions { width: 100%; gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; padding: 14px 20px; font-size: 0.84rem; }
  .hero-body { gap: 24px; }

  /* Sections — reduce vertical padding */
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); line-height: 1.05; }
  .section-head p { font-size: 0.98rem; }

  /* Specs grid — 1 col on phones */
  .specs-grid { grid-template-columns: 1fr; gap: 14px; }
  .spec-tile { min-height: auto; padding: 22px 20px; }
  .spec-tile h4 { font-size: 1.2rem; }
  .spec-tile p { font-size: 0.9rem; }
  .spec-tile .ic-spec { width: 28px; height: 28px; margin: 12px 0; }

  /* Bento — slightly shorter cards */
  .bento { gap: 10px; }
  .bento-card { min-height: 240px !important; padding: 24px; border-radius: var(--r-lg); }
  .bento-card.a { min-height: 340px !important; }
  .bento-card h3 { font-size: 1.6rem !important; }

  /* Stats — 2 cols is fine, tune sizes */
  .stats-band { padding: 40px 20px; }
  .stat-big .v { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .stat-big .unit { font-size: 0.78rem; }
  .stat-big .l { font-size: 0.8rem; line-height: 1.4; }

  /* Approche (navy section) */
  .approche { padding: 64px 0; }
  .approche .container { padding: 0 20px; }
  .value-item { padding: 24px 0; }
  .value-item h4 { font-size: 1.15rem; }
  .value-item p { font-size: 0.9rem; line-height: 1.55; }

  /* Process steps */
  .process { gap: 0; }
  .step { padding: 28px 0; }
  .step h4 { font-size: 1.15rem; }
  .step p { font-size: 0.88rem; }

  /* Quote */
  .quote-block blockquote { font-size: clamp(1.3rem, 6vw, 1.8rem); line-height: 1.3; }

  /* CTA */
  .cta-inner { padding: 48px 24px; }
  .cta-inner h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .cta-card { padding: 24px 20px; }

  /* Showcase captions — smaller */
  .showcase figcaption .label { font-size: 1rem; }
  .showcase figcaption .tag { font-size: 0.62rem; padding: 3px 8px; }
  .showcase figcaption { bottom: 14px; left: 16px; right: 16px; }

  /* Footer */
  .footer { padding: 64px 0 28px; }
  .footer-huge { font-size: clamp(1.3rem, 6vw, 1.9rem); padding-bottom: 24px; margin-bottom: 28px; }
  .footer-grid { margin-bottom: 40px; }
  .footer h5 { font-size: 0.68rem; margin-bottom: 14px; }
  .footer li { font-size: 0.88rem; margin-bottom: 10px; }
  .footer-brand p { font-size: 0.9rem; }

  /* Map section — lighter on mobile */
  .map-inner { min-height: auto; }
  .map-text { padding: 48px 24px; }
  .map-text h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .map-text p { font-size: 0.95rem; margin-bottom: 28px; }
  .map-stat .v { font-size: 1.8rem; }
  .map-visual { min-height: 380px; }
  .map-locations { gap: 14px; }
  .map-loc .city { font-size: 0.68rem; }
  .map-loc .addr { font-size: 0.88rem; }

  /* Contact form */
  .contact-form-wrap { padding: 24px 20px; }
  .contact-form-wrap h3 { font-size: 1.3rem; }
  .field input, .field textarea, .field select { font-size: 16px; /* prevent iOS zoom */ }

  /* Page headers */
  .page-header h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
  .page-header p { font-size: 1rem; }

  /* Eyebrows */
  .eyebrow { font-size: 0.68rem; }
}

/* Extra-small phones (≤380px) */
@media (max-width: 380px) {
  .hero-title { font-size: 2.2rem; }
  .hero-inner { padding: 20px 16px 40px; }
  .section { padding: 56px 0; }
  .container, .container-narrow { padding: 0 16px; }
  .bento-card { padding: 20px; }
  .spec-tile { padding: 20px 16px; }
  .footer-huge { font-size: 1.2rem; }
  .btn { padding: 13px 18px; font-size: 0.82rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-grid .stat-big { border-bottom: 1px solid rgba(15,32,56,.08); padding-bottom: 20px; }
  .stats-grid .stat-big:last-child { border-bottom: none; padding-bottom: 0; }
}

/* Safe-area insets for notched devices */
@supports (padding: max(0px)) {
  .nav { padding-top: max(0px, env(safe-area-inset-top)); }
  .footer { padding-bottom: max(28px, env(safe-area-inset-bottom)); }
}
