/* ============================================================
   PROJECT ANTHOLOGY — Immersive Dance Show
   Dark · Blood-red · White  |  Bebas Neue + Inter
   ============================================================ */

/* Self-hosted fonts (downloaded from Google Fonts) — latin + latin-ext
   subsets only, which covers English and Czech diacritics. Self-hosting
   avoids sending visitors' IP addresses to Google just to load type,
   and removes a render-blocking third-party request (faster LCP). */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/bebas-neue-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/bebas-neue-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --black: #0a0a0a;
  --black-2: #121212;
  --surface: #161616;
  --red: #d81f2a;
  --red-deep: #b3121c;
  --red-bg: #c1121f;
  --white: #f6f5f3;
  --grey: #9a9a9a;
  --grey-dim: #6a6a6a;
  --line: rgba(255, 255, 255, 0.12);

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 80px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

::selection { background: var(--red); color: #fff; }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.85); }

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: clamp(48px, 8vw, 132px);
}

.section-head { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section-head__lead {
  color: var(--grey);
  max-width: 560px;
  margin-top: 26px;
  font-size: 17px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 16px 34px 13px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}
.btn:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }
.btn--sm { font-size: 15px; padding: 11px 22px 8px; }
.btn--full { width: 100%; font-size: 22px; padding: 18px; margin-top: 6px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  padding: 12px var(--pad);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  display: flex;
  gap: 8px;
}
.nav__logo span { color: var(--red); }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--red); }

/* language switch */
.lang { display: flex; align-items: center; gap: 6px; margin-left: 20px; }
.lang a {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey); padding: 4px 2px; transition: color 0.2s ease;
  text-decoration: none;
}
.lang a:hover { color: #fff; }
.lang a.active { color: var(--red); cursor: default; }
.lang span { color: var(--grey-dim); font-size: 11px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: #fff; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--pad) 80px;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 20%, rgba(216, 31, 42, 0.28), transparent 55%),
    linear-gradient(135deg, #1a0608 0%, #0a0a0a 55%, #000 100%);
  background-size: cover;
  background-position: center right;
  background-color: #0a0a0a;
  z-index: 0;
}
.hero__media::after {
  /* thin geometric circle overlay (à la reference) */
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: min(92vw, 1050px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.62) 38%, rgba(10,10,10,0.12) 68%, rgba(10,10,10,0.42) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, transparent 24%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}
.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.005em;
  font-size: clamp(52px, 8.4vw, 128px);
  margin-bottom: 34px;
}
.hero__title .mark { position: relative; display: inline-block; color: var(--white); }
.hero__title .mark__circle {
  position: absolute;
  left: -8%; top: -14%;
  width: 116%; height: 128%;
  color: var(--red);
  overflow: visible;
  pointer-events: none;
}
.hero__title .mark__circle path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw 1.1s ease 0.5s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__sub {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--grey);
  writing-mode: vertical-rl;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--black-2);
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 32s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.marquee__track i { color: var(--red); font-style: normal; font-size: 22px; align-self: center; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience { padding: clamp(90px, 12vh, 160px) 0; }
.experience__grid {
  max-width: var(--maxw);
  margin: 60px auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.experience__text p { color: var(--grey); font-size: 18px; margin-bottom: 22px; }
.experience__text strong { color: var(--white); font-weight: 500; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--black); padding: 30px 26px; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  color: #fff;
}
.stat__num i { color: var(--red); font-style: normal; font-size: 0.5em; }
.stat__label { display: block; margin-top: 10px; color: var(--grey); font-size: 14px; }

/* ============================================================
   SHOWREEL
   ============================================================ */
.showreel {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.showreel__media {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 80% at 50% 40%, rgba(216,31,42,0.25), transparent 60%),
    linear-gradient(160deg, #241014 0%, #0a0a0a 70%);
  background-size: cover;
  background-position: center;
}
.showreel__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.showreel.playing .showreel__video { opacity: 1; pointer-events: auto; z-index: 3; }
.showreel.playing .showreel__scrim,
.showreel.playing .showreel__play { opacity: 0; pointer-events: none; }
.showreel__scrim { position: absolute; inset: 0; background: rgba(10,10,10,0.4); z-index: 2; }
.showreel__play {
  position: relative;
  z-index: 4;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.showreel__play-icon {
  width: 96px; height: 96px;
  display: grid; place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 30px;
  padding-left: 6px;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.showreel__play:hover .showreel__play-icon { background: var(--red); border-color: var(--red); transform: scale(1.08); }
.showreel__play-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================================
   FORMATS
   ============================================================ */
.formats { padding: clamp(90px, 12vh, 160px) 0; }
.formats__grid {
  max-width: var(--maxw);
  margin: 64px auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.fcard {
  background: var(--black);
  padding: 40px 32px 46px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
  position: relative;
}
.fcard:hover { background: rgba(216, 31, 42, 0.08); }
.fcard__no {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--red);
  letter-spacing: 0.1em;
}
.fcard h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  text-transform: uppercase;
  line-height: 1;
  margin: auto 0 16px;
}
.fcard p { color: var(--grey); font-size: 15px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: clamp(90px, 12vh, 160px) 0 90px; }
.gallery__grid {
  max-width: var(--maxw);
  margin: 60px auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}
.gallery__grid .g-item { aspect-ratio: 3 / 4; }
.g-item {
  background: linear-gradient(150deg, #1c0d10 0%, #0a0a0a 60%);
  position: relative;
  overflow: hidden;
}
.g-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* fallback glow — only shown if a photo fails to load (see script.js onerror) */
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 70% at 30% 20%, rgba(216,31,42,0.22), transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.g-item.img-error::after { opacity: 1; }
.g-item.img-error img { display: none; }
.g-item::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(216,31,42,0);
  transition: background 0.3s ease;
  z-index: 1;
}
.g-item:hover::before { background: rgba(216,31,42,0.16); }

.gallery__note { text-align: center; margin-top: 30px; color: var(--grey-dim); font-size: 13px; }
.gallery__note code { color: var(--red); background: rgba(216,31,42,0.1); padding: 2px 7px; border-radius: 3px; }

/* ============================================================
   OFFER / BOOKING
   ============================================================ */
.offer {
  position: relative;
  padding: clamp(90px, 12vh, 160px) 0;
  background:
    radial-gradient(70% 80% at 80% 30%, rgba(179,18,28,0.4), transparent 60%),
    var(--black);
}
.offer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  /* minmax(0,1fr) — not plain 1fr — so a long unbreakable word (e.g. Czech
     "nezapomenutelného") in the headline can't force this track wider than
     half the row and squeeze the form column into a sliver */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.offer__left h2 { overflow-wrap: break-word; word-break: break-word; }
.offer__left h2 span { color: var(--red); }
.offer__lead { color: var(--grey); font-size: 18px; margin: 26px 0 30px; max-width: 460px; }
.offer__list { list-style: none; display: grid; gap: 14px; }
.offer__list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}
.offer__list li::before {
  content: "✕";
  position: absolute; left: 0; top: 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.offer__form {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  padding: clamp(26px, 3vw, 40px);
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--grey-dim); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--black-2); color: #fff; }
.field textarea { resize: vertical; }
.field--row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; }
.offer__form-note { margin-top: 16px; font-size: 14px; min-height: 20px; }
.offer__form-note.ok { color: #4cc77e; }
.offer__form-note.err { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 50px var(--pad);
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
}
.footer__brand p { color: var(--grey-dim); font-size: 13px; margin-top: 4px; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--red); }
.footer__copy { color: var(--grey-dim); font-size: 12px; width: 100%; text-align: center; padding-top: 10px; border-top: 1px solid var(--line); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .experience__grid,
  .offer__inner { grid-template-columns: 1fr; }
  .formats__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

/* nav collapses to a burger early enough that the longer Czech labels
   (+ language switch) never crowd the bar */
@media (max-width: 960px) {
  .nav__links, .nav > .btn--sm { display: none; }
  .lang { margin-left: auto; margin-right: 14px; }
  .nav__burger { display: flex; }
  .nav.mobile-open { background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); flex-wrap: wrap; }
  .nav.mobile-open .nav__links {
    display: flex; flex-direction: column; width: 100%; gap: 18px;
    padding: 24px 0 10px; align-items: flex-start;
  }
  .nav.mobile-open .nav__links a { font-size: 18px; }
}

@media (max-width: 680px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .formats__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }

  /* on a tall narrow screen "cover" crops almost all of the image's width —
     re-center on the dancer instead of the right-edge curtain */
  .hero__media { background-position: 44% center; }

  /* keep the scroll hint out of the button row: lay it flat and let it
     flow below the CTAs instead of floating over them */
  .hero__scroll {
    position: static;
    writing-mode: horizontal-tb;
    transform: none;
    margin: 28px 0 0;
    text-align: center;
    animation: none;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px var(--pad);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--red);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cookie.show { transform: none; }
.cookie__text { font-size: 14px; color: var(--grey); max-width: 720px; line-height: 1.55; }
.cookie__text a { color: var(--red); text-decoration: underline; }
.cookie__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 680px) {
  .cookie { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; text-align: center; }
}

/* ---- Form consent checkbox ---- */
.field--check { display: block; }
.check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.check input {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--red);
  flex: 0 0 auto;
  cursor: pointer;
}
.check span { font-size: 13px; color: var(--grey); line-height: 1.5; }
.check a { color: var(--red); text-decoration: underline; }

/* ============================================================
   LEGAL / POLICY PAGE
   ============================================================ */
.legal { max-width: 860px; margin: 0 auto; padding: 140px var(--pad) 100px; }
.legal__back {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); text-decoration: none;
}
.legal__back:hover { text-decoration: underline; }
.legal h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.92;
  margin-bottom: 12px;
}
.legal__updated { color: var(--grey-dim); font-size: 13px; margin-bottom: 50px; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1;
  margin: 46px 0 16px;
  color: #fff;
}
.legal h3 { font-size: 16px; font-weight: 600; margin: 22px 0 8px; color: #fff; }
.legal p, .legal li { color: var(--grey); font-size: 16px; line-height: 1.7; }
.legal p { margin-bottom: 16px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--red); text-decoration: underline; }
.legal strong { color: var(--white); font-weight: 500; }
.legal .fillin {
  color: var(--red);
  background: rgba(216, 31, 42, 0.12);
  padding: 1px 7px; border-radius: 3px;
  font-style: normal;
}
.legal__table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; font-size: 14px; }
.legal__table th, .legal__table td {
  text-align: left; padding: 12px 14px;
  border: 1px solid var(--line); color: var(--grey);
  vertical-align: top;
}
.legal__table th { color: #fff; font-weight: 600; background: var(--black-2); }
.legal__table-wrap { overflow-x: auto; }
