/* ==========================================================================
   Luma Biohacking Resort — Designer C — "Futuristic Zen"
   Tokens: Base Black / Deep Jungle / Soft Jade / Bio-Light / Nude / Medical White
   Type: Onest (sans) + Cormorant (display serif) — prod target: TT Hoves Pro + Roca One Light
   Grid: 8pt spacing scale · Type scale ×1.333
   ========================================================================== */

:root {
  /* ---- brand colour tokens (RGB source, see манифест.md) ---- */
  --black:        #0A0A0A;   /* Base Black   10,10,10   — 60% */
  --jungle:       #004B49;   /* Deep Jungle  0,75,73    — surfaces */
  --jungle-soft:  #0A5654;   /* Deep Jungle, lifted one notch for layered surfaces */
  --jade:         #739B98;   /* Soft Jade    115,155,152 — decorative only, never text-on-dark */
  --bio:          #A7C0DE;   /* Bio-Light    167,192,222 — accent */
  --nude:         #D1C2AF;   /* Nude         209,194,175 — warm secondary accent */
  --white:        #FFFFFF;   /* Medical White 255,255,255 — text, via alpha */

  /* ---- semantic tokens ---- */
  --text-onblack:      rgba(255,255,255,.92);
  --text-onblack-dim:  rgba(255,255,255,.62);
  --text-onblack-faint:rgba(255,255,255,.38);
  --text-onlight:      var(--black);
  --text-onlight-dim:  rgba(10,10,10,.64);

  --bg:            var(--black);
  --surface:       var(--jungle);
  --surface-soft:  var(--jungle-soft);
  --hairline:      rgba(255,255,255,.10);
  --hairline-jungle: rgba(255,255,255,.14);

  /* ---- type ---- */
  --f-sans: "Onest", "Golos Text", system-ui, sans-serif;
  --f-serif: "Cormorant", "Prata", Georgia, serif;

  --fs-00: 0.8125rem;   /* 13px  captions / meta */
  --fs-0:  1rem;        /* 16px  body */
  --fs-1:  1.125rem;    /* 18px  lede */
  --fs-2:  1.333rem;    /* 21px  h4 / lead-in */
  --fs-3:  1.777rem;    /* 28px  h3 */
  --fs-4:  2.369rem;    /* 38px  h2 */
  --fs-5:  3.158rem;    /* 50px  h2 large */
  --fs-6:  4.209rem;    /* 67px  hero step */
  --fs-7:  5.61rem;     /* 90px  hero max */

  /* ---- 8pt spacing scale ---- */
  --sp-1: 0.5rem;   /* 8px */
  --sp-2: 1rem;     /* 16px */
  --sp-3: 1.5rem;   /* 24px */
  --sp-4: 2rem;     /* 32px */
  --sp-5: 3rem;     /* 48px */
  --sp-6: 4rem;     /* 64px */
  --sp-7: 6rem;     /* 96px */
  --sp-8: 8rem;     /* 128px */

  --radius-card: 1.25rem;
  --radius-control: 0.625rem;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(.16,.8,.28,1);
  --dur-fast: .2s;
  --dur-med: .5s;
}

/* ========================================================================
   Reset & base
   ======================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-onblack);
  font-family: var(--f-sans);
  font-size: var(--fs-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

.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;
}

.skip-link {
  position: fixed; top: -100%; left: var(--sp-2); z-index: 999;
  background: var(--bio); color: var(--black);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--radius-control);
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: var(--sp-2); }

:focus-visible {
  outline: 2px solid var(--bio);
  outline-offset: 3px;
}

.wrap {
  max-width: 76.5rem; /* 1224px */
  margin-inline: auto;
  padding-inline: var(--sp-3);
}
.wrap-narrow { max-width: 46rem; }

@media (min-width: 640px) {
  .wrap { padding-inline: var(--sp-5); }
}

.eyebrow {
  font-family: var(--f-sans);
  font-size: var(--fs-00);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bio);
  margin: 0 0 var(--sp-2);
}
.eyebrow-onhero { color: var(--nude); }
.eyebrow-onjungle { color: var(--bio); }

.h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(var(--fs-4), 4vw + 1rem, var(--fs-5));
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-onblack);
  max-width: 20ch;
  margin-bottom: var(--sp-3);
}
.h3-onjungle {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(var(--fs-3), 2.6vw + 1rem, var(--fs-4));
  line-height: 1.16;
  color: var(--text-onblack);
  max-width: 22ch;
  margin-bottom: var(--sp-3);
}
.lede {
  font-size: var(--fs-1);
  color: var(--text-onblack-dim);
  max-width: 62ch;
  margin-bottom: var(--sp-4);
}
.lede-onjungle { color: rgba(255,255,255,.72); }

.section-head { max-width: 42rem; margin-bottom: var(--sp-6); }

.fine-print {
  font-size: var(--fs-00);
  color: var(--text-onblack-faint);
  max-width: 62ch;
  margin-top: var(--sp-3);
}

/* ========================================================================
   Buttons
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-0);
  font-weight: 600;
  min-height: 44px;
  transition: transform var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--bio);
  color: var(--black);
}
.btn-primary:hover { background: #b9cee7; transform: translateY(-1px); }

.btn-onlight {
  background: var(--white);
  color: var(--black);
}
.btn-onlight:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(0,0,0,.35); }

.btn-ghost-onlight {
  background: transparent;
  color: var(--text-onblack);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.btn-ghost-onlight:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); transform: translateY(-1px); }

.btn-ghost-onjungle {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.btn-ghost-onjungle:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.6); transform: translateY(-1px); }

.btn-text-onhero {
  background: none;
  color: var(--text-onblack);
  padding-inline: 0;
  font-weight: 500;
}
.btn-text-onhero:hover { color: var(--nude); }

.btn-text-onjungle {
  background: none;
  color: rgba(255,255,255,.8);
  padding-inline: 0;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: .2em;
}

/* ========================================================================
   Header / nav
   ======================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.bar {
  max-width: 76.5rem;
  margin-inline: auto;
  padding: var(--sp-2) var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
@media (min-width: 640px) { .bar { padding-inline: var(--sp-5); } }

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-right: auto;
}
.brand-mark {
  width: 1.75rem;
  height: 1.4125rem;
  fill: none;
  stroke: var(--bio);
  stroke-width: 16;
  flex: none;
}
.brand-word {
  font-family: var(--f-serif);
  font-size: var(--fs-2);
  letter-spacing: .02em;
  color: var(--text-onblack);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-word em {
  font-style: normal;
  font-family: var(--f-sans);
  font-size: 0.5625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-onblack-faint);
}

.primary-nav {
  display: none;
  align-items: center;
  gap: var(--sp-4);
}
.primary-nav a {
  position: relative;
  font-size: var(--fs-00);
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text-onblack-dim);
  padding-block: var(--sp-1);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--bio);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-out);
}
.primary-nav a:hover { color: var(--text-onblack); }
.primary-nav a:hover::after { transform: scaleX(1); }

.bar-actions { display: flex; align-items: center; gap: var(--sp-2); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: .4em;
  font-size: var(--fs-00);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-onblack-faint);
  padding: .25rem .5rem;
}
.lang-switch .lang-en, .lang-switch .lang-ru { transition: color var(--dur-fast) var(--ease-out); }
.lang-switch[aria-pressed="false"] .lang-en { color: var(--text-onblack); }
.lang-switch[aria-pressed="true"] .lang-ru { color: var(--text-onblack); }

.nav-book { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.hamburger span {
  width: 20px;
  height: 1.5px;
  background: var(--text-onblack);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--hairline);
}
.mobile-nav a {
  padding: var(--sp-2) var(--sp-1);
  font-size: var(--fs-1);
  color: var(--text-onblack-dim);
}
.mobile-nav .btn { margin-top: var(--sp-2); justify-content: center; }

@media (min-width: 960px) {
  .primary-nav { display: flex; }
  .nav-book { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ========================================================================
   Hero
   ======================================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.62) 38%, rgba(10,10,10,.28) 62%, rgba(0,75,73,.22) 100%);
}

.hero-pulse {
  position: absolute;
  left: 50%;
  top: 22%;
  width: min(70rem, 130vw);
  height: auto;
  transform: translateX(-50%);
  fill: none;
  stroke: var(--bio);
  stroke-width: 2.4;
  opacity: .5;
  z-index: 1;
  pointer-events: none;
}
.hero-pulse use {
  stroke-dasharray: 3400;
  stroke-dashoffset: 3400;
  animation: pulse-draw 2.8s var(--ease-out) .3s forwards, pulse-breathe 6s ease-in-out 3.4s infinite;
}

@keyframes pulse-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes pulse-breathe {
  0%, 100% { opacity: .35; }
  50% { opacity: .68; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--sp-8);
  padding-top: var(--sp-8);
}
.hero-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(var(--fs-5), 6vw + 1rem, var(--fs-7));
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-bottom: var(--sp-3);
}
.hero-lede {
  font-size: var(--fs-1);
  color: rgba(255,255,255,.82);
  max-width: 46ch;
  margin-bottom: var(--sp-4);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
}

/* ========================================================================
   Section seams — ambient heartbeat divider
   ======================================================================== */
.seam {
  height: 3.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seam-pulse {
  width: min(60rem, 140vw);
  height: 3.5rem;
  fill: none;
  stroke: var(--jade);
  stroke-width: 5;
  opacity: .3;
  animation: pulse-breathe 7s ease-in-out infinite;
}

/* ========================================================================
   Sections — generic
   ======================================================================== */
.section { padding-block: var(--sp-7); position: relative; }
.manifesto { padding-bottom: 0; }
.manifesto .wrap { text-align: left; }

/* ========================================================================
   Stay / unit cards
   ======================================================================== */
.unit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-2);
}
@media (min-width: 720px) {
  .unit-grid { grid-template-columns: 1fr 1.15fr; align-items: stretch; }
}

.unit-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,.6);
  display: flex;
  flex-direction: column;
}
.unit-card-feature { background: var(--surface-soft); }
.unit-media { aspect-ratio: 4 / 3; overflow: hidden; }
.unit-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.unit-card:hover .unit-media img { transform: scale(1.04); }
.unit-body { padding: var(--sp-4); }
.unit-eyebrow {
  font-size: var(--fs-00);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-1);
}
.unit-name {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: var(--fs-4);
  margin-bottom: var(--sp-1);
}
.unit-specs {
  color: rgba(255,255,255,.72);
  margin-bottom: var(--sp-3);
}
.unit-price { font-size: var(--fs-1); color: var(--nude); }
.unit-price strong { font-family: var(--f-serif); font-size: var(--fs-3); font-weight: 500; color: var(--white); margin-inline: .15em; }

/* ========================================================================
   Booking widget
   ======================================================================== */
.booking {
  margin-top: var(--sp-7);
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: var(--sp-5) var(--sp-4);
}
@media (min-width: 640px) { .booking { padding: var(--sp-6); } }

.booking-head { max-width: 40rem; margin-bottom: var(--sp-4); }
.h3-onjungle {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(var(--fs-3), 2.4vw + 1rem, var(--fs-4));
  line-height: 1.2;
  color: var(--white);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 720px) {
  .booking-form { grid-template-columns: repeat(4, 1fr); align-items: end; }
  .booking-submit { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: var(--sp-1); }
.field label {
  font-size: var(--fs-00);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-control);
  padding: 0.75rem 0.875rem;
  min-height: 44px;
  color: var(--white);
}
.field input::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--bio);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.6) 50%), linear-gradient(135deg, rgba(255,255,255,.6) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px; background-repeat: no-repeat; }

.field-stepper .stepper {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-control);
  min-height: 44px;
}
.stepper-btn { width: 44px; min-height: 44px; font-size: var(--fs-2); color: var(--white); }
.stepper input {
  flex: 1;
  text-align: center;
  background: none;
  border: 0;
  color: var(--white);
  min-height: 44px;
  width: 2rem;
}

.booking-submit { margin-top: var(--sp-2); }

.booking-result {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hairline-jungle);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}
.booking-result-lines dl,
.booking-result-lines p { margin: 0; }
.booking-result-line {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: var(--fs-1);
  color: rgba(255,255,255,.8);
  padding-block: .2rem;
}
.booking-result-line strong { color: var(--white); font-family: var(--f-serif); font-size: var(--fs-2); font-weight: 500; }
.booking-result-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.booking-note { margin-top: var(--sp-3); color: var(--nude); font-size: var(--fs-00); }

/* ========================================================================
   Wellness grid
   ======================================================================== */
.wellness-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
@media (min-width: 720px) {
  .wellness-grid { grid-template-columns: repeat(3, 1fr); }
  .wellness-photo-wide { grid-column: 1 / -1; }
}
.wellness-photo { position: relative; border-radius: var(--radius-card); overflow: hidden; }
.wellness-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.wellness-photo-wide img { aspect-ratio: 21/9; }
.wellness-photo figcaption {
  position: absolute;
  left: var(--sp-3);
  bottom: var(--sp-3);
  right: var(--sp-3);
  font-size: var(--fs-00);
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

.feature-callout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
}
@media (min-width: 720px) {
  .feature-callout { grid-template-columns: 1.1fr 1fr; }
}
.feature-callout-media { aspect-ratio: 16/10; }
.feature-callout-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-callout-body { padding: var(--sp-5); display: flex; flex-direction: column; justify-content: center; }
.feature-callout-body p:not(.eyebrow-onjungle) { color: rgba(255,255,255,.76); max-width: 42ch; }

/* ========================================================================
   Clinic
   ======================================================================== */
.clinic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 860px) {
  .clinic-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
}
.clinic-media img { border-radius: var(--radius-card); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.clinic-caption { font-size: var(--fs-00); color: var(--text-onblack-faint); margin-top: var(--sp-2); max-width: 34ch; }

.clinic-menu { margin-top: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-1); }
.clinic-group {
  border-top: 1px solid var(--hairline);
  padding-block: var(--sp-3);
}
.clinic-group:last-child { border-bottom: 1px solid var(--hairline); }
.clinic-group summary {
  cursor: pointer;
  font-family: var(--f-serif);
  font-size: var(--fs-3);
  font-weight: 400;
  color: var(--text-onblack);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clinic-group summary::-webkit-details-marker { display: none; }
.clinic-group summary::after {
  content: "+";
  font-family: var(--f-sans);
  font-size: var(--fs-2);
  color: var(--bio);
  transition: transform var(--dur-fast) var(--ease-out);
}
.clinic-group[open] summary::after { content: "–"; }
.clinic-group ul { margin-top: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-2); }
.clinic-group li {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--fs-0);
  padding-block: var(--sp-1);
}
.clinic-meta { color: var(--text-onblack-faint); font-size: var(--fs-00); text-align: right; }

/* ========================================================================
   Location
   ======================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 860px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}
.poi-list { display: flex; flex-direction: column; margin-bottom: var(--sp-4); }
.poi-list li {
  display: flex;
  justify-content: space-between;
  padding-block: var(--sp-2);
  border-top: 1px solid var(--hairline);
  color: var(--text-onblack-dim);
}
.poi-list li:last-child { border-bottom: 1px solid var(--hairline); }
.poi-list strong { color: var(--text-onblack); font-weight: 500; }

.location-map svg { width: 100%; height: auto; }
.map-coast { fill: none; stroke: var(--jade); stroke-width: 2; opacity: .55; }
.map-dot { fill: var(--nude); }
.map-dot-home { fill: var(--bio); }
.map-label { font-family: var(--f-sans); font-size: 11px; fill: rgba(255,255,255,.6); }
.map-label-home { fill: var(--bio); font-weight: 600; }

/* ========================================================================
   Trust
   ======================================================================== */
.trust-list {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sp-5);
}
.trust-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-block: var(--sp-3);
  border-top: 1px solid var(--hairline);
}
.trust-list li:last-child { border-bottom: 1px solid var(--hairline); }
.trust-name { font-family: var(--f-serif); font-size: var(--fs-2); color: var(--text-onblack); }
.trust-role { color: var(--text-onblack-faint); font-size: var(--fs-00); text-transform: uppercase; letter-spacing: .08em; align-self: center; }

.invest-line { color: var(--text-onblack-dim); }
.invest-line a { color: var(--nude); text-decoration: underline; text-underline-offset: .2em; }

/* ========================================================================
   Contact
   ======================================================================== */
.contact { background: var(--surface); }
.enquiry-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
@media (min-width: 640px) {
  .enquiry-form { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1 / -1; }
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--fs-00);
  color: rgba(255,255,255,.68);
}
.checkbox-label input { margin-top: .2rem; width: 18px; height: 18px; accent-color: var(--bio); }
.contact-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; margin-top: var(--sp-2); }

.enquiry-confirm {
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.06);
  color: var(--white);
  max-width: 42rem;
}

/* ========================================================================
   Footer
   ======================================================================== */
.site-footer { padding-block: var(--sp-6) var(--sp-4); border-top: 1px solid var(--hairline); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand { display: flex; flex-direction: column; gap: var(--sp-2); max-width: 26ch; }
.footer-brand .brand-mark { width: 2rem; height: 1.615rem; }
.footer-brand p { color: var(--text-onblack-faint); font-size: var(--fs-00); }
.footer-heading { font-size: var(--fs-00); text-transform: uppercase; letter-spacing: .1em; color: var(--text-onblack-faint); margin-bottom: var(--sp-2); }
.footer-col { display: flex; flex-direction: column; gap: var(--sp-1); }
.footer-col a { color: var(--text-onblack-dim); font-size: var(--fs-00); padding-block: .2rem; }
.footer-col a:hover { color: var(--text-onblack); }
.footer-bottom { border-top: 1px solid var(--hairline); padding-top: var(--sp-3); }
.footer-bottom p { color: var(--text-onblack-faint); font-size: var(--fs-00); }

/* ========================================================================
   Reduced motion — freeze everything to end-state
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-pulse use { animation: none !important; stroke-dashoffset: 0; }
  .seam-pulse { animation: none !important; opacity: .3; }
  .skip-link, .btn, .primary-nav a::after, .hamburger span, .unit-media img {
    transition: none !important;
  }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
