/* ============================================================
   AIRWAVE — Broadcast PC Club
   LAYOUT: Container E — asymmetric-12 (boxed 1280px, section
   headings live in cols 1-4, content in 5-12; hero + form break
   full container width). Spacing scale: AIRY (128 / 72 desktop,
   64 mobile). BEM-lite: .block__elem--mod, sections .s-, utils .u-
   ============================================================ */

:root {
  /* palette */
  --c-bg:        #efece6;   /* light contrast (used once) */
  --c-bg-dark:   #131019;   /* studio night — primary */
  --c-ink:       #efece6;   /* text on dark */
  --c-ink-inv:   #131019;   /* text on light */
  --c-a1:        #f43f5e;   /* ON AIR red */
  --c-a2:        #22d3ee;   /* frequency cyan */
  --c-panel:     #1b1723;
  --c-line:      rgba(34,211,238,0.35);
  --c-mute:      rgba(239,236,230,0.62);

  /* fonts */
  --f-display:   'Monoton', system-ui, sans-serif;   /* 1-2 short words only */
  --f-head:      'Changa', system-ui, sans-serif;    /* long headings */
  --f-body:      'Chivo Mono', ui-monospace, monospace;

  /* radius */
  --r-card: 10px;
  --r-pill: 999px;

  /* spacing scale — 8px step */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 40px; --s-6: 56px; --s-7: 72px; --s-8: 96px;

  /* airy section rhythm */
  --sec-y: 128px;   /* desktop vertical section padding */
  --blk-y: 72px;

  --w-container: 1280px;
}

@media (max-width: 768px) {
  :root { --sec-y: 64px; --blk-y: 40px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-bg-dark);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 var(--s-3); font-weight: 700; line-height: 1.1; }
p { margin: 0 0 var(--s-3); }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- container / grid (asymmetric-12) ---------- */
.container {
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 768px) { .container { padding-inline: 20px; } }

.section { padding-block: var(--sec-y); position: relative; }
.section--dark  { background: var(--c-bg-dark); color: var(--c-ink); }
.section--light { background: var(--c-bg); color: var(--c-ink-inv); }

.grid12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-5);
  align-items: start;
}
.grid12__head { grid-column: 1 / 5; }
.grid12__body { grid-column: 5 / 13; }
@media (max-width: 900px) {
  .grid12__head, .grid12__body { grid-column: 1 / 13; }
  .grid12 { gap: var(--s-4); }
}

/* ---------- utilities ---------- */
.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.u-hairline { border: 1px solid var(--c-line); }

/* ---------- motif: section frequency label ---------- */
.freq {
  font-family: var(--f-body);
  color: var(--c-a2);
  letter-spacing: 0.12em;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
}
.freq__num { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; color: var(--c-a2); line-height: 1; }
.freq__tick { color: var(--c-mute); font-size: 12px; letter-spacing: 0.2em; }
.section--light .freq__num, .section--light .freq { color: #0aa2b8; }

/* ---------- motif: equalizer bullets ---------- */
.eqlist { display: grid; gap: var(--s-2); }
.eqlist li { display: flex; gap: var(--s-2); align-items: flex-start; }
.eq {
  flex: 0 0 auto; display: inline-flex; align-items: flex-end; gap: 2px;
  height: 16px; margin-top: 5px;
}
.eq span {
  width: 3px; background: var(--c-a2); border-radius: 2px;
  transform-origin: bottom;
}
.eq span:nth-child(1) { height: 7px; }
.eq span:nth-child(2) { height: 14px; }
.eq span:nth-child(3) { height: 10px; }

/* ---------- motif: ON AIR board ---------- */
.board {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 6px 14px; border-radius: var(--r-card);
  font-family: var(--f-body); font-size: 12px; letter-spacing: 0.24em;
  border: 1px solid rgba(239,236,230,0.2);
  color: var(--c-mute);
  text-transform: uppercase;
}
.board::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-mute);
}
.board.is-on {
  color: var(--c-a1);
  border-color: var(--c-a1);
  box-shadow: 0 0 18px rgba(244,63,94,0.45), inset 0 0 10px rgba(244,63,94,0.18);
}
.board.is-on::before {
  background: var(--c-a1);
  box-shadow: 0 0 10px var(--c-a1);
}

/* ============================================================
   NAV — nav-hamburger-first
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: rgba(19,16,25,0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}
@media (max-width: 768px) { .nav { padding: 12px 20px; } }
.nav__brand { display: flex; align-items: center; gap: var(--s-2); }
.nav__logo {
  font-family: var(--f-display); font-size: 26px; color: var(--c-a1);
  line-height: 1; letter-spacing: 0.02em;
}
.nav__badge {
  font-family: var(--f-body); font-size: 10px; letter-spacing: 0.18em;
  color: var(--c-a2); border: 1px solid var(--c-line);
  padding: 4px 8px; border-radius: var(--r-pill); text-transform: uppercase;
}
@media (max-width: 480px) { .nav__badge { display: none; } }
.nav__toggle {
  font-family: var(--f-body); font-size: 13px; letter-spacing: 0.16em;
  color: var(--c-ink); background: transparent; text-transform: uppercase;
  border: 1px solid var(--c-line); border-radius: var(--r-pill);
  padding: 8px 18px; cursor: pointer;
}
.nav__toggle:hover { border-color: var(--c-a2); color: var(--c-a2); }

.nav__overlay {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(19,16,25,0.97);
  display: grid; place-items: center;
  opacity: 0; transform: scale(1.03);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.nav__overlay[hidden] { display: none; }
.nav__overlay.is-open { opacity: 1; transform: scale(1); }
.nav__overlay-close {
  position: absolute; top: 20px; right: 28px;
  background: transparent; border: 1px solid var(--c-line); color: var(--c-ink);
  border-radius: var(--r-pill); padding: 8px 16px; cursor: pointer;
  font-family: var(--f-body); letter-spacing: 0.16em; font-size: 13px;
}
.nav__menu { display: grid; gap: var(--s-4); text-align: center; }
.nav__menu a {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(28px, 6vw, 52px); color: var(--c-ink);
}
.nav__menu a span { color: var(--c-a2); font-family: var(--f-body); font-size: 15px; }
.nav__menu a:hover { color: var(--c-a1); }

/* ============================================================
   scroll-spy frequency dial (left rail)
   ============================================================ */
.dial {
  position: fixed; left: 18px; top: 50%; transform: translateY(-50%);
  z-index: 40; display: flex; flex-direction: column; gap: 18px;
  align-items: center;
}
.dial::before {
  content: ""; position: absolute; top: -14px; bottom: -14px; left: 50%;
  width: 1px; background: var(--c-line); transform: translateX(-50%); z-index: -1;
}
.dial__dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid var(--c-a2); background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
.dial__dot.is-active {
  background: var(--c-a2); box-shadow: 0 0 12px var(--c-a2); transform: scale(1.3);
}
.dial__dot span {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--f-body); font-size: 10px; color: var(--c-mute);
  white-space: nowrap; opacity: 0; transition: opacity 0.2s;
}
.dial__dot:hover span, .dial__dot.is-active span { opacity: 1; }
@media (max-width: 1100px) { .dial { display: none; } }

/* ============================================================
   BUTTONS — pill with tuning slider underline
   ============================================================ */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--f-body); font-size: 14px; letter-spacing: 0.06em;
  padding: 13px 26px 15px; border-radius: var(--r-pill); cursor: pointer;
  border: 1px solid var(--c-line); background: transparent; color: var(--c-ink);
  overflow: hidden; transition: color 0.25s ease, border-color 0.25s ease;
}
.btn::after {
  content: ""; position: absolute; left: 14px; bottom: 8px; width: 8px; height: 2px;
  background: var(--c-a2); border-radius: 2px;
  transition: left 0.45s cubic-bezier(.5,.05,.2,1);
}
.btn:hover::after { left: calc(100% - 22px); }
.btn--primary {
  background: var(--c-a1); border-color: var(--c-a1); color: #fff;
}
.btn--primary::after { background: #fff; }
.btn--primary:hover { color: #fff; box-shadow: 0 0 22px rgba(244,63,94,0.4); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================================================
   HERO — hero-ticker-embed + Frequency Tune animation
   ============================================================ */
.s-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-block: 128px 0; overflow: hidden;
  background-image: linear-gradient(180deg, rgba(19,16,25,0.34) 0%, rgba(19,16,25,0.24) 45%, rgba(19,16,25,0.7) 100%), url("../images/airwave-backdrop.jpg");
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.s-hero__bg { position: absolute; inset: 0; z-index: 0; }
.s-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
.s-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  /* Directional scrim: darker on the left/bottom behind the text, lighter and photo-forward on the right */
  background:
    linear-gradient(90deg, rgba(19,16,25,0.82) 0%, rgba(19,16,25,0.52) 34%, rgba(19,16,25,0.12) 62%, rgba(19,16,25,0.04) 100%),
    linear-gradient(180deg, rgba(19,16,25,0.1) 0%, rgba(19,16,25,0.22) 62%, var(--c-bg-dark) 100%);
}
.s-hero__inner { position: relative; z-index: 1; width: 100%; }
.s-hero__badge {
  font-family: var(--f-body); font-size: 12px; letter-spacing: 0.2em;
  color: var(--c-a2); text-transform: uppercase; margin-bottom: var(--s-4);
  display: inline-flex; align-items: center; gap: var(--s-2);
}

/* Frequency Tune heading */
.tune { position: relative; display: inline-block; }
.tune__word {
  font-family: var(--f-display);
  font-size: clamp(56px, 13vw, 168px);
  line-height: 0.9; color: var(--c-ink); letter-spacing: 0.01em;
  margin: 0;
}
.tune__ghost {
  position: absolute; inset: 0; color: var(--c-a1);
  opacity: 0.55; pointer-events: none;
  transform: translateX(10px);
  filter: blur(1.5px);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), opacity 1.2s ease, filter 1.2s ease;
}
.tune__ghost--b { color: var(--c-a2); transform: translateX(-10px); }
.tune.is-tuned .tune__ghost { transform: translateX(0); opacity: 0; filter: blur(0); }
.tune__dot {
  display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  background: transparent; border: 2px solid var(--c-a1); margin-left: 8px;
  vertical-align: middle; transition: background 0.6s ease, box-shadow 0.6s ease;
}
.tune.is-tuned .tune__dot { background: var(--c-a1); box-shadow: 0 0 16px var(--c-a1); }

.s-hero__sub {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(18px, 2.4vw, 28px); color: var(--c-ink);
  margin-top: var(--s-4); max-width: 30ch;
}
.s-hero__lead { color: var(--c-mute); max-width: 46ch; margin-top: var(--s-3); }
.s-hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }

/* hero tuning scale line */
.tunescale {
  position: relative; margin-top: var(--s-6); height: 40px; max-width: 520px;
  border-bottom: 1px solid var(--c-line);
}
.tunescale__tick {
  position: absolute; bottom: 0; width: 1px; height: 8px; background: var(--c-mute);
}
.tunescale__mark {
  position: absolute; bottom: 0; width: 2px; height: 20px; background: var(--c-a1);
}
.tunescale__mark::after {
  content: "98.5"; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-body); font-size: 10px; color: var(--c-a1); white-space: nowrap;
}
.tunescale__slider {
  position: absolute; bottom: -6px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--c-a2); box-shadow: 0 0 10px var(--c-a2);
  left: 8%;
}

/* now playing ticker */
.ticker {
  position: relative; z-index: 1; margin-top: var(--s-6);
  border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);
  overflow: hidden; white-space: nowrap; padding: 12px 0;
}
.ticker__track {
  display: inline-block; white-space: nowrap;
  animation: marquee 26s linear infinite; will-change: transform;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--f-body); font-size: 13px; color: var(--c-mute);
  padding-inline: var(--s-4);
}
.ticker__item b { color: var(--c-a2); font-weight: 400; }
.ticker__note { color: var(--c-a1); display: inline-block; }
.ticker__note.bounce { animation: notebounce 0.5s ease; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes notebounce { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-6px)} }

/* now-on-air line */
.nowair {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--f-body); font-size: 12px; color: var(--c-mute);
  margin-top: var(--s-4);
}
.nowair b { color: var(--c-a2); font-weight: 400; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.s-title {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(30px, 4.5vw, 52px); line-height: 1.05;
}
.s-title--neon { font-family: var(--f-display); font-size: clamp(34px, 5.5vw, 64px); color: var(--c-a1); }
.s-intro { color: var(--c-mute); max-width: 52ch; }
.section--light .s-intro { color: rgba(19,16,25,0.7); }

/* ============================================================
   CARDS — stations / booths
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
@media (max-width: 700px) { .cards { grid-template-columns: 1fr; gap: var(--s-5); } }
.card {
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  background: var(--c-panel); overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover {
  border-color: var(--c-a2);
  box-shadow: 0 0 24px rgba(34,211,238,0.18);
  transform: translateY(-4px);
}
.card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.card__top { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); }
.card__title { font-family: var(--f-head); font-weight: 700; font-size: 26px; }
.card__meta { color: var(--c-mute); font-size: 13px; }
.card__spec { display: grid; gap: 6px; margin-top: var(--s-2); }
.card__spec div { display: flex; justify-content: space-between; gap: var(--s-2); font-size: 13px; border-bottom: 1px dashed rgba(34,211,238,0.2); padding-bottom: 4px; }
.card__spec span:last-child { color: var(--c-a2); }

/* ============================================================
   SPEC / hardware panel
   ============================================================ */
.spec-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s-4); }
@media (max-width: 700px) { .spec-grid { grid-template-columns: 1fr; } }
.spec {
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--s-4); background: var(--c-panel);
}
.spec h3 { font-family: var(--f-head); font-size: 18px; color: var(--c-a2); }

/* ============================================================
   RATES table
   ============================================================ */
.rates { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-4); }
@media (max-width: 900px) { .rates { grid-template-columns: 1fr; } }
.rate {
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--s-5) var(--s-4); background: var(--c-panel);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.rate--feature { border-color: var(--c-a1); }
.rate__slot { font-family: var(--f-body); font-size: 12px; letter-spacing: 0.16em; color: var(--c-a2); text-transform: uppercase; }
.rate__price { font-family: var(--f-head); font-weight: 700; font-size: 40px; line-height: 1; }
.rate__price small { font-size: 14px; color: var(--c-mute); font-weight: 400; }
.rate__note { color: var(--c-mute); font-size: 13px; }

/* ============================================================
   ON AIR feature (split)
   ============================================================ */
.onair-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-6); align-items: center; }
@media (max-width: 900px) { .onair-split { grid-template-columns: 1fr; } }
.onair-card {
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--s-5); background: var(--c-panel); display: grid; gap: var(--s-3);
}
.onair-card .board { align-self: flex-start; }

/* ============================================================
   PROGRAMME (console light section) — evening grid
   ============================================================ */
.programme { display: grid; gap: 2px; border: 1px solid rgba(19,16,25,0.18); border-radius: var(--r-card); overflow: hidden; }
.programme__row {
  display: grid; grid-template-columns: 120px 1fr 1fr; gap: var(--s-3);
  padding: var(--s-3) var(--s-4); background: #f7f5f0; align-items: center;
}
.programme__row--head { background: #131019; color: var(--c-bg); font-family: var(--f-body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.programme__time { font-family: var(--f-head); font-weight: 700; color: var(--c-a1); }
.programme__slot { font-weight: 700; }
.programme__who { color: rgba(19,16,25,0.7); font-size: 13px; }
@media (max-width: 620px) {
  .programme__row { grid-template-columns: 90px 1fr; }
  .programme__who { grid-column: 1 / 3; }
}

/* console band image */
.console-band {
  margin-top: var(--s-6); border-radius: var(--r-card); overflow: hidden;
  position: relative; border: 1px solid rgba(19,16,25,0.18);
}
.console-band img { width: 100%; aspect-ratio: 16/6; object-fit: cover; }
.console-band__scale {
  position: absolute; left: 0; right: 0; bottom: 0; height: 34px;
  background: linear-gradient(180deg, transparent, rgba(19,16,25,0.55));
  display: flex; align-items: flex-end; gap: 6px; padding: 0 14px 8px;
}
.console-band__scale span { flex: 0 0 1px; height: 8px; background: var(--c-a2); opacity: 0.6; }
.console-band__scale span:nth-child(4n) { height: 16px; }

/* ============================================================
   LOG entries
   ============================================================ */
.logs { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-4); }
@media (max-width: 900px) { .logs { grid-template-columns: 1fr; } }
.log {
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--s-4); background: var(--c-panel);
}
.log__freq { font-family: var(--f-body); color: var(--c-a2); font-size: 12px; letter-spacing: 0.14em; }
.log h3 { font-family: var(--f-head); font-size: 19px; margin-top: 6px; }
.log p { color: var(--c-mute); font-size: 14px; margin: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
/* Broadcast gallery: uniform wide banners, one per row */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
.shot {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  border: 1px solid var(--c-line); display: flex; flex-direction: column;
}
.shot img { width: 100%; aspect-ratio: 3 / 2; height: auto; object-fit: cover; display: block; }
@media (max-width: 640px) {
  .shot img { aspect-ratio: 3 / 2; }
}
.shot figcaption {
  padding: var(--s-3) var(--s-4); font-size: 13px; color: var(--c-mute);
  display: flex; align-items: center; gap: var(--s-2); background: var(--c-panel);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: var(--s-2); }
.faq__item { border: 1px solid rgba(19,16,25,0.18); border-radius: var(--r-card); background: #f7f5f0; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  padding: var(--s-4); font-family: var(--f-head); font-weight: 700; font-size: 17px;
  color: var(--c-ink-inv); display: flex; justify-content: space-between; gap: var(--s-3); align-items: center;
}
.faq__q::after { content: "+"; color: var(--c-a1); font-size: 22px; transition: transform 0.3s; }
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__a p { padding: 0 var(--s-4) var(--s-4); color: rgba(19,16,25,0.72); margin: 0; }

/* ============================================================
   FORM
   ============================================================ */
.s-form { }
.form {
  display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s-4);
  max-width: 760px;
}
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--f-body); font-size: 12px; letter-spacing: 0.12em; color: var(--c-a2); text-transform: uppercase; }
.field input, .field select {
  font-family: var(--f-body); font-size: 15px; color: var(--c-ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--c-line);
  padding: 10px 2px; border-radius: 0; position: relative;
  appearance: none;
}
.field select option { background: var(--c-bg-dark); color: var(--c-ink); }
.field { position: relative; }
.field__line {
  position: absolute; left: 0; bottom: 0; width: 8px; height: 2px;
  background: var(--c-a2); transition: width 0.5s cubic-bezier(.5,.05,.2,1), box-shadow 0.3s;
}
.field input:focus ~ .field__line,
.field select:focus ~ .field__line { width: 100%; box-shadow: 0 0 8px var(--c-a2); }
.field input:focus, .field select:focus { outline: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { grid-column: 1 / -1; }
#formStatus { grid-column: 1 / -1; font-family: var(--f-body); font-size: 14px; margin: 0; }
#formStatus.success { color: var(--c-a2); }
#formStatus.error { color: var(--c-a1); }

/* ============================================================
   FOOTER — footer-minimal-centered
   ============================================================ */
.footer {
  text-align: center; padding-block: var(--s-8) var(--s-6);
  border-top: 1px solid var(--c-line);
  display: grid; gap: var(--s-3); justify-items: center;
}
.footer__logo { font-family: var(--f-display); font-size: 40px; color: var(--c-a1); }
.footer__links { display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: center; }
.footer__links a { color: var(--c-mute); font-size: 13px; letter-spacing: 0.08em; }
.footer__links a:hover { color: var(--c-a2); }
.footer__contact { display: grid; gap: var(--s-1); justify-items: center; }
.footer__contact p {
  margin: 0; font-size: 13px; color: var(--c-mute);
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  justify-content: center; align-items: baseline;
}
.footer__contact span {
  font-family: var(--f-body); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--c-a2);
}
.footer__contact a:hover { color: var(--c-a2); }
.footer__hours { color: var(--c-mute); font-size: 13px; }
.footer__disclaimer {
  font-family: var(--f-body); font-size: 14px; color: var(--c-a1);
  letter-spacing: 0.04em; border: 1px solid var(--c-a1); border-radius: var(--r-pill);
  padding: 8px 20px; margin-top: var(--s-2);
}
.footer__fine { color: var(--c-mute); font-size: 12px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  max-width: 760px; margin-inline: auto;
  background: rgba(27,23,35,0.96); backdrop-filter: blur(10px);
  border: 1px solid var(--c-a2); border-radius: var(--r-card);
  padding: var(--s-4); display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--s-3); justify-content: space-between;
  transform: translateY(24px); opacity: 0;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), opacity 0.5s ease;
}
.cookie.is-in { transform: translateY(0); opacity: 1; }
.cookie[hidden] { display: none; }
.cookie__wave { display: inline-flex; align-items: flex-end; gap: 3px; height: 20px; }
.cookie__wave span { width: 3px; background: var(--c-a1); border-radius: 2px; animation: cwave 1.1s ease-in-out infinite; }
.cookie__wave span:nth-child(1){height:8px;animation-delay:0s}
.cookie__wave span:nth-child(2){height:18px;animation-delay:.15s}
.cookie__wave span:nth-child(3){height:12px;animation-delay:.3s}
.cookie__wave span:nth-child(4){height:16px;animation-delay:.45s}
@keyframes cwave { 0%,100%{transform:scaleY(0.5)} 50%{transform:scaleY(1)} }
.cookie__text { flex: 1 1 320px; font-size: 13px; color: var(--c-ink); }
.cookie__text a { color: var(--c-a2); text-decoration: underline; }
.cookie__actions { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.cookie .btn { padding: 9px 18px 11px; font-size: 13px; }

/* ============================================================
   LEGAL pages (narrow column)
   ============================================================ */
.legal { max-width: 760px; margin-inline: auto; padding: 140px 24px var(--s-8); }
.legal h1 { font-family: var(--f-head); font-size: clamp(30px,5vw,48px); }
.legal h2 { font-family: var(--f-head); font-size: 22px; color: var(--c-a2); margin-top: var(--s-6); }
.legal p, .legal li { color: var(--c-mute); }
.legal ul { display: grid; gap: var(--s-2); margin-top: var(--s-2); }
.legal ul li { display: flex; gap: var(--s-2); }
.legal__back { display: inline-flex; align-items: center; gap: var(--s-2); margin-bottom: var(--s-4); color: var(--c-a2); font-size: 13px; }

/* ============================================================
   scroll-reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .tune__ghost { opacity: 0; transform: none; filter: none; }
  .tune__dot { background: var(--c-a1); }
  .ticker__track { animation: none; }
  .cookie { transform: none; opacity: 1; }
}
