/* ══════════════════════════════════════════════════════════════════════════
   Вероника — сайт фотографа.
   Tokens ported from the "Classical" design system (claude.ai/design),
   page styles from «Вероника - Сайт.dc.html». Mobile-first: the phone
   layout mirrors the mockup 1:1, tablet/desktop open up into an
   editorial layout on the same tokens.
   ══════════════════════════════════════════════════════════════════════ */

/* ─── Design-system tokens ─── */
:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201f1d;
  --color-accent: #b68235;
  --color-divider: color-mix(in srgb, #201f1d 16%, transparent);

  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  --color-accent-100: #fff3e4;
  --color-accent-200: #ffe3bf;
  --color-accent-300: #facb8d;
  --color-accent-400: #e1ad66;
  --color-accent-500: #c28d41;
  --color-accent-600: #a06f24;
  --color-accent-700: #7d5411;
  --color-accent-800: #5a3b0a;
  --color-accent-900: #3a270d;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-mono: ui-monospace, 'SF Mono', 'Cascadia Mono', monospace;

  --space-1: 4.6px;
  --space-2: 9.2px;
  --space-3: 13.8px;
  --space-4: 18.4px;
  --space-6: 27.6px;
  --space-8: 36.8px;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 7px;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2d2b2b 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 22%, transparent);

  --ink-dark: color-mix(in srgb, var(--color-neutral-900) 88%, black);

  /* layout */
  --maxw: 600px;
  --pad: 20px;
  --header-h: 54px;
}

@media (min-width: 760px) {
  :root {
    --maxw: 1120px;
    --pad: clamp(24px, 5vw, 48px);
  }
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--color-accent-700); text-decoration: none; }
a:hover { color: var(--color-accent-600); }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

section { scroll-margin-top: calc(var(--header-h) + 12px); }

.container {
  width: 100%;
  max-width: calc(var(--maxw) + 2 * var(--pad));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-feature-settings: 'tnum';
}

/* ─── DS components ─── */
.hr { height: 1px; border: 0; margin: var(--space-2) 0; background: var(--color-divider); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 14px; line-height: 1.2; color: var(--color-text);
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { color: var(--color-accent); border-color: var(--color-accent); }
.btn-primary:hover { background: color-mix(in srgb, var(--color-accent) 12%, transparent); color: var(--color-accent); }
.btn-primary:active { background: color-mix(in srgb, var(--color-accent) 22%, transparent); }
.btn-ghost { color: var(--color-accent); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); }
.btn-ghost:active { background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
.btn-block { width: 100%; }
.btn-caps { letter-spacing: 0.1em; text-transform: uppercase; font-size: 12px; }

.input {
  width: 100%; min-height: 48px; padding: 6px 12px;
  font-family: var(--font-body); font-size: 16px; color: var(--color-text);
  caret-color: var(--color-accent); background: transparent;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 90px; resize: vertical; }

.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md);
  background: transparent; border: 1px solid var(--color-divider);
}

.tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: 0.02em; padding: 3px 10px;
  border-radius: calc(var(--radius-md) * 0.75);
}
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }

/* Signature photo frame: warm paper border + unified film grade. */
.plate {
  filter: sepia(0.22) saturate(0.82) contrast(1.05);
  border: 6px solid var(--color-surface);
  outline: 1px solid var(--color-divider);
}
.plate img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Motion ─── */
@keyframes vkMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes vkPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
@keyframes vkRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.js .reveal { opacity: 0; }
.js .reveal.is-visible { animation: vkRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; }
  .js .reveal.is-visible { animation: none; }
  .marquee-track { animation: none !important; }
  .pulse-dot { animation: none !important; }
}

/* ─── Header ─── */
.site-header { position: fixed; inset: 0 0 auto; z-index: 40; }

.header-bar {
  background: color-mix(in srgb, var(--color-bg) 84%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
}

.header-inner {
  max-width: calc(var(--maxw) + 2 * var(--pad));
  margin-inline: auto;
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 14px var(--pad) 12px;
}

.brand {
  font-family: var(--font-heading);
  font-size: 20px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-text);
}
.brand:hover { color: var(--color-text); }
.brand-dot { color: var(--color-accent-700); font-style: normal; }

.header-link {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid var(--color-accent); padding-bottom: 2px;
}

.progress {
  height: 2px; width: 0%;
  background: var(--color-accent);
  transition: width 0.15s linear;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 76px; padding-bottom: 60px;
  overflow: clip;
}

.hero-media { position: relative; z-index: 0; margin-bottom: -64px; }
.hero-plate { aspect-ratio: 4 / 5; overflow: hidden; }

.hero-frame-caption {
  position: absolute; left: 14px; bottom: 78px;
  writing-mode: vertical-rl;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--color-neutral-100);
  mix-blend-mode: difference;
  font-feature-settings: 'tnum';
}

.hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 18px; }

.hero-title {
  margin: 0;
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(58px, 18vw, 96px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-shadow: 0 1px 4px var(--color-bg), 0 2px 12px var(--color-bg), 0 4px 32px var(--color-bg);
}
.hero-title em { font-weight: 300; padding-left: 0.9em; }
.hero-title-accent { color: var(--color-accent-700); }
.hero-title-dot { color: var(--color-accent); }

.hero-status {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--color-neutral-800);
}

.pulse-dot {
  width: 6px; height: 6px; flex: none; border-radius: 50%;
  background: var(--color-accent);
  animation: vkPulse 2.4s ease-in-out infinite;
}

.hero-lead {
  margin: 0; max-width: 36ch;
  font-size: 16px; line-height: 1.65; text-align: justify;
  color: var(--color-neutral-800);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (min-width: 760px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 64px;
  }
  .hero-media { order: 2; margin-bottom: 0; }
  .hero-content { order: 1; }
  .hero-title { font-size: clamp(64px, 7.6vw, 118px); text-shadow: none; }
  .hero-frame-caption { bottom: 20px; }
}

/* ─── Marquee ─── */
.marquee {
  overflow: clip;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding: 13px 0;
}
.marquee-track { display: flex; width: max-content; animation: vkMarquee 28s linear infinite; }
.marquee-item {
  font-family: var(--font-heading);
  font-size: 21px; letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; color: var(--color-neutral-700);
}
.marquee-item em { color: var(--color-accent); font-style: normal; }

@media (min-width: 760px) {
  .marquee-item { font-size: 28px; }
}

/* ─── Sections ─── */
.section { position: relative; padding: 64px 0 8px; }

.ghost-num {
  position: absolute; top: 4px; right: 6px;
  font-family: var(--font-heading); font-weight: 300;
  font-size: 150px; line-height: 1;
  color: var(--color-neutral-200);
  font-feature-settings: 'tnum';
  pointer-events: none; user-select: none;
}
.ghost-num-accent { top: -18px; right: -6px; font-size: 220px; color: color-mix(in srgb, var(--color-accent) 22%, transparent); }

@media (min-width: 760px) {
  .section { padding-top: 96px; }
  .ghost-num { font-size: 220px; right: var(--pad); }
}

.kicker {
  position: relative;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--color-accent-700);
}
.kicker-dark { font-size: 10px; letter-spacing: 0.28em; color: var(--color-accent-400); }

.section-title {
  position: relative;
  margin: 8px 0 20px;
  font-family: var(--font-heading); font-weight: 400;
  font-size: 44px; line-height: 1; letter-spacing: -0.015em;
}
.section-note {
  margin: -10px 0 22px;
  font-size: 15px; line-height: 1.7;
  color: var(--color-neutral-800);
}

@media (min-width: 760px) {
  .section-title { font-size: clamp(48px, 5vw, 68px); }
}

.section-head { display: flex; flex-direction: column; gap: 10px; }
.section-head .section-title { margin-bottom: 0; }
.section-head .section-note { margin-top: 0; }

/* ─── Scrollers (portfolio, reviews) ─── */
.scroller {
  display: flex; gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 4px 18px;
  padding-inline: max(var(--pad), calc((100vw - var(--maxw)) / 2));
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroller::-webkit-scrollbar { display: none; }
.scroller.is-dragging { scroll-snap-type: none; cursor: grabbing; user-select: none; }

@media (hover: hover) and (pointer: fine) {
  .scroller { cursor: grab; }
}

.shot { margin: 0; flex: 0 0 68%; scroll-snap-align: center; }
.shot-plate { aspect-ratio: 3 / 4; overflow: hidden; }
.shot-caption {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
  padding: 9px 0 8px;
  border-bottom: 1px solid var(--color-divider);
}
.shot-title { font-family: var(--font-heading); font-size: 19px; font-style: italic; }
.shot-year { font-size: 10px; letter-spacing: 0.14em; color: var(--color-neutral-600); }

.shot-sq { margin: 0; flex: 0 0 46%; scroll-snap-align: center; }
.sq-plate { aspect-ratio: 1 / 1; overflow: hidden; }
.sq-caption {
  margin-top: 8px;
  font-family: var(--font-heading); font-size: 16px; font-style: italic;
  color: var(--color-neutral-800);
}

@media (min-width: 760px) {
  .shot { flex-basis: 340px; }
  .shot-sq { flex-basis: 240px; }
}
@media (min-width: 1024px) {
  .shot { flex-basis: 380px; }
  .shot-sq { flex-basis: 260px; }
}

/* ─── Manifesto ─── */
.manifesto {
  position: relative;
  margin-top: 56px;
  padding: 64px 0 68px;
  background: var(--ink-dark);
  color: var(--color-neutral-100);
  overflow: clip;
}
.manifesto-inner { display: flex; flex-direction: column; gap: 26px; }

.manifesto-quote {
  margin: 0; max-width: 21ch;
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(30px, 8.5vw, 44px);
  line-height: 1.18;
}
.manifesto-quote em { color: var(--color-accent-400); }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  border-top: 1px solid color-mix(in srgb, var(--color-neutral-100) 18%, transparent);
  padding-top: 22px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-heading); font-weight: 300;
  font-size: 38px; font-feature-settings: 'tnum';
  color: var(--color-accent-400);
}
.stat-label {
  font-size: 9px; letter-spacing: 0.18em;
  color: color-mix(in srgb, var(--color-neutral-100) 60%, transparent);
}

@media (min-width: 760px) {
  .manifesto { margin-top: 80px; padding: 96px 0; }
  .manifesto-quote { font-size: clamp(40px, 4.4vw, 60px); }
  .stat-value { font-size: 52px; }
  .stat-label { font-size: 10px; }
}

/* ─── Reels ─── */
.reels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.reel { position: relative; aspect-ratio: 9 / 16; overflow: hidden; }
.reel-overlay {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 8px;
  padding: 10px;
  background: linear-gradient(to top, color-mix(in srgb, var(--color-neutral-900) 45%, transparent) 0%, transparent 46%);
}
.reel-len { font-size: 9px; letter-spacing: 0.14em; color: var(--color-neutral-100); }
.reel-play {
  width: 30px; height: 30px; flex: none;
  border: 1px solid color-mix(in srgb, var(--color-neutral-100) 80%, transparent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-neutral-100); font-size: 10px;
}

@media (min-width: 760px) {
  .reels-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── About ─── */
.about-layout { display: flex; gap: 16px; align-items: flex-start; }

.about-portrait { flex: 0 0 40%; display: flex; flex-direction: column; gap: 8px; }
.portrait-plate { aspect-ratio: 3 / 4; overflow: hidden; }
.portrait-caption {
  font-size: 9px; letter-spacing: 0.16em;
  color: var(--color-neutral-600); text-align: center;
}

.about-text { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.about-text p {
  margin: 0;
  font-size: 15px; line-height: 1.7; text-align: justify;
  color: var(--color-neutral-800);
}
.drop-cap::first-letter {
  font-family: var(--font-heading);
  font-size: 58px; line-height: 0.8;
  float: left; padding: 8px 10px 0 0;
  color: var(--color-accent-700);
}
.signature {
  font-family: var(--font-heading); font-style: italic;
  font-size: 22px; color: var(--color-accent-700);
}

.tags-row { display: flex; gap: 8px; flex-wrap: wrap; padding: 18px 0 8px; }

@media (min-width: 760px) {
  .about-layout { gap: clamp(24px, 4vw, 56px); }
  .about-portrait { flex-basis: clamp(240px, 30vw, 340px); }
  .about-text p { font-size: 17px; }
  .drop-cap::first-letter { font-size: 74px; }
  .signature { font-size: 26px; }
}

/* ─── Price ─── */
.price-list { display: flex; flex-direction: column; }

.price-row {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-divider);
}
.price-head { display: flex; align-items: baseline; gap: 14px; }
.price-num { font-size: 10px; letter-spacing: 0.14em; color: var(--color-neutral-600); }
.price-name { flex: 1; font-family: var(--font-heading); font-size: 30px; font-weight: 400; }
.price-cost {
  font-family: var(--font-heading); font-size: 24px;
  color: var(--color-accent-700); white-space: nowrap;
  font-feature-settings: 'tnum';
}
.price-desc {
  margin: 0;
  font-size: 14px; line-height: 1.65; text-align: justify;
  color: var(--color-neutral-800);
}
.price-meta { font-size: 10px; letter-spacing: 0.14em; color: var(--color-neutral-600); }

@media (min-width: 760px) {
  .price-row { padding: 30px 0; }
  .price-name { font-size: 38px; }
  .price-cost { font-size: 30px; }
  .price-desc { max-width: 62ch; font-size: 15px; }
}

/* ─── Reviews ─── */
.review {
  margin: 0; flex: 0 0 82%;
  scroll-snap-align: center;
  border-left: 1px solid var(--color-accent);
  padding: 4px 0 4px 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-mark {
  font-family: var(--font-heading);
  font-size: 40px; line-height: 0.6;
  color: var(--color-accent);
  user-select: none;
}
.review-text {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 23px; line-height: 1.32;
  font-style: italic; font-weight: 400;
}
.review-who { font-size: 10px; letter-spacing: 0.16em; color: var(--color-neutral-600); }

@media (min-width: 1024px) {
  .scroller.reviews {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
    overflow: visible; cursor: auto;
  }
  .review { flex-basis: auto; padding-right: 8px; }
  .review-text { font-size: 26px; }
}

/* ─── Booking ─── */
.booking { padding-bottom: 44px; margin-top: 48px; border-top: 1px solid var(--color-divider); }
.booking-title { margin-bottom: 6px; font-size: 48px; line-height: 0.98; }
.booking-title em { color: var(--color-accent-700); }

#booking-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 10px; }
.field-label { font-size: 10px; letter-spacing: 0.18em; color: var(--color-neutral-700); }

.type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.type-chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: var(--space-2) var(--space-2);
  font-family: var(--font-heading); font-weight: 600;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-neutral-800);
  background: transparent;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
  cursor: pointer;
}
.type-chip:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.type-chip[aria-pressed='true'] {
  border-color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
  color: var(--color-accent-700);
}

.btn-submit { min-height: 52px; font-size: 13px; letter-spacing: 0.14em; margin-top: var(--space-2); }
.form-hint {
  font-size: 10px; letter-spacing: 0.12em;
  color: var(--color-neutral-600); text-align: center;
}
.form-hint.is-error { color: #a03424; }

.booking-success { padding: 26px; text-align: center; align-items: center; gap: 12px; }
.success-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--color-accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent-700);
}
.success-title { margin: 0; font-family: var(--font-heading); font-weight: 400; font-size: 28px; }
.success-text { margin: 0; font-size: 14px; line-height: 1.65; color: var(--color-neutral-800); }

@media (min-width: 760px) {
  .booking { margin-top: 72px; padding-bottom: 96px; }
  .booking-inner { max-width: calc(680px + 2 * var(--pad)); }
  .booking-title { font-size: clamp(52px, 5.4vw, 72px); }
  .type-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
}

/* ─── Footer ─── */
.site-footer {
  position: relative;
  padding: 48px 0 104px;
  background: var(--ink-dark);
  color: var(--color-neutral-100);
  overflow: clip;
}
.footer-inner { display: flex; flex-direction: column; gap: 24px; }

.ghost-letter {
  position: absolute; bottom: -30px; right: -10px;
  font-family: var(--font-heading); font-weight: 300;
  font-size: 200px; line-height: 1;
  color: color-mix(in srgb, var(--color-accent) 16%, transparent);
  pointer-events: none; user-select: none;
}

.footer-title {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(44px, 14vw, 68px); line-height: 0.95;
}
.footer-title em { color: var(--color-accent-400); }

.socials { display: flex; flex-direction: column; gap: 2px; }
.social-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 54px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-neutral-100) 16%, transparent);
  color: var(--color-neutral-100);
}
.social-row:hover { color: var(--color-accent-400); }
.social-label { font-family: var(--font-heading); font-size: 20px; }
.social-handle {
  font-size: 11px; letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--color-neutral-100) 55%, transparent);
}
.social-row:hover .social-handle { color: var(--color-accent-400); }

.copyright {
  font-size: 10px; letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--color-neutral-100) 45%, transparent);
}

@media (min-width: 760px) {
  .site-footer { padding: 96px 0; }
  .footer-title { font-size: clamp(64px, 8vw, 120px); }
  .socials { flex-direction: row; gap: clamp(24px, 4vw, 56px); }
  .social-row { flex: 1; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; padding-block: 14px; }
  .social-label { font-size: 24px; }
  .ghost-letter { font-size: 320px; bottom: -60px; }
}

/* ─── Bottom CTA (mobile / tablet) ─── */
.bottom-cta {
  position: fixed; inset: auto 0 0; z-index: 40;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-divider);
}
.bottom-cta-inner {
  max-width: calc(var(--maxw) + 2 * var(--pad));
  margin-inline: auto;
  padding: 12px var(--pad) max(16px, env(safe-area-inset-bottom));
}
.bottom-cta-btn { min-height: 50px; letter-spacing: 0.14em; }

@media (min-width: 1024px) {
  .bottom-cta { display: none; }
  .site-footer { padding-bottom: 96px; }
}
