/* =========================================================
   24x7DBA - site.css
   Brand teal #0E8A78 with a green "on" signal, ink navy panels.
   Type: Rubik (display, logo), Inter (body), JetBrains Mono (figures, time slots).
   ========================================================= */

:root {
  /* brand */
  --brand: #0E8A78;
  --accent: #0E8A78;          /* links, eyebrows, icons */
  --accent-strong: #0A6B5D;   /* hover */
  --btn: #0E8A78;
  --btn-hover: #0B7263;
  --live: #16A34A;            /* the "on" dot: availability, next slot */
  --signal: #E8801A;          /* urgent / on-call marker */

  /* ground & surfaces */
  --paper: #F5F9F8;
  --surface: #FFFFFF;
  --surface-2: #ECF3F1;
  --tint: #E2F1ED;
  --panel: #0B1F2E;           /* dark panels, footer */
  --panel-2: #10293B;
  --panel-text: #F1F6F5;
  --panel-muted: #A3B8C2;
  --panel-line: #24425A;

  /* text */
  --heading: #0B1F2E;
  --ink: #17272F;
  --slate: #51646D;
  --muted: #7A8B94;

  /* lines */
  --line: #D8E2E0;
  --line-strong: #BBCBC7;

  /* status */
  --ok: #1B9A57;
  --warn: #D6890A;
  --crit: #D23A2E;
  --ok-bg: #E3F5EA;
  --warn-bg: #FBF0DA;
  --crit-bg: #FBE4E1;

  --shadow: 0 14px 40px rgba(11, 31, 46, .12);
  --shadow-soft: 0 2px 10px rgba(11, 31, 46, .06);
  --radius: 8px;

  --font-display: 'Rubik', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', Consolas, 'Courier New', monospace;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --accent: #4FD1B8;
    --accent-strong: #7FE0CC;
    --btn: #13A08B;
    --btn-hover: #17B39B;
    --live: #34D399;
    --paper: #0A1720;
    --surface: #0F1F2A;
    --surface-2: #142834;
    --tint: #12303A;
    --panel: #0C1C27;
    --panel-2: #12293A;
    --panel-text: #F1F6F5;
    --panel-muted: #A3B8C2;
    --panel-line: #274659;
    --heading: #EEF5F3;
    --ink: #DCE7E4;
    --slate: #A3B6BC;
    --muted: #82959D;
    --line: #223744;
    --line-strong: #34505F;
    --ok: #3FC27A;
    --warn: #F0AB2E;
    --crit: #F0685C;
    --ok-bg: #123322;
    --warn-bg: #3A2A0C;
    --crit-bg: #3E1814;
    --shadow: 0 14px 40px rgba(0, 0, 0, .45);
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, .3);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --accent: #4FD1B8;
  --accent-strong: #7FE0CC;
  --btn: #13A08B;
  --btn-hover: #17B39B;
  --live: #34D399;
  --paper: #0A1720;
  --surface: #0F1F2A;
  --surface-2: #142834;
  --tint: #12303A;
  --panel: #0C1C27;
  --panel-2: #12293A;
  --panel-text: #F1F6F5;
  --panel-muted: #A3B8C2;
  --panel-line: #274659;
  --heading: #EEF5F3;
  --ink: #DCE7E4;
  --slate: #A3B6BC;
  --muted: #82959D;
  --line: #223744;
  --line-strong: #34505F;
  --ok: #3FC27A;
  --warn: #F0AB2E;
  --crit: #F0685C;
  --ok-bg: #123322;
  --warn-bg: #3A2A0C;
  --crit-bg: #3E1814;
  --shadow: 0 14px 40px rgba(0, 0, 0, .45);
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, .3);
  color-scheme: dark;
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
code, pre, kbd { font-family: var(--font-mono); }
strong { font-weight: 600; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  margin: 0;
  text-wrap: balance;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(38px, 5vw, 62px); font-weight: 700; line-height: 1.02; }
h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; line-height: 1.08; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.15; }
h4 { font-size: 20px; font-weight: 600; line-height: 1.2; }
.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; color: var(--slate); max-width: 62ch; }
.measure { max-width: 65ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow--signal { color: var(--signal); }
.eyebrow--light { color: var(--panel-muted); }
.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--tint { background: var(--tint); }
.section--surface { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { display: grid; gap: 12px; max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head p { color: var(--slate); font-size: 18px; margin: 0; }
.section-head--split { max-width: none; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: end; gap: 32px; }
.section-head--split p { max-width: 52ch; }
@media (max-width: 800px) { .section-head--split { grid-template-columns: 1fr; } }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.note { font-size: 14px; color: var(--muted); }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--btn); color: #fff; padding: 8px 14px; border-radius: 4px; z-index: 100; }
.skip-link:focus { left: 8px; color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--btn); color: #fff; }
.btn--primary:hover { background: var(--btn-hover); color: #fff; }
.btn--ghost { background: transparent; color: var(--heading); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--light { background: #fff; color: #0B1F2E; }
.btn--light:hover { background: #E2F1ED; color: #0B1F2E; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { border-color: #fff; color: #fff; }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 15px; }
.btn--lg { min-height: 56px; padding: 0 28px; font-size: 17px; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn .dot { width: 8px; height: 8px; }
.textlink { font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.textlink .arrow { transition: transform .15s ease; }
.textlink:hover .arrow { transform: translateX(3px); }

/* ---------- logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--heading); font-size: var(--logo-size, 26px); line-height: 1; }
.logo:hover { color: var(--heading); }
.logo__mark { width: 1.45em; height: 1.45em; flex: none; display: block; }
.logo__word { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; white-space: nowrap; display: inline-flex; align-items: baseline; }
.logo__x { color: var(--live); font-size: .72em; margin: 0 .02em; }
.logo__dba { color: var(--brand); margin-left: .07em; }
.logo__tag { display: block; font-family: var(--font-display); font-weight: 600; font-size: .36em; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .18em; }
.logo--light, .logo--light:hover { color: #fff; }
.logo--light .logo__dba { color: #4FD1B8; }
.logo--light .logo__x { color: #4ADE80; }
.logo--light .logo__tag { color: var(--panel-muted); }
:root[data-theme="dark"] .logo__dba { color: #4FD1B8; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .logo__dba { color: #4FD1B8; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; position: relative; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { display: inline-block; padding: 10px 13px; border-radius: 6px; color: var(--ink); font-weight: 500; font-size: 15.5px; }
.nav a:hover { color: var(--accent); background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--accent); box-shadow: inset 0 -2px 0 var(--accent); border-radius: 0; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 6px;
  background: transparent; color: var(--heading); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 1020px) {
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
  .nav {
    display: none; position: absolute; left: calc(-1 * var(--gutter)); right: calc(-1 * var(--gutter)); top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 8px var(--gutter) 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 17px; }
  .nav a[aria-current="page"] { box-shadow: none; border-left: 3px solid var(--accent); padding-left: 12px; }
  .nav .btn { margin-top: 12px; border-bottom: 0; }
}
@media (min-width: 1021px) { .nav .btn { display: none; } }

/* ---------- status dot ---------- */
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--live); flex: none; position: relative; vertical-align: middle; }
.dot--live::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--live); opacity: .6; animation: ping 1.8s ease-out infinite; }
.dot--off { background: var(--muted); }
.dot--off::after { display: none; }
@keyframes ping { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border-radius: 999px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600; line-height: 1.4;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill--ok { color: var(--ok); background: color-mix(in srgb, var(--ok) 16%, transparent); }
.pill--warn { color: var(--warn); background: color-mix(in srgb, var(--warn) 16%, transparent); }
.pill--crit { color: var(--crit); background: color-mix(in srgb, var(--crit) 16%, transparent); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--line) 55%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--line) 55%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 75% 40%, rgba(0,0,0,.9), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 75% 40%, rgba(0,0,0,.9), transparent 70%);
}
.hero .wrap { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(56px, 7vw, 104px); }
.hero__copy h1 { margin-bottom: 22px; }
.hero__copy h1 em { font-style: normal; color: var(--accent); }
.hero__copy .lead { margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.proof { display: grid; gap: 10px 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); list-style: none; color: var(--slate); font-size: 15px; }
.proof li { display: inline-flex; align-items: flex-start; gap: 9px; }
.proof li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; margin-top: .5em; }
@media (max-width: 960px) { .hero .wrap { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .proof { grid-template-columns: 1fr; } }

/* office status line */
.status-line { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--slate); margin-bottom: 18px; padding: 8px 12px 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.status-line b { color: var(--heading); font-weight: 600; }
.status-line .mono { color: var(--muted); font-size: 13px; }

/* next-slots card */
.slotcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); overflow: hidden;
}
.slotcard__head { display: flex; align-items: center; gap: 10px; padding: 16px 20px; border-bottom: 1px solid var(--line); background: var(--surface-2); font-weight: 600; font-size: 15px; }
.slotcard__head .meta { margin-left: auto; color: var(--muted); font-weight: 400; font-size: 13px; }
.slotcard__body { padding: 20px; display: grid; gap: 14px; }
.slotcard__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--heading); line-height: 1.15; }
.slotcard__title small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 14.5px; color: var(--slate); margin-top: 4px; }
.slotlist { list-style: none; display: grid; gap: 8px; }
.slotlist a {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; color: var(--heading); background: var(--surface);
  transition: border-color .15s ease, background-color .15s ease, transform .15s ease;
}
.slotlist a:hover { border-color: var(--accent); background: var(--tint); transform: translateY(-1px); }
.slotlist .when { font-weight: 600; font-size: 15px; }
.slotlist .when small { display: block; font-weight: 400; font-size: 12.5px; color: var(--muted); font-family: var(--font-mono); }
.slotlist .go { font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 600; }
.slotcard__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 20px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--slate); }

/* ---------- trusted-by strip ---------- */
.trust { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px 32px; align-items: center; }
.trust__label { font-family: var(--font-display); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; white-space: nowrap; }
.trust__label small { display: block; font-family: var(--font-body); font-size: 12.5px; letter-spacing: 0; text-transform: none; font-weight: 400; margin-top: 2px; }
.logos { list-style: none; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.logos li {
  display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 64px; padding: 10px 14px; text-align: center;
  border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
  font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: .01em; color: var(--slate);
}
.logos li small { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 400; color: var(--muted); }
@media (max-width: 900px) { .trust { grid-template-columns: 1fr; } .logos { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .logos { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- situations (who calls us) ---------- */
.situations { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.situation { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 24px; display: grid; gap: 10px; align-content: start; position: relative; }
.situation::before { content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 3px; background: var(--accent); border-radius: 0 0 3px 3px; }
.situation h3 { font-size: 21px; }
.situation p { margin: 0; color: var(--slate); font-size: 15.5px; }
.situation .textlink { font-size: 14.5px; margin-top: 4px; }
.situation--urgent::before { background: var(--signal); }
@media (max-width: 960px) { .situations { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .situations { grid-template-columns: 1fr; } }

/* ---------- service cards ---------- */
.svcs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.svc { display: flex; flex-direction: column; gap: 14px; padding: clamp(24px, 3vw, 34px); border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.svc__num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: .08em; }
.svc h3 { font-size: 26px; }
.svc > p { margin: 0; color: var(--slate); }
.svc ul { list-style: none; display: grid; gap: 8px; font-size: 15px; color: var(--ink); }
.svc ul li { display: flex; gap: 10px; align-items: flex-start; }
.svc ul li::before { content: ""; flex: none; width: 14px; height: 14px; margin-top: 5px; border-radius: 3px; background: var(--accent); clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 22%, 84% 5%, 40% 66%); }
.svc .textlink { margin-top: auto; padding-top: 8px; }
.svc--dark { background: var(--panel); color: var(--panel-text); border-color: var(--panel-line); }
.svc--dark h3 { color: #fff; }
.svc--dark > p { color: var(--panel-muted); }
.svc--dark ul { color: var(--panel-text); }
.svc--dark .textlink { color: #fff; }
.svc--dark .textlink:hover { color: #7FE0CC; }
@media (max-width: 960px) { .svcs { grid-template-columns: 1fr; max-width: 640px; } }

/* ---------- steps ---------- */
.steps { list-style: none; counter-reset: step; display: grid; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 4px 20px; padding: 24px 0; border-top: 1px solid var(--line); }
.steps li > * { grid-column: 2; }
.steps li::before { content: counter(step, decimal-leading-zero); grid-column: 1; grid-row: 1 / span 3; font-family: var(--font-display); font-weight: 800; font-size: 32px; line-height: 1; color: var(--accent); }
.steps--cards li > * { grid-column: auto; }
.steps--cards li::before { grid-column: auto; grid-row: auto; }
.steps h3 { font-size: 24px; margin-bottom: 6px; }
.steps p { margin: 0; color: var(--slate); }
.steps--cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.steps--cards li { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 26px; border: 1px solid var(--line); border-top: 1px solid var(--line); border-radius: 12px; background: var(--surface); align-content: start; }
.steps--cards li::before { font-size: 40px; }
.steps--compact li { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; padding: 14px 0; }
.steps--compact li:first-child { border-top: 0; padding-top: 4px; }
.steps--compact li::before { font-size: 22px; }
.steps--compact h3 { font-size: 19px; margin-bottom: 3px; }
.steps--compact p { font-size: 14.5px; }
@media (max-width: 860px) { .steps--cards { grid-template-columns: 1fr; } }

/* ---------- rates ---------- */
.rates { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.rate { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px 28px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.rate--featured { border-color: var(--accent); box-shadow: var(--shadow); }
.rate__flag { position: absolute; top: -13px; left: 28px; padding: 4px 10px; border-radius: 999px; background: var(--btn); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; }
.rate__name { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1.05; color: var(--heading); }
.rate__for { color: var(--slate); font-size: 15.5px; margin: 0; min-height: 3em; }
.rate__price { display: grid; gap: 2px; }
.rate__price .amt { font-family: var(--font-display); font-weight: 800; font-size: 42px; line-height: 1; color: var(--heading); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.rate__price .amt small { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--slate); margin-left: 6px; letter-spacing: 0; }
.rate__price .per { font-size: 14px; color: var(--slate); }
.rate__kv { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; font-size: 14.5px; padding: 14px 0; border-block: 1px solid var(--line); margin: 0; }
.rate__kv dt { color: var(--muted); }
.rate__kv dd { margin: 0; font-weight: 600; color: var(--heading); text-align: right; font-variant-numeric: tabular-nums; }
.rate__list { list-style: none; display: grid; gap: 9px; font-size: 15px; }
.rate__list li { display: flex; gap: 10px; align-items: flex-start; }
.rate__list li::before { content: ""; flex: none; width: 14px; height: 14px; margin-top: 5px; border-radius: 3px; background: var(--accent); clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 22%, 84% 5%, 40% 66%); }
.rate .btn { margin-top: auto; }
@media (max-width: 960px) { .rates { grid-template-columns: 1fr; max-width: 560px; } }

/* ---------- comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.compare { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 15px; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { background: var(--surface-2); font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--heading); }
.compare thead th:not(:first-child), .compare td { text-align: center; width: 20%; }
.compare tbody th { font-weight: 500; color: var(--ink); }
.compare tbody th small { display: block; color: var(--muted); font-size: 13px; font-weight: 400; }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: 0; }
.compare .yes { color: var(--ok); font-weight: 700; }
.compare .no { color: var(--muted); }
.compare .val { font-weight: 600; color: var(--heading); font-variant-numeric: tabular-nums; }
.compare .sub { display: block; font-weight: 400; font-size: 13px; color: var(--muted); font-family: var(--font-mono); }
.compare .group th { background: var(--tint); font-family: var(--font-display); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); padding: 10px 18px; }

/* ---------- why grid ---------- */
.why { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 32px; }
.why li { border-top: 2px solid var(--line-strong); padding: 20px 0 26px; }
.why li:nth-child(-n+4) { border-top-color: var(--accent); }
.why h3 { font-size: 21px; margin-bottom: 6px; }
.why p { margin: 0; color: var(--slate); font-size: 15px; }
@media (max-width: 960px) { .why { grid-template-columns: repeat(2, minmax(0, 1fr)); } .why li:nth-child(-n+4) { border-top-color: var(--line-strong); } .why li:nth-child(-n+2) { border-top-color: var(--accent); } }
@media (max-width: 560px) { .why { grid-template-columns: 1fr; } .why li:nth-child(-n+2) { border-top-color: var(--line-strong); } .why li:first-child { border-top-color: var(--accent); } }

/* ---------- case / result ---------- */
.case { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: clamp(24px, 3vw, 40px); display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); }
.case__meta { font-family: var(--font-display); font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 600; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; margin-bottom: 12px; }
.case__meta span + span:not(.draft-tag)::before { content: "\00b7"; margin-right: 10px; color: var(--muted); }
.case h3 { font-size: 28px; margin-bottom: 14px; }
.case dl { margin: 0; display: grid; gap: 10px; }
.case dt { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.case dd { margin: 0 0 4px; color: var(--ink); font-size: 15.5px; }
.case__numbers { list-style: none; display: grid; gap: 10px; align-content: start; }
.case__numbers li { background: var(--tint); border-radius: 10px; padding: 16px 16px 14px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px; align-items: center; }
.case__numbers strong { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; color: var(--heading); font-variant-numeric: tabular-nums; min-width: 92px; }
.case__numbers span { font-size: 13.5px; color: var(--slate); line-height: 1.35; display: block; }
.case__quote { border-left: 3px solid var(--accent); padding-left: 14px; font-size: 15.5px; color: var(--slate); font-style: italic; margin: 8px 0 0; }
.case__quote cite { display: block; font-style: normal; font-size: 13.5px; color: var(--muted); margin-top: 6px; }
@media (max-width: 860px) { .case { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { display: grid; }
.faq details { border-top: 1px solid var(--line); padding: 4px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--heading); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 28px; color: var(--accent); font-weight: 400; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--slate); margin: 0 0 18px; max-width: 65ch; }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.person { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px; display: grid; gap: 12px; align-content: start; }
.person__head { display: flex; align-items: center; gap: 16px; }
.avatar { width: 72px; height: 72px; border-radius: 50%; flex: none; object-fit: cover; display: inline-flex; align-items: center; justify-content: center; background: var(--panel); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 26px; }
.person__name { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1; color: var(--heading); margin: 0; }
.person__role { font-size: 14.5px; color: var(--accent); font-weight: 600; margin: 4px 0 0; }
.person p { margin: 0; color: var(--slate); font-size: 15px; }
.person__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.person__tags li { font-size: 12.5px; font-weight: 600; color: var(--heading); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.person--dark { background: var(--panel); color: var(--panel-text); border-color: var(--panel-line); }
.person--dark h3, .person--dark .person__name { color: #fff; }
.person--dark p { color: var(--panel-muted); }
.person--dark .rota { list-style: none; display: grid; gap: 10px; font-size: 14.5px; }
.person--dark .rota li { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 10px; padding-top: 10px; border-top: 1px solid var(--panel-line); }
.person--dark .rota b { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--panel-muted); }
@media (max-width: 900px) { .team { grid-template-columns: 1fr; max-width: 560px; } }

/* ---------- founder message ---------- */
.ceo { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.ceo__portrait { margin: 0; display: grid; gap: 12px; justify-items: start; }
.avatar--xl { width: 180px; height: 180px; border-radius: 16px; font-size: 64px; }
img.avatar--xl { object-fit: cover; }
.ceo__portrait figcaption { font-size: 14.5px; color: var(--slate); line-height: 1.5; }
.ceo__portrait figcaption strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--heading); line-height: 1.1; margin-bottom: 4px; }
.ceo__message h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 20px; }
.ceo__message p { max-width: 62ch; }
.ceo__sign { margin-top: 24px; font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--heading); line-height: 1.2; }
.ceo__sign small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 14.5px; color: var(--slate); margin-top: 4px; }
@media (max-width: 760px) { .ceo { grid-template-columns: 1fr; } }

/* ---------- brand family ---------- */
.family { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 32px; align-items: center; }
.family__list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.family__list a { display: grid; gap: 2px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--heading); font-weight: 600; font-size: 15px; transition: border-color .15s ease; }
.family__list a:hover { border-color: var(--accent); }
.family__list small { font-weight: 400; color: var(--muted); font-size: 12.5px; }
@media (max-width: 860px) { .family { grid-template-columns: 1fr; } }

/* ---------- facts ---------- */
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--surface); margin: 0; }
.facts div { padding: 24px 24px 22px; border-right: 1px solid var(--line); }
.facts div:last-child { border-right: 0; }
.facts dt { font-family: var(--font-display); font-size: 13.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.facts dd { margin: 0; font-size: 17px; font-weight: 500; color: var(--heading); }
.facts dd small { display: block; font-weight: 400; font-size: 14px; color: var(--slate); margin-top: 4px; }
@media (max-width: 900px) { .facts { grid-template-columns: 1fr 1fr; } .facts div:nth-child(2) { border-right: 0; } .facts div:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } .facts div { border-right: 0; border-bottom: 1px solid var(--line); } .facts div:last-child { border-bottom: 0; } }

/* ---------- metrics (page-hero aside) ---------- */
.metrics { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.metrics li { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; font-size: 15px; }
.metrics li strong { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--heading); margin-bottom: 4px; }
.metrics li span { color: var(--slate); font-size: 14.5px; }
.page-hero--dark .metrics li { background: var(--panel-2); border-color: var(--panel-line); }
.page-hero--dark .metrics li strong { color: #fff; }
.page-hero--dark .metrics li span { color: var(--panel-muted); }

/* ---------- CTA band ---------- */
.cta {
  background: var(--panel); color: var(--panel-text); border-block: 1px solid var(--panel-line);
  background-image: radial-gradient(ellipse at 85% 20%, color-mix(in srgb, var(--brand) 60%, transparent), transparent 55%);
}
.cta .wrap { display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: 28px; align-items: center; padding-block: clamp(48px, 6vw, 80px); }
.cta h2 { color: #fff; margin-bottom: 10px; }
.cta p { color: var(--panel-muted); margin: 0; max-width: 56ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 800px) { .cta .wrap { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: var(--panel); color: var(--panel-muted); padding: clamp(48px, 6vw, 72px) 0 28px; font-size: 14.5px; }
.site-footer a { color: var(--panel-text); }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid var(--panel-line); }
.footer-grid h4 { font-family: var(--font-display); font-size: 13.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--panel-muted); font-weight: 600; margin-bottom: 14px; }
.footer-grid ul { list-style: none; display: grid; gap: 9px; }
.footer-brand p { margin: 16px 0 0; max-width: 36ch; }
.footer-address { font-style: normal; margin: 16px 0 0; line-height: 1.7; color: var(--panel-muted); }
.footer-address a { color: var(--panel-text); }
.site-version { font-family: var(--font-mono); font-size: 12.5px; color: var(--panel-muted); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; padding-top: 22px; font-size: 13.5px; }
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- subpage header ---------- */
.page-hero { background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero .wrap { padding-block: clamp(48px, 6vw, 88px); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 40px; align-items: end; }
.page-hero h1 { font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 18px; }
.page-hero .lead { margin: 0; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.page-hero__aside { display: grid; gap: 12px; }
.page-hero--dark { background: var(--panel); color: var(--panel-text); border-bottom-color: var(--panel-line); }
.page-hero--dark h1 { color: #fff; }
.page-hero--dark .lead { color: var(--panel-muted); }
.page-hero--plain .wrap { grid-template-columns: minmax(0, 1fr); }
.page-hero__meta { font-size: 14px; color: var(--muted); margin: 14px 0 0; }
@media (max-width: 900px) { .page-hero .wrap { grid-template-columns: 1fr; } }

/* ---------- generic content blocks ---------- */
.cols-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.cols-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cols-main { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.cols-main--wide { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
@media (max-width: 900px) { .cols-2, .cols-3, .cols-main { grid-template-columns: 1fr; } }
.services { display: grid; }
.service { display: grid; gap: 12px; padding: 32px 0; border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.service:first-child { border-top: 0; padding-top: 0; }
.service h2, .service h3 { font-size: 30px; }
.service > p { margin: 0; color: var(--slate); }
.service ul { list-style: none; display: grid; gap: 7px; font-size: 15.5px; color: var(--ink); }
.service ul li { display: flex; gap: 10px; }
.service ul li::before { content: ""; flex: none; width: 14px; height: 14px; margin-top: 6px; border-radius: 3px; background: var(--accent); clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 22%, 84% 5%, 40% 66%); }
.service__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.service__meta span { font-size: 12.5px; font-weight: 600; color: var(--heading); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 26px; display: grid; gap: 12px; }
.aside-card h3 { font-size: 22px; }
.aside-card p { margin: 0; color: var(--slate); font-size: 15.5px; }
.aside-card ul { list-style: none; display: grid; gap: 8px; font-size: 15px; }
.aside-card--tint { background: var(--tint); border-color: color-mix(in srgb, var(--accent) 22%, transparent); }
.aside-card--dark { background: var(--panel); color: var(--panel-text); border-color: var(--panel-line); }
.aside-card--dark h3 { color: #fff; }
.aside-card--dark p { color: var(--panel-muted); }
.aside-card .btn { justify-self: start; }
.aside-stack { display: grid; gap: 18px; }
.sticky { position: static; }
.toc { list-style: none; display: grid; gap: 6px; font-size: 15px; }
.toc a { color: var(--ink); }
.toc a:hover { color: var(--accent); }
.toc li::before { content: "\2014"; color: var(--line-strong); margin-right: 8px; }

/* ---------- legal & information pages ---------- */
.legal { max-width: 72ch; }
.legal h2 { font-size: 26px; margin: 40px 0 12px; scroll-margin-top: 90px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 21px; margin: 24px 0 8px; }
.legal p { margin: 0 0 14px; }
.legal ul, .legal ol { padding-left: 22px; margin: 0 0 16px; display: grid; gap: 6px; }
.legal li { color: var(--ink); }
.legal table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 0 0 20px; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.legal th { font-weight: 600; color: var(--heading); background: var(--surface-2); }
.legal .table-wrap { margin: 0 0 20px; }
.legal address { font-style: normal; }
.sitemap { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.sitemap h2 { font-size: 22px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); }
.sitemap ul { list-style: none; display: grid; gap: 8px; }
.sitemap ul ul { margin: 6px 0 0 16px; gap: 5px; font-size: 14.5px; }
.sitemap a { color: var(--ink); }
.sitemap a:hover { color: var(--accent); }

/* ---------- language switcher ---------- */
.lang { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 6px; overflow: hidden; }
.lang a { display: inline-block; padding: 8px 10px; font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; letter-spacing: .04em; color: var(--slate); line-height: 1; }
.lang a + a { border-left: 1px solid var(--line-strong); }
.lang a:hover { color: var(--accent); background: var(--surface-2); }
.lang a[aria-current="true"] { color: #fff; background: var(--btn); }

/* ---------- forms ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 14.5px; color: var(--heading); }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  padding: 12px 14px; min-height: 48px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.form__status { font-size: 14.5px; color: var(--slate); }
.form__status[data-state="ok"] { color: var(--ok); font-weight: 600; }
.form__status[data-state="err"] { color: var(--crit); font-weight: 600; }
.contact-lines { list-style: none; display: grid; gap: 14px; }
.contact-lines li { display: grid; gap: 2px; }
.contact-lines .k { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-lines .v { font-size: 17px; font-weight: 500; color: var(--heading); }
.contact-lines .v small { display: block; font-weight: 400; font-size: 14px; color: var(--slate); }

/* ---------- booking widget ---------- */
.booking { display: grid; gap: 26px; }
.booking__step { display: grid; gap: 12px; }
.booking__label { display: flex; align-items: baseline; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--heading); }
.booking__label .n { font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: .06em; }
.booking__label small { font-family: var(--font-body); font-weight: 400; font-size: 14px; color: var(--muted); }
.choices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.choice { position: relative; display: grid; gap: 4px; padding: 16px 16px 14px; border: 1.5px solid var(--line-strong); border-radius: 12px; background: var(--surface); cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease; }
.choice:hover { border-color: var(--accent); }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent); background: var(--tint); }
.choice:has(input:focus-visible) { outline: 3px solid var(--accent); outline-offset: 2px; }
.choice__title { font-weight: 600; color: var(--heading); font-size: 16px; display: grid; gap: 3px; }
.choice__title .mono { font-size: 12.5px; color: var(--accent); font-weight: 600; letter-spacing: .02em; }
.choice__desc { font-size: 14px; color: var(--slate); }
.choice--urgent .choice__title .mono { color: var(--signal); }
.choice--urgent:has(input:checked) { border-color: var(--signal); box-shadow: 0 0 0 3px color-mix(in srgb, var(--signal) 20%, transparent); background: var(--warn-bg); }
@media (max-width: 720px) { .choices { grid-template-columns: 1fr; } }
.days { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 8px; scroll-snap-type: x proximity; }
.days button {
  flex: none; scroll-snap-align: start; display: grid; gap: 2px; justify-items: center; min-width: 84px; padding: 10px 10px 9px;
  border: 1.5px solid var(--line-strong); border-radius: 10px; background: var(--surface); color: var(--heading); cursor: pointer; font: inherit;
  transition: border-color .15s ease, background-color .15s ease;
}
.days button:hover { border-color: var(--accent); }
.days button[aria-pressed="true"] { border-color: var(--accent); background: var(--btn); color: #fff; }
.days button .dow { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; opacity: .8; }
.days button .dom { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1; }
.days button .mon { font-size: 12px; opacity: .8; }
.days button:disabled { opacity: .45; cursor: not-allowed; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 8px; }
.slots button {
  display: grid; gap: 1px; justify-items: center; padding: 10px 8px; border: 1.5px solid var(--line-strong); border-radius: 10px;
  background: var(--surface); color: var(--heading); cursor: pointer; font-family: var(--font-mono); font-size: 15px; font-weight: 500;
  transition: border-color .15s ease, background-color .15s ease;
}
.slots button small { font-family: var(--font-body); font-size: 11.5px; color: var(--muted); }
.slots button:hover { border-color: var(--accent); }
.slots button[aria-pressed="true"] { border-color: var(--accent); background: var(--btn); color: #fff; }
.slots button[aria-pressed="true"] small { color: rgba(255,255,255,.8); }
.slots__empty { grid-column: 1 / -1; color: var(--muted); font-size: 14.5px; padding: 8px 0; }
.tz-note { font-size: 13.5px; color: var(--muted); }
.booking__summary {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px; align-items: center;
  padding: 16px 18px; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 10px; background: var(--surface);
}
.booking__summary .k { font-family: var(--font-display); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.booking__summary .v { font-weight: 600; color: var(--heading); font-size: 16px; }
.booking__summary .v small { display: block; font-weight: 400; color: var(--slate); font-size: 13.5px; font-family: var(--font-mono); }
.booking__summary[data-empty="true"] .v { color: var(--muted); font-weight: 400; }
.booking__done { display: none; gap: 12px; padding: 20px 22px; border: 1px solid color-mix(in srgb, var(--ok) 40%, transparent); background: var(--ok-bg); border-radius: 12px; }
.booking__done[data-show="true"] { display: grid; }
.booking__done h3 { font-size: 21px; color: var(--ok); }
.booking__done p { margin: 0; font-size: 15px; }
.booking__done .actions { display: flex; flex-wrap: wrap; gap: 10px; }
.embed { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow-soft); }
.embed iframe { display: block; width: 100%; min-height: 780px; border: 0; }
.embed__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--slate); }
[hidden] { display: none !important; }

/* ---------- draft markers (delete the <span class="draft-tag"> elements before go-live) ---------- */
.draft-tag {
  display: inline-flex; align-items: center; gap: 6px; vertical-align: middle;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600; letter-spacing: .02em; text-transform: none;
  color: var(--warn); background: var(--warn-bg); border: 1px dashed var(--warn); border-radius: 4px; padding: 2px 7px; margin-left: 8px;
}

/* ---------- retainer band (home) ---------- */
.retainer { margin-top: 20px; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 28px; align-items: center; padding: clamp(24px, 3vw, 40px); border-radius: 14px; background: var(--panel); color: var(--panel-text); border: 1px solid var(--panel-line); background-image: radial-gradient(ellipse at 90% 10%, color-mix(in srgb, var(--brand) 55%, transparent), transparent 55%); }
.retainer h3 { color: #fff; font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 10px; }
.retainer p { color: var(--panel-muted); margin: 0; }
.retainer__facts { list-style: none; display: grid; gap: 10px; font-size: 15px; }
.retainer__facts li { display: flex; gap: 10px; align-items: flex-start; }
.retainer__facts li::before { content: ""; flex: none; width: 14px; height: 14px; margin-top: 5px; border-radius: 3px; background: #4FD1B8; clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 22%, 84% 5%, 40% 66%); }
.retainer__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
@media (max-width: 860px) { .retainer { grid-template-columns: 1fr; } }
