/* Lepoku Oy — marketing site v1
   Tokens and components follow the Claude Design sheet "1a — Components + style sheet". */

:root {
  --bg: #060606;
  --surface: #101010;
  --card: #141414;
  --gold: #C9962F;
  --gold-light: #F0D68E;
  --gold-deep: #8C6116;
  --text: #F4F1EA;
  --text-soft: #CFC9BD;
  --muted: #A39E95;
  --dim: #6E6A64;
  --dimmer: #5f5b55;
  --hairline: rgba(201, 150, 47, 0.18);
  --hairline-strong: rgba(201, 150, 47, 0.3);
  --hairline-white: rgba(255, 255, 255, 0.06);
  --gold-gradient: linear-gradient(135deg, #8C6116, #C9962F 40%, #F0D68E 65%, #C9962F);

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --page-max: 1440px;
  --gutter: 120px;
  --header-h: 88px;
  --section: 130px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { background: var(--bg); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

a { color: var(--gold); text-decoration: none; transition: color 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease); }
a:hover { color: var(--gold-light); }
::selection { background: rgba(201, 150, 47, 0.35); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; }

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  padding: 10px 16px; background: var(--gold); color: var(--bg); border-radius: 8px;
  font-family: var(--font-display); font-weight: 600;
}
.skip-link:focus { top: 16px; color: var(--bg); }

/* ---------- Layout ---------- */
.page { max-width: var(--page-max); margin: 0 auto; position: relative; }
.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding-top: var(--section); }
.section--flush { padding-top: 0; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.display {
  font-family: var(--font-display); font-size: 64px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.08; color: var(--text);
}
.h1, .h2 {
  font-family: var(--font-display); font-size: 48px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.1; color: var(--text);
}
.h3 { font-family: var(--font-display); font-size: 32px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.h4 { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.lead { font-size: 17px; line-height: 1.65; color: var(--muted); }
.mono-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--dim); }
.mono-list { font-family: var(--font-mono); font-size: 13px; line-height: 2.1; color: var(--muted); }
.mono-list p { margin: 0; }
.mono-gold { font-family: var(--font-mono); font-size: 13px; color: var(--gold); }
.placeholder { color: var(--dim); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1.2;
  text-align: center; cursor: pointer; border: 0;
  transition: filter 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}
.btn--primary { background: var(--gold-gradient); color: var(--bg); }
.btn--primary:hover { filter: brightness(1.14); color: var(--bg); }
.btn--secondary { padding: 13px 27px; border: 1px solid rgba(201, 150, 47, 0.5); color: var(--gold); background: transparent; }
.btn--secondary:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(201, 150, 47, 0.07); }
.btn--small { padding: 11px 22px; font-size: 14px; }
.btn--small.btn--secondary { padding: 10px 21px; }
.btn--block { display: block; width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: default; filter: none; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; }
.text-link { color: var(--gold); font-size: 15px; font-weight: 500; }
.text-link:hover { color: var(--gold-light); }
.text-link--sm { font-size: 14px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg); border-bottom: 1px solid var(--hairline);
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.header__inner {
  max-width: var(--page-max); margin: 0 auto; height: var(--header-h);
  padding: 0 48px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand__mark { width: 42px; height: auto; display: block; }
.brand__word {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  letter-spacing: 0.3em; color: var(--text);
  transition: opacity 200ms var(--ease);
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 14px; color: var(--muted); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.header__cta { flex-shrink: 0; }
.burger {
  display: none; background: none; border: 0; padding: 12px 0 12px 12px; cursor: pointer;
  flex-direction: column; gap: 6px; min-width: 44px; min-height: 44px; align-items: flex-end; justify-content: center;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); }

/* Header over the home hero: transparent, mark only, until the hero scrolls away. */
.header--overlay { position: fixed; left: 0; right: 0; background: transparent; border-bottom-color: transparent; }
.header--overlay .brand__word { opacity: 0; }
.header--overlay.is-scrolled { background: var(--bg); border-bottom-color: var(--hairline); }
.header--overlay.is-scrolled .brand__word { opacity: 1; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 60; display: none;
}
.drawer[data-open="true"] { display: block; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(6, 6, 6, 0.85); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(300px, 86vw);
  background: var(--bg); border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-direction: column; padding: 20px 24px 24px;
  transform: translateX(100%); transition: transform 280ms var(--ease);
}
.drawer[data-open="true"] .drawer__panel { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; height: 24px; }
.drawer__close { background: none; border: 0; color: var(--muted); font-size: 24px; line-height: 1; cursor: pointer; min-width: 44px; min-height: 44px; margin-right: -12px; }
.drawer__links { display: flex; flex-direction: column; gap: 22px; margin-top: 48px; }
.drawer__links a { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--text); }
.drawer__links a[aria-current="page"] { color: var(--gold); }
.drawer__ctas { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.drawer__ctas .btn { padding: 13px 0; font-size: 14px; }

/* ---------- Hero (desktop layout) ---------- */
.hero { position: relative; overflow: hidden; min-height: 100svh; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__layer { position: absolute; inset: 0; pointer-events: none; }
.hero__scrim { background: linear-gradient(90deg, rgba(6,6,6,0.85) 0%, rgba(6,6,6,0.55) 40%, transparent 62%); }
.hero__fade { background: linear-gradient(180deg, #060606 0%, transparent 22%, transparent 65%, #060606 100%); }
.hero__killer { background: radial-gradient(60% 40% at 22% 88%, rgba(6,6,6,0.85), transparent 70%); }
.hero__glow { display: none; background: radial-gradient(ellipse at 50% 62%, rgba(201,150,47,0.09) 0%, transparent 62%); }
.hero__content { position: relative; z-index: 1; padding: 306px var(--gutter) 140px; }
.hero__title { margin-top: 22px; max-width: 624px; }
.hero__lead { font-size: 18px; line-height: 1.65; color: var(--text-soft); margin-top: 26px; max-width: 520px; }
.hero__ctas { margin-top: 44px; }
.hero__mark { display: none; width: 52px; }

/* Fallback (sheet 2a): render failed → solid black + faint gold glow, centred layout */
.hero--fallback .hero__bg, .hero--fallback .hero__scrim, .hero--fallback .hero__fade, .hero--fallback .hero__killer { display: none; }
.hero--fallback .hero__glow { display: block; }
.hero--fallback .hero__content { text-align: center; padding-top: 216px; padding-bottom: 235px; }
.hero--fallback .hero__title { max-width: 860px; margin-left: auto; margin-right: auto; }
.hero--fallback .hero__lead { max-width: 560px; margin-left: auto; margin-right: auto; color: var(--muted); }
.hero--fallback .hero__ctas { justify-content: center; }

/* ---------- Mid-page image band (home) ---------- */
.band { position: relative; }
.band__bg { position: absolute; inset: 0; overflow: hidden; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.band__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, #060606 0%, rgba(6,6,6,0.45) 12%, rgba(6,6,6,0.62) 30%, rgba(6,6,6,0.90) 47%, #060606 62%);
}
.band > .section { position: relative; z-index: 1; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card {
  background: var(--card); border: 1px solid var(--hairline); border-radius: 12px;
  padding: 36px 32px; display: flex; flex-direction: column;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.card--glass { background: rgba(14, 14, 14, 0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-color: rgba(201,150,47,0.22); }
.card--glass:hover { border-color: rgba(201,150,47,0.45); background: rgba(20,20,20,0.82); }
.card__icon { width: 26px; height: 26px; }
.card__title { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.01em; margin-top: 22px; }
.card__body { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 12px; }
.card__link { margin-top: 22px; }
.card__price { margin-top: 28px; border-top: 1px solid var(--hairline); padding-top: 18px; font-family: var(--font-mono); font-size: 13px; color: var(--gold); }
.card--tight .card__title { margin-top: 0; font-size: 22px; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-head .h2 { margin-top: 20px; }
.section-head .text-link { white-space: nowrap; padding-bottom: 8px; }

/* ---------- Timeline (first two weeks) ---------- */
.timeline { position: relative; margin-top: 64px; }
.timeline::before { content: ""; position: absolute; top: 13px; left: 8px; right: 8px; height: 1px; background: rgba(201,150,47,0.25); }
.timeline__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.pill {
  display: inline-block; position: relative; z-index: 1;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--gold);
  background: var(--bg); border: 1px solid rgba(201,150,47,0.4); border-radius: 999px; padding: 5px 12px;
}
.timeline__title { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-top: 20px; }
.timeline__body { font-size: 14px; line-height: 1.6; color: var(--muted); margin-top: 8px; }
.timeline__list { display: none; }

/* ---------- Why (stat-style columns) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 48px; }
.why { border-top: 1px solid var(--hairline-strong); padding-top: 26px; }
.why__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.why__body { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 12px; }

/* ---------- CTA band ---------- */
.cta-band {
  margin-top: 140px; background: var(--surface);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 110px var(--gutter); text-align: center;
}
.cta-band .lead { max-width: 540px; margin: 22px auto 0; }
.cta-band .btn-row { margin-top: 42px; }
.cta-band--plain { background: var(--bg); border-bottom: 0; margin-top: 0; padding: 100px var(--gutter); }
.cta-band--plain .btn-row { margin-top: 38px; }

/* ---------- Footer ---------- */
.footer { padding: 76px var(--gutter) 44px; }
.footer__grid { display: grid; grid-template-columns: 1fr auto auto; gap: 140px; }
.footer__mark { width: 48px; }
.footer__word { font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: 0.3em; margin-top: 18px; }
.footer__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold); margin-top: 8px; }
.footer__col .mono-label { display: block; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a, .footer__links span { font-size: 14px; color: var(--muted); }
.footer__links a:hover { color: var(--text); }
.footer__links a.is-gold { color: var(--gold); }
.footer__links a.is-gold:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid var(--hairline-white); margin-top: 60px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--dim);
}
.footer__bottom .mono { font-family: var(--font-mono); }

/* Compact footer (Services / Approach / Contact) */
.footer--compact {
  border-top: 1px solid var(--hairline); padding: 32px var(--gutter);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer--compact .brand__mark { width: 30px; }
.footer--compact .brand__word { font-size: 12px; letter-spacing: 0.28em; }
.footer--compact .mono { font-family: var(--font-mono); font-size: 12px; color: var(--dim); }
.footer--compact .mono a { color: var(--dim); }
.footer--compact .mono a:hover { color: var(--text); }

/* ---------- Services page ---------- */
.pillar { display: grid; grid-template-columns: 480px 1fr; gap: 88px; align-items: start; }
.pillar--flip { grid-template-columns: 1fr 480px; }
.pillar--flip .pillar__text { order: 2; }
.pillar__text .h3 { margin-top: 18px; }
.pillar__text .lead { font-size: 16px; margin-top: 18px; }
.pillar__text .mono-label { display: block; margin-top: 32px; }
.pillar__text .mono-label + * { margin-top: 10px; }
.pillar__text .mono-label ~ .mono-label { margin-top: 28px; }
.frame { background: var(--card); border: 1px solid var(--hairline); border-radius: 12px; overflow: hidden; }
.frame__bar { height: 36px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--hairline); }
.frame__bar span { width: 8px; height: 8px; border-radius: 50%; background: #2a2a2a; }
.frame img { width: 100%; height: 360px; object-fit: cover; object-position: center; }
.frame__placeholder {
  height: 360px; display: flex; align-items: center; justify-content: center; padding: 24px; text-align: center;
  background: var(--surface) repeating-linear-gradient(45deg, rgba(244,241,234,0.028) 0 10px, transparent 10px 20px);
  font-family: var(--font-mono); font-size: 11px; line-height: 1.7; color: var(--dim);
}
.stack {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px 40px; margin-top: 40px;
  font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.04em; color: var(--dim);
}
.stack span { white-space: nowrap; }

/* ---------- Approach page ---------- */
.step {
  display: grid; grid-template-columns: 300px 1fr; gap: 80px;
  padding: 80px var(--gutter); border-bottom: 1px solid var(--hairline);
}
.step:first-of-type { padding-top: 100px; }
.step:last-of-type { border-bottom: 0; }
.step__num { font-family: var(--font-mono); font-size: 56px; color: rgba(201,150,47,0.35); line-height: 1; }
.step__title { margin-top: 18px; }
.step__cols { display: grid; grid-template-columns: 1fr 300px; gap: 64px; }
.step__cols p.lead { font-size: 16px; line-height: 1.7; margin-top: 14px; max-width: 560px; }
.step__cols .mono-list { line-height: 2; margin-top: 14px; }
.step__cols .mono-label--gap { display: block; margin-top: 24px; }
.step__cols .mono-gold { margin-top: 10px; }

.principles { background: var(--surface); border-top: 1px solid var(--hairline); padding: 110px var(--gutter); }
.principles__list { margin-top: 24px; }
.principle {
  display: grid; grid-template-columns: 340px 1fr; gap: 64px; padding: 30px 0;
  border-top: 1px solid var(--hairline);
}
.principle:last-child { border-bottom: 1px solid var(--hairline); }
.principle__title { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.principle__body { font-size: 15px; line-height: 1.65; color: var(--muted); align-self: center; max-width: 560px; }

/* ---------- Contact page ---------- */
.contact { display: grid; grid-template-columns: 1fr 520px; gap: 96px; align-items: start; padding-top: 110px; }
.contact__intro .h1 { line-height: 1.12; max-width: 520px; }
.contact__intro .lead { margin-top: 24px; max-width: 460px; }
.contact__channels { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; margin-top: 56px; max-width: 520px; }
.channel { display: flex; gap: 16px; align-items: flex-start; }
.channel__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px; background: var(--card);
  border: 1px solid rgba(201,150,47,0.25); display: flex; align-items: center; justify-content: center;
}
.channel__label { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.channel__value { font-family: var(--font-mono); font-size: 14px; color: var(--muted); margin-top: 6px; }
.channel__value a { color: var(--muted); }
.channel__value a:hover { color: var(--gold-light); }

.form { border-left: 1px solid var(--hairline); padding-left: 64px; }
.form__fields { display: flex; flex-direction: column; gap: 22px; }
.field label { display: block; font-size: 15px; color: var(--text); margin-bottom: 10px; transition: color 160ms; }
.field:focus-within label { color: var(--gold); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--surface); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 14px 16px; font: inherit; font-size: 15px; color: var(--text); line-height: 1.4;
  transition: border-color 160ms var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #b0563a; }
.field__error { display: none; font-size: 13px; color: #d9836a; margin-top: 8px; }
.field.is-invalid .field__error { display: block; }
.form .btn { margin-top: 6px; padding: 16px 0; border-radius: 10px; }
.form__status { font-size: 14px; color: var(--muted); margin-top: 16px; min-height: 1.4em; }
.form__status.is-success { color: var(--gold-light); }
.form__status.is-error { color: #d9836a; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.booking { padding: 110px var(--gutter) 100px; }
.booking__slot {
  margin-top: 32px; min-height: 320px; border: 1px dashed rgba(201,150,47,0.28); border-radius: 12px;
  background: var(--surface) repeating-linear-gradient(45deg, rgba(244,241,234,0.028) 0 10px, transparent 10px 20px);
  display: flex; align-items: center; justify-content: center; padding: 20px; text-align: center;
  font-family: var(--font-mono); font-size: 11px; line-height: 1.7; color: var(--dim);
}

/* ---------- Mobile-only pieces ---------- */
.stats-strip { display: none; }
.only-mobile { display: none !important; }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity 240ms ease-out, transform 240ms ease-out; }
.reveal.is-visible { opacity: 1; transform: none; }
.hairline-draw { position: relative; }
.hairline-draw::before { transform-origin: left; transform: scaleX(0); transition: transform 480ms var(--ease); }
.hairline-draw.is-visible::before { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hairline-draw::before { transform: none; transition: none; }
  .drawer__panel { transition: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1200px) {
  :root { --gutter: 64px; --section: 110px; }
  .display { font-size: 56px; }
  .pillar, .pillar--flip { grid-template-columns: 1fr 1fr; gap: 56px; }
  .step { grid-template-columns: 220px 1fr; gap: 48px; }
  .step__cols { grid-template-columns: 1fr; gap: 32px; }
  .contact { grid-template-columns: 1fr 440px; gap: 64px; }
  .footer__grid { gap: 80px; }
  .stack { grid-template-columns: repeat(4, 1fr); }
  .timeline__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
}

@media (max-width: 899px) {
  :root { --gutter: 24px; --header-h: 64px; --section: 72px; }
  body { font-size: 15px; }
  .only-mobile { display: block !important; }
  .only-desktop { display: none !important; }

  .header__inner { padding: 0 20px; }
  .brand__mark { width: 34px; }
  .brand__word { font-size: 13px; letter-spacing: 0.26em; }
  .nav, .header__cta { display: none; }
  .burger { display: flex; }

  .eyebrow { font-size: 11px; }
  .display { font-size: 38px; line-height: 1.12; }
  .h1, .h2 { font-size: 34px; line-height: 1.15; }
  .h3 { font-size: 24px; letter-spacing: -0.01em; }
  .h4, .card__title { font-size: 20px; }
  .lead { font-size: 15px; line-height: 1.6; }

  .btn { padding: 15px 20px; min-height: 48px; }
  .btn--secondary { padding: 14px 20px; }
  .btn-row { flex-direction: column; gap: 12px; }
  .btn-row .btn { display: block; width: 100%; }

  /* Hero, sheet 3a: crop without lockup, real mark above headline, header mark only */
  .hero { min-height: 700px; }
  .hero__bg img { object-position: 62% 50%; }
  .hero__scrim { background: rgba(6,6,6,0.4); }
  .hero__fade { background: linear-gradient(180deg, #060606 0%, rgba(6,6,6,0.2) 26%, rgba(6,6,6,0.45) 62%, #060606 100%); }
  .hero__killer { display: none; }
  .hero__content { padding: 160px 24px 64px; }
  .hero__mark { display: block; }
  .hero__eyebrow { display: none; }
  .hero__title { margin-top: 24px; }
  .hero__lead { font-size: 16px; margin-top: 18px; }
  .hero__ctas { margin-top: 32px; }
  .hero--fallback .hero__content { text-align: left; padding: 160px 24px 64px; }
  .hero--fallback .hero__title, .hero--fallback .hero__lead { margin-left: 0; margin-right: 0; }

  .stats-strip {
    display: flex; justify-content: space-between; gap: 12px; padding: 24px;
    border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  }
  .stats-strip__value { font-family: var(--font-mono); font-size: 16px; color: var(--gold); }
  .stats-strip__label { font-size: 11px; color: var(--dim); margin-top: 4px; }

  .band__bg { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head .h2 { display: none; }
  .card-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px !important; }
  .card { padding: 26px 24px; }
  .card--glass { background: var(--card); backdrop-filter: none; border-color: var(--hairline); }
  .card__icon { width: 24px; height: 24px; }
  .card__title { margin-top: 16px; }
  .card__body { font-size: 14px; margin-top: 8px; }
  .card__link { margin-top: 14px; }

  .timeline { margin-top: 24px; }
  .timeline::before, .timeline__grid, .timeline-heading { display: none; }
  .timeline__list { display: flex; flex-direction: column; gap: 20px; }
  .timeline__row { display: flex; gap: 14px; align-items: baseline; }
  .timeline__row .pill { flex-shrink: 0; font-size: 11px; padding: 3px 9px; }
  .timeline__row strong { font-family: var(--font-display); font-size: 16px; font-weight: 600; }
  .timeline__row span { font-size: 13px; color: var(--muted); }
  .timeline__more { margin-top: 24px; }

  .why-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 28px; }
  .cta-band { margin-top: 72px; padding: 64px 24px; }
  .cta-band .h2 { font-size: 30px; }
  .cta-band .lead { display: none; }
  .cta-band .btn-row { margin-top: 28px; }
  .cta-band--plain { padding: 56px 24px; }
  .cta-band--plain .h2 { font-size: 26px; }

  .footer { padding: 44px 24px 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__mark { width: 40px; }
  .footer__word { font-size: 13px; letter-spacing: 0.28em; margin-top: 14px; }
  .footer__tag { font-size: 9px; }
  .footer__col .mono-label { display: none; }
  .footer__links { flex-direction: row; flex-wrap: wrap; gap: 10px 20px; }
  .footer__links a, .footer__links span { font-size: 13px; }
  .footer__bottom { margin-top: 24px; padding-top: 16px; font-family: var(--font-mono); font-size: 10px; line-height: 1.8; display: block; }
  .footer--compact { padding: 20px 24px; }
  .footer--compact .mono { font-size: 10px; }

  .pillar, .pillar--flip { grid-template-columns: 1fr; gap: 24px; }
  .pillar--flip .pillar__text { order: 0; }
  .pillar__text .h3 { margin-top: 14px; }
  .pillar__text .lead { margin-top: 14px; }
  .pillar__text .mono-label { margin-top: 24px; }
  .mono-list { font-size: 12px; line-height: 2; }
  .frame__bar { height: 30px; padding: 0 14px; gap: 6px; }
  .frame__bar span { width: 7px; height: 7px; }
  .frame img, .frame__placeholder { height: 180px; }
  .stack { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; font-size: 13px; margin-top: 24px; }
  .card--tight { padding: 22px 24px; }
  .card--tight .card__title { font-size: 18px; }
  .card--tight .card__body { display: none; }
  .card--tight .card__price { margin-top: 10px; border-top: 0; padding-top: 0; font-size: 12px; }

  .step { grid-template-columns: 1fr; gap: 24px; padding: 48px 24px; }
  .step:first-of-type { padding-top: 56px; }
  .step__num { font-size: 40px; }
  .step__title { margin-top: 10px; }
  .principles { padding: 64px 24px; }
  .principle { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .principle__title { font-size: 20px; }

  .contact { grid-template-columns: 1fr; gap: 44px; padding-top: 56px; }
  .contact__intro .h1 { font-size: 32px; }
  .contact__intro .lead { margin-top: 14px; }
  .contact__channels { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .channel { align-items: center; gap: 14px; }
  .channel.only-mobile { display: flex !important; }
  .channel__icon { width: 44px; height: 44px; }
  .channel__label { font-size: 15px; }
  .channel__value { font-size: 12px; margin-top: 3px; }
  .form { border-left: 0; padding-left: 0; border-top: 1px solid var(--hairline); padding-top: 28px; }
  .form__fields { gap: 18px; }
  .field label { font-size: 14px; margin-bottom: 8px; }
  .field input, .field textarea { padding: 13px 14px; font-size: 14px; }
  .field textarea { min-height: 100px; }
  .booking { padding: 56px 24px 64px; }
  .booking .h3 { font-size: 20px; }
  .booking__slot { margin-top: 18px; min-height: 220px; font-size: 10px; }
}
