/* =========================================================
   OMEGA HEALTH + FITNESS — Athletic-luxe design system
   Type: Cormorant Garamond (display) + Hanken Grotesk (sans)
   ========================================================= */

:root {
  /* Brand */
  --o-blue: #5b7fa6;
  --o-blue-deep: #3f5d80;
  --o-rose: #b08185;
  --o-rose-deep: #8e5f63;
  --gradient-mark: linear-gradient(135deg, var(--o-blue) 0%, var(--o-rose) 100%);

  /* Neutrals — warm */
  --ink: #0e0e10;
  --ink-soft: #1c1c20;
  --charcoal: #2a2a2e;
  --pewter: #6a6a6e;
  --silver: #a8a8ac;
  --bone: #e9e5de;
  --paper: #f5f2ed;
  --paper-warm: #ebe6dd;
  --white: #ffffff;

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Spacing */
  --pad: clamp(20px, 4vw, 64px);
  --gutter: clamp(16px, 2.4vw, 32px);

  --maxw: 1440px;
  --maxw-text: 720px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ============ Type ============ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pewter);
}
.eyebrow.on-dark { color: var(--silver); }
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 999px;
  background: var(--gradient-mark); margin-right: 10px; vertical-align: middle;
  transform: translateY(-1px);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 7.4vw, 120px); }
h2 { font-size: clamp(34px, 5.2vw, 76px); line-height: 1.04; }
h3 { font-size: clamp(24px, 2.6vw, 36px); line-height: 1.15; }
h4 { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.2; font-weight: 600; font-family: var(--font-sans); letter-spacing: 0; }

.display-italic { font-style: italic; font-weight: 400; }
.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--charcoal);
  font-weight: 400;
  text-wrap: pretty;
  max-width: 60ch;
}
.on-dark .lead, section.dark .lead, .dark .lead { color: #cfcfd3; }

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pewter);
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* ============ Layout primitives ============ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
section { padding: clamp(64px, 9vw, 140px) 0; position: relative; }
section.tight { padding: clamp(48px, 6vw, 80px) 0; }

.dark { background: var(--ink); color: var(--bone); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--white); }
.dark .eyebrow { color: var(--silver); }
.paper-warm { background: var(--paper-warm); }
.bone { background: var(--bone); }

.split {
  display: grid;
  gap: clamp(32px, 5vw, 80px);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .split.two { grid-template-columns: 1fr 1fr; align-items: center; } }
@media (min-width: 880px) { .split.titled { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } }
@media (min-width: 880px) { .split.titled-tight { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); align-items: end; } }

.divider { height: 1px; background: rgba(14,14,16,0.12); border: 0; margin: 0; }
.dark .divider { background: rgba(255,255,255,0.12); }

/* ============ Brand: image logo ============ */
.brand-logo { height: 84px; width: auto; display: block; }
@media (max-width: 600px) { .brand-logo { height: 58px; } }

/* ============ Founders ============ */
.founders-grid {
  display: grid; gap: clamp(28px, 3vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .founders-grid { grid-template-columns: 1fr 1fr; } }
.founder {
  display: grid; gap: clamp(20px, 2vw, 28px);
  grid-template-columns: 1fr;
}
.founder .portrait {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: var(--bone);
  filter: grayscale(0.05);
}
.founder h3 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 48px); margin: 0; }
.founder .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pewter); margin-top: 6px; }
.founder p { margin-top: 14px; color: var(--charcoal); }

/* ============ Top nav ============ */
.topbar {
  background: var(--ink);
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 9px 0;
}
.topbar .wrap { display: flex; gap: 24px; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.topbar a { color: var(--bone); }
.topbar a:hover { color: var(--white); }
.topbar .left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar .right { display: flex; gap: 18px; align-items: center; }
.topbar svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245, 242, 237, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(14,14,16,0.08);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 116px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.brand-text .sub {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pewter);
  margin-top: 3px;
}

.nav-list { display: none; gap: 26px; align-items: center; }
@media (min-width: 1060px) { .nav-list { display: flex; } }
.nav-list > li { position: relative; list-style: none; }
.nav-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 28px 2px;
  display: inline-block;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--o-rose-deep); }
.has-menu > .nav-link::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-3px); margin-left: 8px; opacity: 0.55;
}

.submenu {
  position: absolute; top: 100%; left: -16px;
  background: var(--white);
  border: 1px solid rgba(14,14,16,0.08);
  box-shadow: 0 20px 50px rgba(14,14,16,0.10);
  min-width: 260px;
  padding: 14px;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.has-menu:hover .submenu, .has-menu:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu li { list-style: none; }
.submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-radius: 2px;
}
.submenu a:hover { background: var(--paper); color: var(--o-rose-deep); }
.submenu .sub-title {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pewter);
  padding: 8px 14px 4px;
}

.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Mobile nav */
.nav-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(14,14,16,0.16);
  background: transparent; padding: 10px 14px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; border-radius: 999px;
}
@media (min-width: 1060px) { .nav-toggle { display: none; } }
.nav-toggle .bars { display: inline-flex; flex-direction: column; gap: 3px; }
.nav-toggle .bars span { width: 16px; height: 1.5px; background: var(--ink); display: block; }

.mobile-nav {
  position: fixed; inset: 0; background: var(--ink); color: var(--bone);
  z-index: 100; padding: 28px var(--pad); overflow-y: auto;
  display: none;
}
.mobile-nav.open { display: block; }
.mobile-nav .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav .col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
  margin: 24px 0 10px;
  font-weight: 500;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav ul li a {
  display: block; padding: 14px 0;
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: var(--white);
}
.mobile-nav .close {
  background: transparent; color: var(--bone); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 10px 14px; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; cursor: pointer;
}
.mobile-nav .ctas { display: flex; gap: 10px; margin-top: 28px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; transition: all .18s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--ink); color: var(--white);
}
.btn-primary:hover { background: var(--o-rose-deep); }

.btn-light {
  background: var(--white); color: var(--ink);
  border: 1px solid rgba(14,14,16,0.08);
}
.btn-light:hover { background: var(--ink); color: var(--white); }

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(14,14,16,0.22);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.dark .btn-ghost { color: var(--bone); border-color: rgba(255,255,255,0.28); }
.dark .btn-ghost:hover { background: var(--white); color: var(--ink); }

.btn-gradient {
  background: var(--gradient-mark); color: var(--white);
}
.btn-gradient:hover { filter: brightness(1.08); }

.btn-small { padding: 11px 18px; font-size: 11px; letter-spacing: 0.14em; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.text-link .arrow { transition: transform .2s ease; }
.text-link:hover .arrow { transform: translateX(4px); }

/* ============ Hero ============ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  padding: clamp(36px, 4.5vw, 64px) 0 clamp(64px, 8vw, 120px);
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid; gap: clamp(32px, 4vw, 60px);
  grid-template-columns: 1fr;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: end; }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(54px, 9vw, 148px);
  letter-spacing: -0.02em;
  line-height: 0.94;
}
.hero h1 em { font-style: italic; color: transparent; background: var(--gradient-mark); -webkit-background-clip: text; background-clip: text; }
.hero .lead { color: #cfcfd3; max-width: 44ch; font-size: clamp(17px, 1.4vw, 20px); }
.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.hero-meta .item { border-left: 1px solid rgba(255,255,255,0.16); padding-left: 16px; }
.hero-meta .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); }
.hero-meta .val { font-family: var(--font-display); font-size: 22px; margin-top: 4px; color: var(--white); }

.hero-glow {
  position: absolute; pointer-events: none;
  width: 1100px; height: 1100px; right: -340px; top: -260px;
  background: radial-gradient(closest-side, rgba(176,129,133,0.36), rgba(91,127,166,0.22) 45%, transparent 70%);
  filter: blur(20px); opacity: 0.85; z-index: 1;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image: radial-gradient(rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 3px 3px; mix-blend-mode: overlay; z-index: 1;
}

/* Page banner (for inner pages) */
.banner {
  background: var(--ink); color: var(--bone);
  padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 96px);
  position: relative; overflow: hidden;
}
.banner .wrap { position: relative; z-index: 2; }
.banner h1 { color: var(--white); font-size: clamp(48px, 7.4vw, 110px); }
.banner .lead { color: #cfcfd3; max-width: 56ch; margin-top: 18px; }
.banner .breadcrumb { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); margin-bottom: 22px; }
.banner .breadcrumb a:hover { color: var(--white); }
.banner .breadcrumb span { color: var(--pewter); margin: 0 8px; }

/* Service banner gets photo right */
.banner.with-photo .grid {
  display: grid; gap: clamp(32px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 940px) {
  .banner.with-photo .grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}
.banner.with-photo .photo {
  height: clamp(280px, 36vw, 460px);
  background-size: cover; background-position: center;
  border-radius: 2px;
  position: relative; overflow: hidden;
}
.banner.with-photo .photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91,127,166,0.18), rgba(176,129,133,0.18));
  mix-blend-mode: overlay;
}

/* ============ Cards / lists ============ */
.cards {
  display: grid; gap: clamp(20px, 2.4vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid rgba(14,14,16,0.06);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: all .25s ease;
}
.card:hover { border-color: rgba(14,14,16,0.18); transform: translateY(-2px); }
.card h3 { font-family: var(--font-display); font-size: clamp(22px, 2vw, 28px); }
.card p { color: var(--charcoal); font-size: 15px; line-height: 1.55; }
.card .num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--pewter);
}
.card .arrow-cta {
  margin-top: auto; padding-top: 16px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
  color: var(--o-rose-deep);
}
.card .arrow-cta .arrow { transition: transform .2s ease; }
.card:hover .arrow-cta .arrow { transform: translateX(4px); }

/* Service tile: layered, no border */
.service-tile {
  background: var(--white);
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(14,14,16,0.1);
  padding: clamp(32px, 3.6vw, 52px) clamp(24px, 2.4vw, 40px);
  position: relative; transition: background 0.2s ease;
}
.service-tile:hover { background: rgba(14,14,16,0.02); }
.service-tile .row { display: grid; grid-template-columns: 140px 1fr auto; gap: clamp(20px, 3vw, 48px); align-items: center; }
.service-tile .num { font-family: var(--font-display); font-size: clamp(40px, 4.4vw, 72px); font-weight: 400; color: var(--pewter); line-height: 1; letter-spacing: -0.02em; font-style: italic; }
.service-tile h3 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 44px); transition: color .2s ease; }
.service-tile p { color: var(--charcoal); margin-top: 6px; max-width: 60ch; }
.service-tile .arrow-cta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--pewter); white-space: nowrap; padding-left: clamp(16px, 2vw, 32px); }
.service-tile:hover h3 { color: var(--o-rose-deep); }
.service-tile:hover .arrow-cta { color: var(--ink); }
@media (max-width: 760px) {
  .service-tile .row { grid-template-columns: 1fr; gap: 10px; }
  .service-tile .num { font-size: 44px; }
  .service-tile .arrow-cta { margin-top: 12px; padding-left: 0; }
}
#services .service-tile .row { grid-template-columns: 1fr auto; }
@media (max-width: 760px) { #services .service-tile .row { grid-template-columns: 1fr; } }

/* Feature tile (dark bg) */
.feature-tile {
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.06);
  padding: clamp(28px, 3vw, 44px);
  color: var(--bone);
  display: flex; flex-direction: column; gap: 14px;
}
.feature-tile h3 { color: var(--white); }
.feature-tile p { color: #c2c2c6; }

/* ============ Photo blocks ============ */
.photo-block {
  background-size: cover; background-position: center;
  border-radius: 2px;
  position: relative; overflow: hidden;
}
.photo-block.tall { aspect-ratio: 4 / 5; }
.photo-block.wide { aspect-ratio: 16 / 10; }
.photo-block.full { min-height: clamp(360px, 48vw, 640px); }
.photo-frame {
  position: relative;
  padding: 0;
}
.photo-frame .caption {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(14,14,16,0.78); color: var(--white);
  padding: 8px 12px; font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
}

/* Marquee strip */
.marquee {
  background: var(--ink); color: var(--bone);
  padding: 26px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  font-style: italic;
  color: var(--bone);
}
.marquee-track .dot { color: var(--o-rose); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Reviews ============ */
.review-card {
  background: var(--white);
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid rgba(14,14,16,0.06);
  display: flex; flex-direction: column; gap: 18px;
  height: 100%;
}
.stars { display: inline-flex; gap: 2px; color: #d4a045; font-size: 16px; letter-spacing: 1px; }
.review-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.32;
  font-weight: 500;
  color: var(--ink);
}
.review-card .meta { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--gradient-mark);
  color: var(--white); display: grid; place-items: center;
  font-weight: 600; font-size: 14px;
}
.review-card .who .name { font-weight: 600; font-size: 14px; }
.review-card .who .when { font-size: 12px; color: var(--pewter); }
a.review-card-more {
  text-decoration: none;
  background: var(--ink, #0e0e10);
  border-color: rgba(255,255,255,0.08);
  transition: transform .25s ease;
}
a.review-card-more:hover { transform: translateY(-3px); }
a.review-card-more blockquote { color: var(--white, #fff); }
a.review-card-more .more-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white, #fff); font-weight: 600;
}
a.review-card-more .more-link .arrow { transition: transform .25s ease; }
a.review-card-more:hover .more-link .arrow { transform: translateX(4px); }

/* ============ Stats ============ */
.stats {
  display: grid; gap: clamp(20px, 2.4vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.stat .num em { font-style: italic; background: var(--gradient-mark); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pewter);
  margin-top: 10px;
}
.dark .stat .label { color: var(--silver); }

/* ============ Forms ============ */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pewter);
}
.input, .textarea, .select {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(14,14,16,0.16);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.textarea { min-height: 140px; resize: vertical; }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--o-blue-deep);
  box-shadow: 0 0 0 3px rgba(91,127,166,0.18);
}
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

/* Newsletter */
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 0;
  background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.32);
  color: var(--white); padding: 14px 0;
  font-family: var(--font-sans); font-size: 16px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-bottom-color: var(--white); }
.newsletter-form button {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.32);
  padding: 12px 22px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; transition: all .15s ease;
}
.newsletter-form button:hover { background: var(--white); color: var(--ink); }
#newsletter .newsletter-form input { color: var(--ink); border-bottom-color: rgba(0,0,0,0.2); }
#newsletter .newsletter-form input::placeholder { color: rgba(0,0,0,0.35); }
#newsletter .newsletter-form input:focus { border-bottom-color: var(--ink); }
#newsletter .newsletter-form button { color: var(--ink); border-color: rgba(0,0,0,0.24); }
#newsletter .newsletter-form button:hover { background: var(--ink); color: var(--white); }

/* ============ FAQ ============ */
.faq { border-top: 1px solid rgba(14,14,16,0.1); }
.faq details {
  border-bottom: 1px solid rgba(14,14,16,0.1);
  padding: 24px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px);
  font-weight: 500; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-display); font-size: 28px; font-weight: 400;
  color: var(--o-rose-deep); transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { margin-top: 14px; color: var(--charcoal); max-width: 70ch; font-size: 16px; }

/* ============ Conditions chips ============ */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid rgba(14,14,16,0.1);
  font-size: 13px; color: var(--ink);
  transition: all .15s ease;
}
.chip:hover { border-color: var(--o-rose-deep); color: var(--o-rose-deep); }
.dark .chip { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.14); color: var(--bone); }
.dark .chip:hover { background: var(--o-rose-deep); border-color: var(--o-rose-deep); color: var(--white); }

/* ============ Footer ============ */
footer.site {
  background: var(--ink); color: var(--bone);
  padding: clamp(64px, 8vw, 110px) 0 32px;
}
footer.site .col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin: 0 0 18px;
  font-weight: 500;
}
footer.site .grid {
  display: grid; gap: clamp(40px, 5vw, 64px);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { footer.site .grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
footer.site ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
footer.site a { color: var(--bone); font-size: 14px; }
footer.site a:hover { color: var(--white); }
footer.site .brand-text .name { color: var(--white); }
footer.site .brand-text .sub { color: var(--silver); }
footer.site p.tag {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
  margin: 22px 0 32px;
  max-width: 14ch;
}
footer.site .legal {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px;
  font-size: 12px; color: var(--silver);
}
footer.site .legal a { font-size: 12px; color: var(--silver); }
footer.site .legal > div:first-child { line-height: 1.9; }
footer.site .legal a:hover { color: var(--white); }
footer.site .socials { display: flex; gap: 12px; margin-top: 8px; }
footer.site .socials a {
  display: grid; place-items: center;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px; transition: all .15s ease;
}
footer.site .socials a:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
footer.site .socials svg { width: 14px; height: 14px; }

footer.site .hours li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 14px; color: var(--bone);
}
footer.site .hours li span { color: var(--silver); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; }

/* ============ Misc ============ */
.float-cta {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  display: none;
}
@media (min-width: 760px) { .float-cta { display: inline-flex; } footer.site { padding-bottom: 120px; } }
.float-cta .btn { box-shadow: 0 12px 30px rgba(14,14,16,0.2); }

/* Map iframe */
.map {
  width: 100%; height: 100%; min-height: 360px;
  border: 0; filter: grayscale(0.6) contrast(0.95);
}

/* Video embed */
.video-wrap {
  position: relative; aspect-ratio: 16 / 9;
  background: var(--ink); overflow: hidden;
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Two-col content list */
.bullets {
  display: grid; gap: 18px 32px;
  grid-template-columns: 1fr;
  list-style: none; padding: 0; margin: 0;
}
@media (min-width: 720px) { .bullets.two { grid-template-columns: 1fr 1fr; } }
.bullets li {
  font-size: 15px; line-height: 1.5;
  color: var(--charcoal);
  padding: 14px 0; border-top: 1px solid rgba(14,14,16,0.08);
}
.dark .bullets li { color: #cfcfd3; border-top-color: rgba(255,255,255,0.1); }

/* CTA section */
.cta-band {
  background: var(--ink); color: var(--bone);
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; pointer-events: none;
  width: 700px; height: 700px; left: -200px; bottom: -300px;
  background: radial-gradient(closest-side, rgba(91,127,166,0.35), transparent 70%);
  filter: blur(20px);
}
.cta-band::after {
  content: ""; position: absolute; pointer-events: none;
  width: 700px; height: 700px; right: -200px; top: -300px;
  background: radial-gradient(closest-side, rgba(176,129,133,0.35), transparent 70%);
  filter: blur(20px);
}
.cta-band .wrap { position: relative; z-index: 2; display: grid; gap: 36px; grid-template-columns: 1fr; align-items: end; }
@media (min-width: 880px) { .cta-band .wrap { grid-template-columns: 7fr 5fr; } }
.cta-band h2 { color: var(--white); }

/* ============ Accessibility ============ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Section title (used commonly) */
.section-title { display: grid; gap: 18px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-title h2 { max-width: 16ch; }
.section-title .lead { max-width: 56ch; }

@media (max-width: 760px) {
  .hero-meta .item { padding-left: 14px; }
  .hero-meta .val { font-size: 18px; }
}
