/* ============================================================
   LA MAREA — Tango Marathon
   Theme: the tide. Deep sea, teal water, warm sand, foam.
   ============================================================ */

:root {
  --ink:        #0a1a24;
  --sea:        #0b2531;
  --sea-2:      #10333f;
  --teal:       #2a8f9c;
  --teal-deep:  #1c5f6a;
  --sand:       #e3cfa8;
  --sand-soft:  #efe4cf;
  --foam:       #f5f1e8;
  --foam-dim:   #d9d2c2;
  --coral:      #e2674c;
  --coral-dark: #c9543b;
  --white:      #ffffff;
  --muted:      #8fa6ae;
  --line:       rgba(245, 241, 232, 0.14);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Barlow", "Inter", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--sea);
  color: var(--foam);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gut); }

section { position: relative; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--teal);
}

.serif-em { font-style: italic; color: var(--sand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 13px;
  padding: 15px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--coral { background: var(--coral); color: var(--white); }
.btn--coral:hover { background: var(--coral-dark); }
.btn--ghost { border-color: var(--line); color: var(--foam); }
.btn--ghost:hover { border-color: var(--sand); color: var(--sand); }
.btn--sand { background: var(--sand); color: var(--sea); }
.btn--sand:hover { background: var(--sand-soft); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gut);
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 22, 30, 0.9);
  backdrop-filter: blur(10px);
  padding-block: 13px;
  border-bottom-color: var(--line);
}
.nav__logo {
  font-family: var(--serif); font-size: 22px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--foam);
}
.nav__logo span { color: var(--teal); }
.nav__links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav__links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--foam); opacity: .82;
  transition: opacity .15s ease, color .15s ease;
}
.nav__links a:hover { opacity: 1; color: var(--sand); }
.nav__right { display: flex; align-items: center; gap: 18px; }
.lang { display: flex; gap: 8px; align-items: center; }
.lang button {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--muted); padding: 4px;
  transition: color .15s ease;
}
.lang button:hover { color: var(--foam); }
.lang button.active { color: var(--sand); }
.nav__cta { padding: 11px 20px; }

.burger { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 22px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--foam); transition: .25s ease; }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  transform: translateY(-100%); transition: transform .35s cubic-bezier(.7,0,.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: 30px; color: var(--foam);
}
.mobile-menu .lang { margin-top: 20px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px var(--gut) 200px;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #0a1f2a 0%, #0b2531 55%, #0d2c38 100%);
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .55;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 78% 0%, rgba(42,143,156,.30), transparent 55%),
    linear-gradient(180deg, rgba(9,26,35,.55) 0%, rgba(11,37,49,.72) 55%, rgba(13,44,56,.96) 100%);
}
.hero__inner { max-width: var(--wrap); margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 26px; }
.hero__title {
  font-size: clamp(64px, 15vw, 190px);
  letter-spacing: 0.04em;
  line-height: .9;
  text-transform: uppercase;
  color: var(--foam);
}
.hero__title .tide {
  display: block; font-style: italic; text-transform: none;
  font-size: clamp(28px, 6vw, 68px);
  color: var(--sand);
  letter-spacing: 0;
  margin-top: .1em;
}
.hero__meta {
  margin-top: 38px;
  display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center;
  font-size: 16px; letter-spacing: 0.04em;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero__meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero__actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 14px; }

/* countdown */
.countdown { margin-top: 54px; display: flex; gap: 28px; }
.countdown div { text-align: center; }
.countdown b {
  font-family: var(--serif); font-size: clamp(34px, 6vw, 52px); font-weight: 400;
  display: block; color: var(--foam); line-height: 1;
}
.countdown small {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  margin-top: 8px; display: block;
}

/* wave divider */
.waves { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; pointer-events: none; }
.waves svg { width: 100%; height: auto; display: block; }

/* ---------- Generic section ---------- */
.section { padding: clamp(70px, 11vw, 140px) 0; }
.section--sand { background: var(--foam); color: var(--sea); }
.section--sand .eyebrow { color: var(--teal-deep); }
.section--sand .serif-em { color: var(--coral-dark); }
.section--deep { background: var(--sea-2); }

.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head h2 {
  font-size: clamp(36px, 6vw, 68px);
  margin-top: 18px;
}
.section__head p { margin-top: 20px; font-size: 17px; opacity: .85; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stats div { border-top: 1px solid rgba(10,26,36,.18); padding-top: 18px; }
.section--sand .stats b {
  font-family: var(--serif); font-size: clamp(40px, 6vw, 62px); font-weight: 400;
  display: block; color: var(--sea);
}
.stats small { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-deep); }

/* venue */
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.venue-card {
  background: var(--sea); color: var(--foam);
  border: 1px solid var(--line); border-radius: 3px;
  padding: 40px;
}
.venue-card h3 { font-size: 28px; margin-bottom: 8px; }
.venue-card .tag { color: var(--teal); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.venue-card ul { list-style: none; margin-top: 24px; }
.venue-card li { padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; font-size: 15px; }
.venue-card li:last-child { border-bottom: none; }
.venue-card li span:last-child { color: var(--sand); text-align: right; }

.venue-lead {
  grid-column: 1 / -1;
  border-radius: 3px; overflow: hidden; position: relative;
  border: 1px solid var(--line);
  aspect-ratio: 16/7; background: var(--sea-2);
}
.venue-lead img { width: 100%; height: 100%; object-fit: cover; }
.venue-lead figcaption {
  position: absolute; left: 0; bottom: 0; padding: 14px 20px;
  background: linear-gradient(0deg, rgba(9,26,35,.85), transparent);
  font-size: 13px; letter-spacing: .04em; color: var(--foam); width: 100%;
}
.venue-figure {
  border-radius: 3px; overflow: hidden; position: relative;
  border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--sea-2);
}
.venue-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.venue-figure:hover img { transform: scale(1.04); }
.venue-figure figcaption {
  position: absolute; left: 0; bottom: 0; padding: 10px 14px;
  background: linear-gradient(0deg, rgba(9,26,35,.82), transparent);
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--foam); width: 100%;
}
.venue-figure--tall { aspect-ratio: auto; align-self: stretch; }
.venue-figure--tall img { min-height: 100%; }
.venue-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 18px;
}
/* flights */
.flight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.flight {
  border: 1px solid rgba(10,26,36,.16); border-radius: 3px;
  padding: 26px 22px; background: var(--white);
}
.flight h3 { font-size: 15px; letter-spacing: .04em; color: var(--teal-deep); margin-bottom: 10px; }
.flight b {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: 26px; color: var(--sea); margin-bottom: 10px;
}
.flight small { font-size: 13px; color: var(--muted); line-height: 1.5; }
.flights-note { margin-top: 26px; font-size: 13px; color: var(--muted); }

/* program */
.prog { display: flex; flex-direction: column; }
.prog__row {
  display: grid; grid-template-columns: 200px 1fr; gap: 30px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.prog__row:last-child { border-bottom: 1px solid var(--line); }
.prog__day { font-family: var(--serif); font-size: 22px; color: var(--sand); }
.prog__day small { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.prog__items { display: flex; flex-direction: column; gap: 10px; }
.prog__items div { display: flex; gap: 16px; font-size: 15px; }
.prog__items b { color: var(--teal); font-weight: 600; min-width: 120px; font-variant-numeric: tabular-nums; }

/* djs */
.dj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dj {
  border: 1px solid rgba(10,26,36,.16); border-radius: 3px;
  padding: 26px 22px; background: var(--white);
}
.dj__avatar {
  width: 92px; height: 92px; border-radius: 50%;
  background: linear-gradient(150deg, var(--teal), var(--teal-deep));
  margin-bottom: 18px; overflow: hidden;
}
.dj__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dj h3 { font-size: 20px; color: var(--sea); }
.dj__country { font-size: 14px; color: var(--muted); margin-top: 2px; }
.dj small { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); }
.dj--clickable { cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.dj--clickable:hover, .dj--clickable:focus-visible { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(10,26,36,.14); outline: none; }

/* dj modal */
.dj-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.dj-modal.open { display: block; }
.dj-modal__backdrop { position: absolute; inset: 0; background: rgba(6,16,22,.72); backdrop-filter: blur(2px); }
.dj-modal__panel {
  position: relative; z-index: 1; margin: 8vh auto; max-width: 460px; width: calc(100% - 40px);
  background: var(--white); border-radius: 6px; padding: clamp(28px, 5vw, 44px);
  text-align: center; max-height: 84vh; overflow-y: auto;
  animation: dj-modal-in .22s ease;
}
@keyframes dj-modal-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.dj-modal__close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border: none;
  background: transparent; color: var(--sea); font-size: 26px; line-height: 1; cursor: pointer;
}
.dj-modal__avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden;
  background: linear-gradient(150deg, var(--teal), var(--teal-deep));
}
.dj-modal__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dj-modal__panel h3 { font-size: 26px; color: var(--sea); margin: 6px 0 16px; }
.dj-modal__bio { font-size: 15px; line-height: 1.7; color: var(--sea-2); text-align: left; }
body.dj-modal-open { overflow: hidden; }

/* prices — "rates" panel */
.rates {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--sea-2), var(--sea));
  padding: clamp(24px, 4vw, 40px);
  max-width: 760px;
}
.rates__banner {
  margin: 0 0 26px;
  padding: 20px 22px;
  border-radius: 3px;
  background: rgba(42, 143, 156, 0.12);
  border: 1px solid rgba(42, 143, 156, 0.4);
}
.rates__banner-lead {
  display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.rates__banner ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.rates__banner li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.rates__banner li:not(:last-child)::after { content: "·"; margin-left: 6px; color: var(--line); }
.rates__banner li.is-key {
  font-family: var(--serif); font-size: 18px; color: var(--sand);
}
.rates__head {
  display: flex; align-items: baseline; gap: 20px 26px; flex-wrap: wrap;
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.rates__label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.pkg__nights { display: inline-flex; gap: 26px; }
.pkg__nights button {
  background: none; border: none; cursor: pointer; padding: 0 0 6px;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .02em;
  color: var(--muted); border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.pkg__nights button:hover { color: var(--foam); }
.pkg__nights button.active { color: var(--sand); border-bottom-color: var(--sand); }

.rates__list { list-style: none; }
.rate {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.rate__main { display: flex; flex-direction: column; gap: 5px; }
.rate__name { font-family: var(--serif); font-size: 22px; color: var(--foam); }
.rate__desc { font-size: 13px; color: var(--muted); }
.rate__price { display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.rate__price b {
  font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 5vw, 40px);
  color: var(--sand); line-height: 1;
}
.rate__price span { font-size: 12px; color: var(--muted); }
.rate__price em { font-style: normal; letter-spacing: .04em; }
.rates__cta { margin-top: 28px; }
.price-note { margin-top: 22px; font-size: 14px; color: var(--muted); max-width: 700px; }

/* ambassador */
.amb__perks { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.amb__perks li { font-size: 14.5px; padding-left: 24px; position: relative; opacity: .9; }
.amb__perks li::before { content: "\2726"; position: absolute; left: 0; color: var(--sand); }
.amb__cta { margin-top: 32px; }

/* CTA band */
.cta {
  background: linear-gradient(120deg, var(--teal-deep), var(--sea-2));
  padding: clamp(70px, 10vw, 120px) 0; text-align: center;
}
.cta h2 { font-size: clamp(38px, 7vw, 74px); color: var(--foam); }
.cta p { margin: 18px auto 34px; max-width: 520px; opacity: .85; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); padding: 70px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo { font-family: var(--serif); font-size: 24px; letter-spacing: .22em; text-transform: uppercase; }
.footer__logo span { color: var(--teal); }
.footer p.tagline { margin-top: 16px; font-family: var(--serif); font-style: italic; color: var(--muted); max-width: 280px; }
.footer h4 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; opacity: .8; }
.footer a:hover { opacity: 1; color: var(--sand); }
.footer__bottom {
  margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--muted);
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: 170px var(--gut) 90px;
  background: linear-gradient(180deg, #0a1f2a, #0d2c38);
  position: relative; overflow: hidden;
}
.page-hero__inner { max-width: var(--wrap); margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(44px, 9vw, 96px); text-transform: uppercase; letter-spacing: .03em; margin-top: 16px; }
.page-hero p { margin-top: 20px; max-width: 560px; opacity: .85; }

/* ---------- Legal pages ---------- */
.legal { line-height: 1.85; }
.legal p { margin-bottom: 18px; color: var(--foam); opacity: .9; font-size: 15px; }
.legal h3 {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal);
  margin: 40px 0 12px;
}
.legal a { color: var(--sand); text-decoration: underline; }
.legal__foot { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; }

/* ---------- Registration form ---------- */
.form-wrap { max-width: 760px; margin: 0 auto; }
.form-section { margin-bottom: 46px; }
.form-section > h3 {
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teal);
  padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 24px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; letter-spacing: .04em; color: var(--foam); opacity: .9; }
.field .req { color: var(--coral); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px;
  background: var(--sea-2); color: var(--foam);
  border: 1px solid var(--line); border-radius: 2px;
  padding: 13px 14px;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
}
.field textarea { resize: vertical; min-height: 90px; }
.field .hint { font-size: 12px; color: var(--muted); }
.field .note { font-size: 13px; color: var(--teal); margin-top: -2px; }
.field .ref-ok { color: var(--teal); font-weight: 600; }
.field .ref-ok::before { content: "\2713  "; }
.phone-row { display: grid; grid-template-columns: 150px 1fr; gap: 10px; }

.radio-row, .check-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  position: relative;
}
.pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pill span {
  display: inline-block; padding: 10px 18px; font-size: 14px;
  border: 1px solid var(--line); border-radius: 2px; cursor: pointer;
  transition: .15s ease;
}
.pill input:checked + span { background: var(--teal); border-color: var(--teal); color: var(--white); }

.radio-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-list__item {
  position: relative; display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; font-size: 14px;
  border: 1px solid var(--line); border-radius: 2px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.radio-list__item:hover { border-color: var(--muted); }
.radio-list__item input {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px; flex-shrink: 0; margin: 0;
  border: 1px solid var(--muted); border-radius: 50%; cursor: pointer;
}
.radio-list__item input:checked { border-color: var(--teal); box-shadow: inset 0 0 0 4px var(--teal); }
.radio-list__item:has(input:checked) { border-color: var(--teal); background: rgba(42,143,156,.1); }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; margin: 8px 0 26px; }
.consent input { margin-top: 4px; width: 16px; height: 16px; flex-shrink: 0; }
.consent a { color: var(--sand); text-decoration: underline; }

.form-msg { padding: 16px 18px; border-radius: 2px; font-size: 14px; margin-bottom: 20px; display: none; }
.form-msg.err { display: block; background: rgba(226,103,76,.15); border: 1px solid var(--coral); }
.form-msg.ok  { display: block; background: rgba(42,143,156,.15); border: 1px solid var(--teal); }

.submit-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.submit-row .btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

.success-panel {
  display: none; text-align: center; padding: 60px 30px;
  border: 1px solid var(--teal); border-radius: 3px; background: var(--sea-2);
}
.success-panel.show { display: block; }
.success-panel h3 { font-size: 32px; color: var(--sand); margin-bottom: 14px; }
.success-panel p { max-width: 440px; margin: 0 auto 8px; opacity: .9; }

/* policy cards */
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
.policy {
  border: 1px solid var(--line); border-radius: 3px; padding: 26px; text-align: center;
}
.policy b { font-family: var(--serif); font-size: 40px; color: var(--sand); display: block; }
.policy small { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 8px; }
.policy p { font-size: 13px; margin-top: 10px; opacity: .8; }

/* admin */
.admin-tools { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; align-items: center; }
.admin-tools input {
  background: var(--sea-2); border: 1px solid var(--line); color: var(--foam);
  padding: 10px 12px; border-radius: 2px; font-family: var(--sans);
}
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 3px; }
table.reg { border-collapse: collapse; width: 100%; font-size: 13px; }
table.reg th, table.reg td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.reg th { background: var(--sea-2); color: var(--sand); position: sticky; top: 0; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
table.reg tr:hover td { background: rgba(42,143,156,.06); }

/* utility */
.tbc { color: var(--muted); font-style: italic; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__right > .lang { display: none; }
  .nav--min .nav__right > .lang { display: flex; }
  .burger { display: block; }
  .venue-grid { grid-template-columns: 1fr; gap: 24px; }
  .venue-figure--tall { aspect-ratio: 4/3; }
  .venue-gallery { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .dj-grid { grid-template-columns: 1fr 1fr; }
  .flight-grid { grid-template-columns: 1fr 1fr; }
  .rate { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .prog__row { grid-template-columns: 1fr; gap: 12px; }
  .grid-2 { grid-template-columns: 1fr; }
  .radio-list { grid-template-columns: 1fr; }
  .policy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; }
  .dj-grid { grid-template-columns: 1fr; }
  .flight-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .venue-gallery { grid-template-columns: 1fr; }
  .countdown { gap: 18px; }
  .phone-row { grid-template-columns: 110px 1fr; }
}
