/* ============================================================
   TH;EN – Stylesheet
   Minimal. Black / white. One typeface.
   ============================================================ */

:root {
  --black: #000000;
  --ink: #0a0a0a;
  --ink-2: #141414;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.35);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --muted-2: rgba(255, 255, 255, 0.32);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --nav-h: 72px;
  --nav-logo-h: 26px;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --max: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; background: var(--black); }
body {
  font-family: var(--font);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-intro { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- Headlines: Inter Black Italic ---------- */
.hero__title, .section__title, .featured__title, .label__name, .event__name {
  font-weight: 800;
  font-style: italic;
}
/* Secondary text: lighter weight, slightly transparent */
.hero__date, .event__day, .product__name, .release__title, .track__name {
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn--light { background: var(--white); color: var(--black); }
.btn--light:hover { background: transparent; color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--white); }
.link-btn {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.link-btn:hover { color: var(--white); border-color: var(--white); }

/* ============================================================
   GATE – Coming soon / Passwort (js/gate.js)
   ============================================================ */
.gate { display: none; }
html.is-locked body > :not(.gate) { display: none !important; }
html.is-locked body { overflow: hidden; }
html.is-locked .gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 24px;
}
.gate__logo {
  width: min(60vw, 420px);
  height: auto;
  margin-bottom: 18px;
  opacity: 0;
  filter: blur(20px);
  animation: introLogoIn .9s var(--ease) forwards;
}
.gate__title {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}
.gate__text { font-size: 14px; color: var(--muted); }
.gate__link {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line-strong);
  transition: color .2s, border-color .2s;
}
.gate__link:hover { color: var(--white); border-color: var(--white); }
.gate__toggle {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 10px;
  transition: color .2s;
}
.gate__toggle:hover { color: var(--white); }
.gate__form {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.gate__form[hidden] { display: none; }
.gate__input {
  font: inherit;
  font-size: 14px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 18px;
  min-height: 44px;
  width: 200px;
  outline: none;
}
.gate__input:focus { border-color: var(--white); }
.gate__error { width: 100%; font-size: 12px; color: #ff7a7a; }

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--black);
  display: grid;
  place-items: center;
}
.intro__logo {
  width: min(60vw, 900px);
  height: auto;
  opacity: 0;
  filter: blur(20px);
  will-change: transform, opacity, filter;
  animation: introLogoIn .7s var(--ease) forwards;
}
@keyframes introLogoIn {
  from { opacity: 0; filter: blur(20px); transform: scale(0.92); }
  to   { opacity: 1; filter: blur(0);    transform: scale(1); }
}
.intro.is-leaving { animation: introOut .6s var(--ease) forwards; }
@keyframes introOut {
  to { opacity: 0; visibility: hidden; }
}
body.no-intro .intro { display: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav__links { display: flex; gap: 32px; }
.nav__links--left  { justify-content: flex-start; }
.nav__links--right { justify-content: flex-end; }
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }
.nav__logo { display: block; justify-self: center; }
.nav__logo img { height: var(--nav-logo-h); width: auto; }
body.is-intro .nav__logo { visibility: hidden; }
body.is-intro .nav__links,
body.is-intro .nav__burger { opacity: 0; }
.nav__links, .nav__burger { transition: opacity .6s var(--ease); }

.nav__burger {
  display: none;
  grid-column: 3;
  justify-self: end;
  width: 40px; height: 40px;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 10px; right: 10px;
  height: 1.5px; background: var(--white);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 24px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 19.5px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { top: 19.5px; transform: rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.96);
  padding: 32px var(--gutter);
  flex-direction: column;
  gap: 24px;
}
.nav__mobile a {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__mobile.is-open { display: flex; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__inner { grid-template-columns: 1fr auto 1fr; }
  .nav__logo { grid-column: 2; }
}

/* ============================================================
   HERO – NEXT EVENT
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);   /* nowrap title must not widen the grid */
  align-items: end;
  overflow: hidden;
  background: var(--black);
}
.hero__media { position: absolute; inset: 0; }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero__video.is-ready { opacity: 1; }
.hero__fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 70% 20%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(90% 70% at 20% 90%, rgba(255,255,255,0.06), transparent 60%),
    var(--ink);
  background-size: cover;          /* poster image set by JS while the video loads */
  background-position: center;
  opacity: 1;
  transition: opacity 1.2s var(--ease);
}
.hero__video.is-ready + .hero__fallback { opacity: 0; }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(56px, 10vh, 120px);
}
.hero__kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(36px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-left: -0.04em;
  white-space: nowrap;   /* JS shrinks long names to fit one line */
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 28px;
  margin-top: 26px;
  margin-bottom: 34px;
}
.hero__date {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero__place {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* staggered reveal after the intro */
.hero__kicker, .hero__title, .hero__meta, .hero__content .btn {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
body.is-ready .hero__kicker { opacity: 1; transform: none; transition-delay: .05s; }
body.is-ready .hero__title  { opacity: 1; transform: none; transition-delay: .15s; }
body.is-ready .hero__meta   { opacity: 1; transform: none; transition-delay: .28s; }
body.is-ready .hero__content .btn { opacity: 1; transform: none; transition-delay: .4s; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px; height: 40px;
  opacity: 0;
  transition: opacity 1s var(--ease) .8s;
}
body.is-ready .hero__scroll { opacity: 1; }
.hero__scroll span {
  position: absolute; left: 50%; top: 0;
  width: 1px; height: 100%;
  background: var(--line-strong);
  transform-origin: top;
  animation: scrollLine 1.8s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: clamp(80px, 12vh, 150px) 0;
  border-top: 1px solid var(--line);
  background: var(--black);
  scroll-margin-top: var(--nav-h);
}
.section--alt { background: var(--ink); }
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section__inner--narrow { max-width: 900px; }
.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 6vh, 64px);
}
.section__title {
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
}
.section__sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.section__subtitle {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: clamp(56px, 8vh, 88px) 0 24px;
}

/* ---------- Events list ---------- */
.events { border-top: 1px solid var(--line); }
.event {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity .3s;
}
.event__date {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.event__day { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.event__month { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.event__name { font-size: clamp(16px, 1.6vw, 20px); text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.event__place { font-size: 13px; color: var(--muted); margin-top: 8px; letter-spacing: 0.04em; }
.event__badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--white);
  border-radius: 999px;
  margin-left: 12px;
  vertical-align: middle;
}
.events--past .event { opacity: 0.4; }
.events__past-toggle { margin-top: 22px; }
.events__empty { padding: 32px 0; color: var(--muted); }

@media (max-width: 640px) {
  .event { grid-template-columns: 84px 1fr; }
  .event .btn { grid-column: 2; justify-self: start; }
  .event__day { font-size: 24px; }
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.grid--products { grid-template-columns: repeat(4, 1fr); }
.grid--releases { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--products, .grid--releases { grid-template-columns: repeat(2, 1fr); } }

.placeholder-box, .product__img, .featured__art, .release__art, .label__mark {
  display: grid;
  place-items: center;
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Products ---------- */
.product__img { aspect-ratio: 4 / 5; margin-bottom: 16px; }
.product__name { font-size: 15px; font-weight: 500; }
.product__price { font-size: 13px; color: var(--muted); margin: 4px 0 14px; }
.product .btn { min-height: 38px; padding: 0 18px; font-size: 11px; }

/* ---------- Featured release ---------- */
.featured {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.featured__art { aspect-ratio: 1 / 1; }
.featured__label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.featured__title {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
}
.featured__artists { font-size: 16px; color: var(--muted); margin: 14px 0 28px; }
.featured__links { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 760px) { .featured { grid-template-columns: 1fr; } }

/* ---------- Releases ---------- */
.release__art { aspect-ratio: 1 / 1; margin-bottom: 14px; }
.release__title { font-size: 15px; font-weight: 500; }
.release__meta { font-size: 12px; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }

/* ---------- Tracks ---------- */
.tracks { border-top: 1px solid var(--line); }
.track {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s var(--ease);
}
.track:hover { padding-left: 8px; }
.track__no { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }
.track__name { font-size: 16px; font-weight: 500; }
.track__len { font-size: 12px; color: var(--muted); }

/* ---------- Label ---------- */
.label {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.label__mark { aspect-ratio: 1 / 1; padding: 22px; transition: border-color .25s; }
.label__mark:hover { border-color: var(--white); }
.label__logo { width: 100%; height: 100%; object-fit: contain; }
.label__text { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.8); }
.label__text p + p { margin-top: 18px; }
.label__name {
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}
.label__links { display: flex; gap: 22px; }
.label__links a,
.label__text p:not(.label__links) a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line-strong);
  transition: color .2s, border-color .2s;
}
.label__links a:hover { color: var(--white); border-color: var(--white); }
@media (max-width: 640px) { .label { grid-template-columns: 1fr; } .label__mark { max-width: 200px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vh, 96px) 0 40px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.footer__logo { height: 22px; width: auto; opacity: 0.9; }
.footer__social { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.footer__social a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.footer__social a:hover { color: var(--white); }
.footer__booking { font-size: 14px; color: var(--muted); }
.footer__booking a { color: var(--white); border-bottom: 1px solid var(--line-strong); }
.footer__legal { font-size: 12px; color: var(--muted-2); }
.footer__legal a { transition: color .2s; }
.footer__legal a:hover { color: var(--white); }

/* ============================================================
   HERO ACTIONS
   ============================================================ */
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__actions .btn { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
body.is-ready .hero__actions .btn { opacity: 1; transform: none; transition-delay: .4s; }
body.is-ready .hero__actions .btn + .btn { transition-delay: .5s; }
.hero .btn--ghost { border-color: rgba(255,255,255,0.6); }
.hero .btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ============================================================
   LABEL – full-bleed section with background slideshow
   ============================================================ */
.section--label {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(80px, 12vh, 150px) 0;
}
.label-bg { position: absolute; inset: 0; background: var(--ink); }
.label-bg__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s var(--ease), transform 7s linear;
}
.label-bg__slide.is-active { opacity: 1; transform: scale(1); }
.label-bg__shade {
  position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 50% 50%, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
}
.label__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}
.label__center .section__sub { margin: 0; }
.label__center .label__logo {
  width: min(52vw, 300px);
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.6));
}
.label__center .label__text {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}
.label__center .label__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.label__center .label__links a { border-bottom: 0; }

/* ============================================================
   MUSIC – rendered from content-data.js
   ============================================================ */
.featured__art img, .release__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.release__art { overflow: hidden; }
.release { display: block; transition: opacity .2s; }
a.release:hover { opacity: .85; }
.track { text-decoration: none; }
.track__meta { font-size: 12px; color: var(--muted); }
.grid--products-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 640px; }
.product__img { overflow: hidden; }
.product__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product__note { color: var(--muted-2); }
.shop__note { margin-top: 28px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }

/* ============================================================
   BOOKING PAGE / FORMS
   ============================================================ */
.page-booking main { padding-top: var(--nav-h); }
.section--page { border-top: 0; min-height: calc(100vh - var(--nav-h)); }
.section__head--stack { flex-direction: column; align-items: flex-start; gap: 10px; }

.form { display: flex; flex-direction: column; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
  cursor: pointer;
}
.field select option { background: var(--ink); color: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--white); }
.field input.is-invalid, .field select.is-invalid { border-bottom-color: #ff5a5a; }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .6; cursor: pointer; }

.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 10px; }
.form__note { font-size: 13px; color: var(--muted); }
.form__note a { color: var(--white); border-bottom: 1px solid var(--line-strong); }
.form__error { font-size: 13px; color: #ff7a7a; }
.form__success { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.form__success p { color: rgba(255,255,255,0.8); font-size: 17px; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro__logo, .intro, .hero__scroll span { animation: none !important; }
  .hero__kicker, .hero__title, .hero__meta, .hero__content .btn { transition: none; }
}
