/* ============================================================
   Точка — бар в Красноярске
   Жанр: neon-sign (тёмная неоновая вывеска в герое) на светлой
   дымчатой странице с электрическим оранжевым акцентом.
   ============================================================ */

:root{
  --bg: oklch(95.5% 0.01 75);
  --bg-soft: oklch(92.5% 0.014 68);
  --surface: oklch(99% 0.004 75);
  --surface-2: oklch(97% 0.008 72);
  --ink: oklch(23% 0.02 50);
  --ink-dim: oklch(42% 0.02 55);
  --line: oklch(85% 0.014 68);

  --base: oklch(52% 0.15 42);
  --accent: oklch(68% 0.21 40);
  --accent-btn: oklch(53% 0.18 40);
  --accent-2: oklch(74% 0.19 70);
  --on-accent: oklch(99% 0 0);

  --dark-surface: oklch(16% 0.02 40);
  --dark-surface-2: oklch(12% 0.017 40);
  --dark-ink: oklch(95% 0.01 60);
  --dark-ink-dim: oklch(74% 0.02 60);
  --dark-line: oklch(30% 0.02 45);

  --radius-lg: clamp(22px, 3.4vw, 40px);
  --radius-md: clamp(14px, 2vw, 22px);
  --radius-sm: 12px;
  --gap: clamp(16px, 2.6vw, 28px);
  --pad-section: clamp(56px, 9vw, 120px);

  --font-display: ui-sans-serif, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-text: ui-sans-serif, system-ui, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  --ease: cubic-bezier(.2,.7,.2,1);
  color-scheme: light;
}

[data-theme="dark"]{
  --bg: oklch(15% 0.016 40);
  --bg-soft: oklch(12.5% 0.015 40);
  --surface: oklch(20% 0.02 42);
  --surface-2: oklch(23% 0.02 42);
  --ink: oklch(94% 0.01 60);
  --ink-dim: oklch(72% 0.02 60);
  --line: oklch(32% 0.02 45);

  --base: oklch(68% 0.15 42);
  --accent: oklch(73% 0.21 40);
  --accent-btn: oklch(58% 0.19 40);
  --accent-2: oklch(78% 0.18 70);

  --dark-surface: oklch(9% 0.015 40);
  --dark-surface-2: oklch(7% 0.012 40);
  --dark-ink: oklch(96% 0.01 60);
  --dark-ink-dim: oklch(76% 0.02 60);
  --dark-line: oklch(26% 0.02 40);
  color-scheme: dark;
}

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img{ max-width: 100%; height: auto; display: block; -webkit-user-drag: none; }
a{ color: inherit; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,p{ margin: 0; }
.sprite{ position: absolute; width: 0; height: 0; overflow: hidden; }
.icon{ width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon--star{ fill: currentColor; stroke: none; }
.nowrap{ white-space: nowrap; }
::selection{ background: var(--accent); color: var(--on-accent); }
:focus-visible{ outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.skip-link{
  position: absolute; left: 1rem; top: -3rem;
  background: var(--accent); color: var(--on-accent);
  padding: .6rem 1rem; border-radius: var(--radius-sm);
  transition: top .2s var(--ease); z-index: 100;
}
.skip-link:focus{ top: 1rem; }

.wrap{
  width: min(1200px, 100% - clamp(32px, 8vw, 96px));
  margin-inline: auto;
}

/* reveal-on-scroll, guarded: only hides when .js class present.
   Only the position shifts — opacity stays put, so content is never
   invisible if a section happens to load already in view. */
.js .reveal{ transform: translateY(18px); }
.reveal{ transition: transform .6s var(--ease); }
.reveal.is-visible{ transform: none; }
@media (prefers-reduced-motion: reduce){
  .js .reveal{ transform: none; }
}

.overline{
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--base);
  margin: 0 0 .6em;
  font-weight: 600;
}
.overline--light{ color: var(--accent-2); }

.section-num{
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--ink-dim);
  opacity: .6;
  margin: 0 0 .4em;
}
.section-num--light{ color: var(--dark-ink-dim); opacity: .7; }

h2{
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: .98;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  max-width: 22ch;
}
.section-lead{
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.1vw + .8rem, 1.15rem);
}

.text-accent{ color: var(--accent); }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: .55em;
  padding: .95em 1.5em;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover{ transform: translateY(-2px); }
.btn--accent{
  background: var(--accent-btn); color: var(--on-accent);
  box-shadow: 0 8px 24px -8px oklch(53% 0.18 40 / .55);
}
.btn--accent:hover{ box-shadow: 0 10px 30px -6px oklch(53% 0.18 40 / .7); }
.btn--outline{
  border: 1.5px solid var(--dark-line);
  color: var(--dark-ink);
}
.btn--outline:hover{ border-color: var(--accent); color: var(--accent); }
.btn--ghost{ color: var(--ink); }
.btn--dark{ background: var(--dark-surface); color: var(--dark-ink); }
.btn--dark:hover{ background: var(--dark-surface-2); }
.btn--outline-dark{ border: 1.5px solid oklch(100% 0 0 / .35); color: inherit; }
.btn--outline-dark:hover{ border-color: oklch(100% 0 0 / .7); }
.btn--icon-only{ padding: .7em; border-radius: 50%; }

/* ---------- header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__row{
  display: flex; align-items: center; gap: clamp(10px, 2vw, 28px);
  min-height: 68px;
}
.brand{ display: flex; align-items: center; gap: .6em; text-decoration: none; margin-right: auto; }
.brand__mark{ width: 34px; height: 34px; flex-shrink: 0; }
.brand__ring{ fill: none; stroke: var(--base); stroke-width: 2.2; opacity: .55; }
.brand__dot{ fill: var(--accent); }
.brand__name{ font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; letter-spacing: -.01em; }

.site-nav{ display: flex; gap: clamp(14px, 1.6vw, 26px); }
.site-nav a{ text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink-dim); transition: color .15s; }
.site-nav a:hover{ color: var(--accent-btn); }

.site-header__actions{ display: flex; align-items: center; gap: .4rem; }

/* Кнопка «Позвонить» в шапке — видна на всех ширинах (это единственный
   способ дозвониться без прокрутки, поэтому плавающей копии на телефоне нет). */
.header-phone{ display: inline-flex; }
.header-phone__num{ display: none; }
.theme-toggle{ display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.theme-toggle:hover{ background: var(--surface-2); }
.icon--moon{ display: none; }
[data-theme="dark"] .icon--sun{ display: none; }
[data-theme="dark"] .icon--moon{ display: block; }
.menu-toggle{ display: none; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; flex-shrink: 0; }

@media (max-width: 899.98px){
  .site-nav{
    position: fixed; inset: 68px 0 auto 0; z-index: 39;
    background: var(--surface); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 1rem clamp(20px,6vw,40px) 1.6rem;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }
  .site-nav a{ padding: .7em 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .site-nav.is-open{ transform: none; opacity: 1; pointer-events: auto; }
  .menu-toggle{ display: inline-flex; }

  /* На телефоне показываем и номер: это замена убранной плавающей кнопки. */
  .header-phone.btn--icon-only{ border-radius: 999px; padding: .55em .95em .55em .75em; }
  .header-phone__num{ display: inline; font-weight: 700; font-size: .84rem; }
}
@media (max-width: 479.98px){
  .site-header .brand__name{ display: none; }
  .header-phone__num{ font-size: .78rem; }
}

/* ---------- hero ---------- */
.hero{
  display: grid;
  grid-template-columns: 1fr;
  background: var(--dark-surface);
  color: var(--dark-ink);
}
@media (min-width: 900px){
  .hero{ grid-template-columns: 1.05fr 1fr; min-height: min(92vh, 880px); align-items: stretch; }
}
.hero__visual{ position: relative; min-height: 46vh; overflow: hidden; background: var(--dark-surface-2); }
@media (min-width: 900px){ .hero__visual{ min-height: 100%; } }
.hero__photo{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05); }
.hero__scrim{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(10% 0.02 40 / .15), oklch(8% 0.02 40 / .85) 88%),
    linear-gradient(90deg, oklch(8% 0.02 40 / .1), oklch(8% 0.02 40 / .55));
}
.hero__brick{
  position: absolute; inset: 0; opacity: .18; mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 26px, oklch(100% 0 0 / .35) 26px 28px),
    repeating-linear-gradient(90deg, transparent 0 58px, oklch(100% 0 0 / .35) 58px 60px);
}
.hero__neon{
  position: absolute; left: 6%; bottom: 8%; margin: 0;
  font-family: var(--font-display); font-weight: 900; letter-spacing: .02em;
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  color: var(--accent);
  text-shadow:
    0 0 6px oklch(73% 0.21 40 / .9),
    0 0 18px oklch(73% 0.21 40 / .8),
    0 0 46px oklch(73% 0.21 40 / .6),
    0 0 90px oklch(73% 0.21 40 / .35);
  animation: neon-flicker 6s infinite steps(1);
}
@keyframes neon-flicker{
  0%,92%,94%,98%,100%{ opacity: 1; }
  93%,97%{ opacity: .82; }
}
@media (prefers-reduced-motion: reduce){ .hero__neon, .hours-banner__time{ animation: none; } }

.hero__content{ padding: clamp(40px,7vw,88px) clamp(24px,6vw,64px); display: flex; flex-direction: column; justify-content: center; gap: 1.15rem; }
.hero__title{
  font-family: var(--font-display); font-weight: 900; letter-spacing: -.02em;
  line-height: .92; font-size: clamp(2.4rem, 6vw, 4rem);
}
.hero__lead{ max-width: 46ch; color: var(--dark-ink-dim); font-size: clamp(1.02rem, .4vw + .95rem, 1.18rem); }

.status-pill{
  display: inline-flex; align-items: center; gap: .6em; width: fit-content;
  padding: .55em 1.1em; border-radius: 999px;
  background: oklch(100% 0 0 / .06); border: 1px solid var(--dark-line);
  font-size: .92rem; font-weight: 600;
}
.status-pill__dot{ width: .55em; height: .55em; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px oklch(73% 0.21 40 / .25); }
.status-pill.is-closed .status-pill__dot{ background: var(--dark-ink-dim); box-shadow: none; }

.hero__actions{ display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__rating{ display: flex; align-items: center; gap: .5em; color: var(--accent-2); font-size: .95rem; }
.hero__rating b{ font-variant-numeric: tabular-nums; font-size: 1.05em; }

/* ---------- sections ---------- */
.section{ padding: var(--pad-section) 0; }
.section--soft{ background: var(--bg-soft); }
.section--dark{ background: var(--dark-surface); color: var(--dark-ink); }
.section--dark .section-lead{ color: var(--dark-ink-dim); }

/* ---------- stickers ---------- */
.stickers{ display: flex; flex-wrap: wrap; gap: clamp(10px,1.6vw,18px); margin-top: 2rem; }
.stickers--tight{ margin-top: 1rem; }
.sticker{
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--surface); border: 1.5px solid var(--line);
  padding: .85em 1.3em; border-radius: var(--radius-md);
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 16px -10px oklch(20% 0.02 50 / .4);
  transition: transform .18s var(--ease), border-color .18s var(--ease);
}
.sticker:hover{ transform: translateY(-3px) rotate(0deg) !important; border-color: var(--accent); }
.sticker .icon{ color: var(--accent-btn); }
.sticker--r1{ transform: rotate(-2.4deg); }
.sticker--r2{ transform: rotate(1.8deg); }
.sticker--r3{ transform: rotate(-1.2deg); }

/* ---------- stats / ring ---------- */
.stats{ display: grid; gap: clamp(28px,5vw,64px); }
@media (min-width: 900px){ .stats{ grid-template-columns: 1fr 1fr; align-items: end; } }
.stats__title{ font-family: var(--font-display); font-weight: 900; letter-spacing: -.01em; line-height: 1; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.6rem; max-width: 18ch; }

.ring{ position: relative; width: clamp(120px, 22vw, 180px); aspect-ratio: 1; margin-inline: 0; }
.ring svg{ width: 100%; height: 100%; }
.ring__track{ stroke: oklch(100% 0 0 / .12); }
.ring__fill{ stroke: var(--accent); }
.ring__num{
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; letter-spacing: -.02em;
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  font-variant-numeric: tabular-nums;
}
.ring__caption{ margin-top: 1rem; color: var(--dark-ink-dim); font-size: .95rem; }

.counters{ display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(12px,2vw,20px); }
.counter{
  background: oklch(100% 0 0 / .05); border: 1px solid var(--dark-line);
  border-radius: var(--radius-md); padding: 1.4rem 1.1rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.counter .icon{ color: var(--accent); }
.counter__num{ font-family: var(--font-display); font-weight: 900; font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-variant-numeric: tabular-nums; line-height: 1; }
.counter__label{ color: var(--dark-ink-dim); font-size: .88rem; }
@media (max-width: 560px){ .counters{ grid-template-columns: 1fr 1fr; } .counter:last-child{ grid-column: 1 / -1; } }

/* ---------- hours banner ---------- */
.hours-banner{ background: var(--dark-surface); color: var(--dark-ink); padding: clamp(48px,8vw,96px) 0; text-align: center; overflow: hidden; }
.hours-banner__time{
  font-family: var(--font-display); font-weight: 900; letter-spacing: -.02em;
  line-height: 1; font-size: clamp(2.6rem, 9.5vw, 6.6rem);
  color: var(--accent); margin: 0;
  text-shadow:
    0 0 6px oklch(73% 0.21 40 / .9),
    0 0 18px oklch(73% 0.21 40 / .8),
    0 0 46px oklch(73% 0.21 40 / .6),
    0 0 90px oklch(73% 0.21 40 / .35);
  animation: neon-flicker 6s infinite steps(1);
}
.hours-banner__arrow{ display: inline-block; color: var(--dark-ink-dim); font-weight: 400; margin: 0 .18em; text-shadow: none; }
.hours-banner__note{
  margin: 1rem 0 0; font-family: var(--font-mono); letter-spacing: .12em;
  text-transform: uppercase; font-size: clamp(.82rem, 1.4vw, 1rem); color: var(--dark-ink-dim);
}

/* ---------- gallery / lightbox ---------- */
.gallery{ margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap); }
.gallery--single{ grid-template-columns: minmax(260px, 460px); justify-content: start; }
.gallery__item{
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--line); position: relative;
}
.gallery__item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.gallery__item:hover img{ transform: scale(1.05); }

.lightbox{
  position: fixed; inset: 0; z-index: 80;
  background: oklch(8% 0.01 40 / .92);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px,5vw,48px);
}
.lightbox[hidden]{ display: none; }
.lightbox__img{ max-width: min(1100px, 100%); max-height: 84vh; border-radius: var(--radius-md); }
.lightbox__close{ position: absolute; top: clamp(12px,3vw,28px); right: clamp(12px,3vw,28px); color: #fff; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: oklch(100% 0 0 / .08); }
.lightbox__close:hover{ background: oklch(100% 0 0 / .18); }
.lightbox__nav{ position: absolute; top: 50%; translate: 0 -50%; color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: oklch(100% 0 0 / .08); }
.lightbox__nav:hover{ background: oklch(100% 0 0 / .18); }
.lightbox__nav--prev{ left: clamp(8px,3vw,24px); }
.lightbox__nav--prev .icon{ transform: rotate(180deg); }
.lightbox__nav--next{ right: clamp(8px,3vw,24px); }

/* ---------- reviews ---------- */
.reviews{ margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap); align-items: start; }
.review{
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(20px,2.6vw,30px);
}
.review--r1{ rotate: -.6deg; }
.review--r2{ rotate: .6deg; }
.review__stars{ display: flex; gap: .2em; color: var(--accent-btn); margin: 0 0 .9em; }
.review__stars .icon{ width: .95em; height: .95em; }
.review__text{ font-size: 1.02rem; }

/* ---------- hours / payment ---------- */
.hours-grid{ margin-top: 2rem; display: grid; gap: var(--gap); }
@media (min-width: 800px){ .hours-grid{ grid-template-columns: 1.1fr 1fr; align-items: start; } }
.hours-card, .payment-card{
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(22px,3vw,32px);
  height: 100%;
}
.hours-card__status{ display: flex; align-items: center; gap: .6em; font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem; }
.hours-card__status .icon{ color: var(--accent-btn); }
.hours-compact{ display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.hours-compact li{ display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.hours-full summary{ cursor: pointer; color: var(--base); font-weight: 700; font-size: .92rem; }
.hours-full ul{ margin-top: .8rem; display: flex; flex-direction: column; gap: .4rem; }
.hours-full li{ display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; color: var(--ink-dim); padding: .3rem .5rem; border-radius: 8px; }
.hours-full li.is-today{ background: color-mix(in oklch, var(--accent) 14%, transparent); color: var(--ink); font-weight: 700; }

.payment-card__title{ font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem; }
.payment-card__wifi{ margin-top: 1.2rem; display: flex; align-items: center; gap: .55em; color: var(--ink-dim); font-weight: 600; }
.payment-card__wifi .icon{ color: var(--accent-btn); }

/* ---------- location / map ---------- */
.location-panel{ position: relative; margin-top: 2rem; }

.map{
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface-2);
  height: clamp(380px, 56vw, 620px);
  width: 100%;
  touch-action: pan-y;
  user-select: none;
}
.map.is-engaged{ touch-action: none; }
.map__layer{ position: absolute; top: 0; left: 0; width: 0; height: 0; will-change: transform; }
.map__layer img{ position: absolute; width: 256px; height: 256px; display: block; user-select: none; -webkit-user-drag: none; }
[data-theme="dark"] .map__layer img{ filter: invert(.92) hue-rotate(180deg) brightness(.95) contrast(.95); }
.map__marker{ position: absolute; left: 50%; top: 50%; translate: -50% -100%; color: var(--accent); pointer-events: none; filter: drop-shadow(0 6px 10px oklch(20% 0.02 50 / .4)); }
.map__marker .icon{ width: 40px; height: 40px; fill: var(--accent); stroke: var(--surface); stroke-width: 1.2; }
.map__controls{ position: absolute; right: 12px; bottom: 12px; display: flex; flex-direction: column; gap: 8px; }
.map__controls button{
  width: 38px; height: 38px; border-radius: 50%; background: var(--surface);
  border: 1px solid var(--line); display: grid; place-items: center;
  box-shadow: 0 6px 16px -8px oklch(20% 0.02 50 / .5);
}
.map__controls button:hover{ border-color: var(--accent-btn); color: var(--accent-btn); }
.map__attr{ position: absolute; left: 8px; bottom: 6px; font-size: .68rem; background: oklch(100% 0 0 / .7); padding: .1em .5em; border-radius: 6px; }
.map__attr a{ text-decoration: none; }

.contact-card{
  font-style: normal; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(22px,3vw,32px);
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-card__row{ display: flex; align-items: flex-start; gap: .7em; margin: 0; }
.contact-card__row .icon{ color: var(--accent-btn); margin-top: .2em; }
.contact-card__row a{ text-decoration: none; font-weight: 600; }
.contact-card__row a:hover{ color: var(--accent-btn); }
.contact-card__btn{ margin-top: .4rem; align-self: flex-start; }

/* Карта растянута на всю ширину секции, карточка контактов лежит
   поверх её левого края. На узких экранах — обычным блоком под картой. */
.contact-card--floating{
  position: absolute; left: clamp(14px, 3vw, 32px); top: clamp(14px, 3vw, 32px);
  z-index: 6; max-width: min(340px, calc(100% - 28px));
  box-shadow: 0 24px 48px -20px oklch(20% 0.02 50 / .6);
}
@media (max-width: 699.98px){
  .contact-card--floating{
    position: static; margin-top: var(--gap); max-width: none; box-shadow: none;
  }
}

/* ---------- CTA band ---------- */
.cta{ background: var(--dark-surface); color: var(--dark-ink); padding: clamp(40px,6vw,64px) 0; }
.cta__row{ display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.cta__title{ font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -.01em; }
.cta__sub{ color: var(--dark-ink-dim); margin-top: .4rem; }

/* ---------- footer ---------- */
.site-footer{ background: var(--dark-surface-2); color: var(--dark-ink); padding-top: clamp(40px,6vw,64px); }
.site-footer__grid{ display: grid; gap: clamp(24px,4vw,40px); grid-template-columns: 1.4fr repeat(3, 1fr); padding-bottom: 2.5rem; border-bottom: 1px solid var(--dark-line); }
@media (max-width: 780px){ .site-footer__grid{ grid-template-columns: 1fr 1fr; } }
.site-footer__brand p{ color: var(--dark-ink-dim); margin-top: .8rem; font-size: .92rem; }
.site-footer .brand__name{ color: var(--dark-ink); }
.site-footer__col{ display: flex; flex-direction: column; gap: .6rem; font-size: .92rem; }
.site-footer__col a{ text-decoration: none; color: var(--dark-ink-dim); }
.site-footer__col a:hover{ color: var(--accent); }
.site-footer__col p{ color: var(--dark-ink-dim); }
.site-footer__heading{ font-weight: 800; color: var(--dark-ink); margin-bottom: .3rem; }
.site-footer__bottom{ display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; padding: 1.4rem 0; font-size: .85rem; color: var(--dark-ink-dim); }
.site-footer__signature a{ color: var(--dark-ink-dim); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__signature a:hover{ color: var(--accent); }
