/* ===== Tokens ===== */
:root {
  --gold: #d4af37;
  --gold-soft: #e7c66a;
  --gold-deep: #b8932e;
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1120px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* Dark (default) */
[data-theme="dark"] {
  --bg: #0a0a0c;
  --bg-alt: #0f0f13;
  --surface: #131318;
  --surface-2: #1a1a21;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.14);
  --text: #f5f5f7;
  --text-dim: #a7a7b0;
  --text-mute: #7d7d87;
  --shadow: 0 20px 50px -20px rgba(0,0,0,.7);
  --glow: rgba(212,175,55,.16);
}

/* Light */
[data-theme="light"] {
  --bg: #f7f7f5;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --surface-2: #f1f1ee;
  --border: rgba(15,15,20,.10);
  --border-strong: rgba(15,15,20,.16);
  --text: #16161a;
  --text-dim: #54545e;
  --text-mute: #82828c;
  --shadow: 0 20px 45px -24px rgba(20,20,30,.25);
  --glow: rgba(212,175,55,.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
.container.narrow { max-width: 760px; }

/* ===== Typography ===== */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -.02em; }
.grad-text {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}

/* ===== Buttons ===== */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn-sm { --pad-y: 9px; --pad-x: 16px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 60%, var(--gold-deep));
  color: #1a1405; box-shadow: 0 10px 30px -10px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px var(--glow); }

.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 44px;
  overflow: hidden;
  border-radius: 10px;
}
.brand-logo {
  width: 104px;
  height: 38px;
  object-fit: cover;
  object-position: center;
  transition: transform .25s var(--ease), opacity .25s;
}
.brand:hover .brand-logo { transform: translateY(-1px); opacity: .9; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links > a:not(.btn) { font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--text-dim); position: relative; transition: color .2s; }
.nav-links > a:not(.btn):hover { color: var(--text); }
.nav-links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); border-radius: 2px; transition: width .25s var(--ease);
}
.nav-links > a:not(.btn):hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: .6rem; }
.language-picker {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
}
.lang-btn {
  height: 42px;
  width: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.lang-btn img {
  width: 26px;
  height: 18px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}
.lang-btn:hover,
.lang-btn.is-active {
  border-color: var(--gold);
  background: color-mix(in srgb, var(--gold) 12%, transparent);
}
.lang-btn:hover { transform: translateY(-1px); }
.lang-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.theme-toggle {
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--border-strong); background: var(--surface);
  color: var(--text); cursor: pointer; display: grid; place-items: center;
  transition: border-color .2s, transform .2s, color .2s;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); transform: rotate(-12deg); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border-strong); background: var(--surface); cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.menu-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }

/* Cinema hero with looping video */
.hero-cinema { background: #050506; }
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 75% 10%, rgba(212,175,55,.18), transparent 55%),
    linear-gradient(180deg, rgba(5,5,6,.55), rgba(5,5,6,.35) 40%, rgba(5,5,6,.85));
}
.hero-cinebar {
  position: absolute; left: 0; right: 0; z-index: 3;
  height: clamp(28px, 7vh, 70px);
  background: #000;
  pointer-events: none;
}
.hero-cinebar-top { top: 0; }
.hero-cinebar-bottom { bottom: 0; }
.hero-cinema .hero-inner { color: #fff; }
.hero-cinema .hero-sub { color: rgba(255,255,255,.82); }
.hero-cinema .badge { background: rgba(0,0,0,.35); border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.9); }
.hero-cinema .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero-cinema .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.hero-cinema .scroll-cue { border-color: rgba(255,255,255,.4); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(212,175,55,.20), transparent 55%),
    radial-gradient(90% 80% at 10% 110%, rgba(212,175,55,.10), transparent 50%),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .5;
  mask-image: radial-gradient(80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero-glow { position: absolute; z-index: 0; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; top: -20%; right: -10%; border-radius: 50%; background: radial-gradient(circle, var(--glow), transparent 70%); filter: blur(20px); animation: float 9s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(30px); } }

.hero-inner { position: relative; z-index: 1; padding-block: clamp(80px, 14vh, 140px); }
.hero-title { font-size: clamp(2.8rem, 9vw, 6rem); font-weight: 800; margin: .35rem 0 1rem; }
.hero-sub { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--text-dim); max-width: 620px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2rem 0 1.8rem; }

.badges { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.badge {
  font-family: var(--font-head); font-size: .85rem; font-weight: 500;
  padding: .5rem 1rem; border-radius: 999px;
  border: 1px solid var(--border-strong); background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--text-dim); backdrop-filter: blur(8px);
}
.badge::before { content: "● "; color: var(--gold); font-size: .6em; vertical-align: middle; }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; width: 26px; height: 42px; border: 2px solid var(--border-strong); border-radius: 14px; display: grid; justify-items: center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--gold); animation: cue 1.5s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-4px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

/* ===== Sections ===== */
.section { padding-block: clamp(64px, 10vw, 120px); position: relative; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--border); }
.section-head { max-width: 680px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 700; margin: .5rem 0 .8rem; }
.lead { color: var(--text-dim); font-size: clamp(1rem, 2vw, 1.15rem); }
.block-title { font-size: 1.05rem; font-weight: 600; color: var(--gold); letter-spacing: .02em; margin: clamp(36px, 5vw, 52px) 0 1.2rem; }
.block-title:first-of-type { margin-top: 0; }

/* ===== Grid & Cards ===== */
.grid { display: grid; gap: 1.1rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(20px, 3vw, 30px);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, background .3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }

.card-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.1rem; color: var(--gold); background: color-mix(in srgb, var(--gold) 12%, transparent); border: 1px solid color-mix(in srgb, var(--gold) 25%, transparent); }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.card p { color: var(--text-dim); }

/* Pillars */
.pillars { gap: .9rem; }
.pillar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.3rem 1.1rem; transition: border-color .3s, transform .3s var(--ease), background .3s; }
.pillar:hover { border-color: var(--gold); transform: translateY(-4px); }
.pillar-num { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--gold); opacity: .85; }
.pillar h4 { margin-top: .5rem; font-size: 1.02rem; font-weight: 600; }

/* Events */
.event-card { display: flex; gap: 1.2rem; align-items: center; }
.event-date { flex: 0 0 auto; width: 72px; height: 72px; border-radius: 16px; background: linear-gradient(150deg, color-mix(in srgb, var(--gold) 22%, transparent), transparent); border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent); display: grid; place-content: center; text-align: center; color: var(--gold); }
.event-date .day { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.event-date .mon { font-size: .7rem; font-weight: 600; letter-spacing: .14em; }
.event-body h4 { font-size: 1.2rem; margin-bottom: .3rem; }
.event-body p { color: var(--text-dim); font-size: .95rem; }

/* Locations */
.location-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.location-map { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.location-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.15); }
.location-body { padding: clamp(18px, 3vw, 26px); display: grid; gap: 1rem; }
.location-head { display: flex; gap: .9rem; align-items: center; }
.location-head .card-icon { margin-bottom: 0; flex: 0 0 auto; }
.location-body h4 { font-size: 1.2rem; }
.location-body p { color: var(--text-dim); }
.location-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.location-actions .btn { flex: 1 1 auto; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 5vw, 56px); align-items: start; margin-bottom: clamp(28px, 5vw, 48px); }
.about-copy { margin-bottom: 0; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1.6rem; }
.about-stats div {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 1rem;
}
.about-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: .35rem;
}
.about-stats span { color: var(--text-dim); font-size: .9rem; }
.about-card h3 { font-size: 1.35rem; margin-bottom: .8rem; }
.about-list { list-style: none; display: grid; gap: .85rem; margin-top: 1.3rem; }
.about-list li { display: flex; align-items: center; gap: .75rem; color: var(--text); }

.about-info { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 1rem; margin-bottom: clamp(28px, 5vw, 48px); }
.about-info-card { display: grid; gap: .9rem; }
.about-info-card h3 { font-size: 1.2rem; margin-bottom: 0; }
.about-pillars { display: flex; flex-wrap: wrap; gap: .55rem; }
.about-pillars span {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  padding: .5rem .75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-2);
}
.about-mini-list { display: grid; gap: .45rem; }
.about-mini-list p { color: var(--text-dim); }
.about-mini-list strong { color: var(--text); font-weight: 700; }
.about-location-actions { display: flex; flex-wrap: wrap; gap: .55rem; }

.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--gold) 18%, var(--border));
  background: #050506;
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.85);
  aspect-ratio: 9 / 16;
  min-height: 0;
  isolation: isolate;
}
.video-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  pointer-events: none;
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22), transparent 28%),
    linear-gradient(180deg, transparent 48%, rgba(0,0,0,.84));
}
.video-card video {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  background: #050506;
}
.featured-video { transform: translateY(-18px); border-color: color-mix(in srgb, var(--gold) 48%, var(--border)); }
.video-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.2rem;
  pointer-events: none;
  background: transparent;
  color: #fff;
}
.video-caption span {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--gold);
  opacity: .9;
}
.video-caption h3 { font-size: 1.15rem; text-align: right; }
/* ===== Forms ===== */
.form-card { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label, .field-label { font-family: var(--font-head); font-weight: 500; font-size: .92rem; color: var(--text); }
.optional { color: var(--text-mute); font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 13px 15px; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 22%, transparent); }
.field input:invalid:not(:placeholder-shown) { border-color: #e0625a; }

/* Segmented / radio button groups */
.seg, .size-grid { display: grid; gap: .6rem; }
.seg { grid-template-columns: repeat(3, 1fr); }
.size-grid { grid-template-columns: repeat(6, 1fr); }

.seg input, .size-grid input { position: absolute; opacity: 0; pointer-events: none; }
.seg label, .size-grid label {
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 8px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-dim); cursor: pointer; text-align: center;
  transition: all .2s var(--ease); -webkit-tap-highlight-color: transparent;
}
.seg label:hover, .size-grid label:hover { border-color: var(--border-strong); color: var(--text); }

.seg input:checked + label,
.size-grid input:checked + label {
  background: linear-gradient(120deg, color-mix(in srgb, var(--gold) 22%, transparent), color-mix(in srgb, var(--gold) 8%, transparent));
  border-color: var(--gold); color: var(--text); box-shadow: 0 6px 20px -10px var(--glow);
}
.seg input:focus-visible + label,
.size-grid input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }

.form-note { font-size: .9rem; color: var(--text-mute); text-align: center; }
.form-note.delivery { color: var(--text-dim); }
.form-note.success { color: var(--gold); font-weight: 600; }
.form-note.error { color: #ff6b6b; font-weight: 600; }
.iban-card {
  display: grid;
  gap: .3rem;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--gold) 26%, var(--border));
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 12%, transparent), var(--surface-2));
}
.iban-card span {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.iban-card strong {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  letter-spacing: .04em;
  color: var(--text);
  word-break: break-word;
}
.iban-card small { color: var(--text-dim); line-height: 1.45; }

/* Join section */
.join-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.perks { list-style: none; display: grid; gap: 1rem; align-content: start; padding-top: .5rem; }
.perks li { display: flex; gap: .8rem; align-items: center; font-size: 1.05rem; color: var(--text); }
.check { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center; font-size: .85rem; font-weight: 700; color: #1a1405; background: linear-gradient(120deg, var(--gold-soft), var(--gold)); }

/* ===== Merch ===== */
.merch-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.merch-gallery { position: relative; }
.drop-badge { position: absolute; top: 16px; left: 16px; z-index: 2; font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #1a1405; background: linear-gradient(120deg, var(--gold-soft), var(--gold)); padding: .5rem .9rem; border-radius: 999px; box-shadow: 0 8px 24px -10px var(--glow); }
.merch-main { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--surface); }
.merch-main img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; }
.merch-thumbs { display: flex; gap: .8rem; margin-top: .9rem; }
.thumb { flex: 1; padding: 0; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--border); background: var(--surface); cursor: pointer; transition: border-color .2s, transform .2s; }
.thumb img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; }
.thumb:hover { transform: translateY(-2px); }
.thumb.is-active { border-color: var(--gold); }
.thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ===== Donate ===== */
.donate-card { display: grid; gap: 1.2rem; }
.merch-order-card { display: grid; gap: 1rem; }
.merch-order-card h3 { font-size: 1.25rem; margin-bottom: .15rem; }
.merch-order-card p { color: var(--text-dim); font-size: .95rem; line-height: 1.55; }
.merch-phone {
  display: inline-flex;
  width: fit-content;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
}
.merch-size-table {
  display: grid;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-2);
  overflow: hidden;
}
.merch-size-table h4 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
}
.merch-size-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.merch-size-table th,
.merch-size-table td {
  padding: .55rem .35rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.merch-size-table th {
  color: var(--text);
  font-family: var(--font-head);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.merch-size-table td {
  color: var(--text-dim);
  font-weight: 600;
}
.merch-size-table tr:last-child td { border-bottom: 0; }
.merch-price-list {
  display: grid;
  gap: .55rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-2);
}
.merch-price-list h4 {
  margin: 0 0 .15rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
}
.merch-price-list p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding-top: .55rem;
  border-top: 1px solid var(--border);
}
.merch-price-list p:first-of-type { border-top: 0; padding-top: 0; }
.merch-price-list strong { color: var(--text); font-family: var(--font-head); }

/* ===== Reviews ===== */
.reviews-layout { display: grid; gap: 1.2rem; }
.review-form { max-width: 680px; width: 100%; margin-inline: auto; }
.reviews-grid { display: grid; gap: 1rem; align-items: stretch; }
.rating-picker {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  width: fit-content;
  padding: .45rem .55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-2);
}
.rating-star {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-mute);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
  transition: color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease);
}
.rating-star:hover,
.rating-star.is-active {
  color: var(--gold);
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  transform: translateY(-1px) scale(1.05);
}
.rating-star:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.rating-help {
  color: var(--text-mute);
  font-size: .86rem;
}
.review-card { display: flex; flex-direction: column; gap: 1rem; position: relative; overflow: hidden; }
.review-card::before {
  content: "“";
  position: absolute;
  top: -26px;
  right: 18px;
  font-family: var(--font-head);
  font-size: 7rem;
  line-height: 1;
  color: color-mix(in srgb, var(--gold) 18%, transparent);
  pointer-events: none;
}
.featured-review {
  border-color: color-mix(in srgb, var(--gold) 40%, var(--border));
  background: linear-gradient(145deg, color-mix(in srgb, var(--gold) 10%, transparent), var(--surface));
}
.stars {
  font-size: .95rem;
  letter-spacing: .08em;
  color: var(--gold);
}
.review-card p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.review-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.review-author span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  color: #1a1405;
  font-family: var(--font-head);
  font-weight: 800;
}
.review-author strong {
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--text-dim);
}
.review-meta {
  display: block;
  color: var(--text-mute);
  font-size: .82rem;
  margin-top: .15rem;
}

/* ===== Contacts ===== */
.contact-grid {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: auto;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  min-height: 150px;
}
.contact-card:hover { border-color: var(--gold); }
.contact-icon { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; }
.contact-icon svg { width: 28px; height: 28px; }
.contact-icon.wa { color: #25d366; background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.3); }
.contact-icon.ig { color: #e1306c; background: rgba(225,48,108,.10); border: 1px solid rgba(225,48,108,.28); }
.contact-icon.tk { color: #fff; background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.22); }
.contact-copy { min-width: 0; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.contact-card p { color: var(--text-dim); font-size: .92rem; }
.contact-link-text {
  display: inline-block;
  margin-top: .55rem;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.contact-go { margin-left: auto; font-size: 1.4rem; color: var(--gold); transition: transform .25s var(--ease); }
.contact-card:hover .contact-go { transform: translateX(5px); }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-alt); padding-block: clamp(40px, 6vw, 64px); }
.footer-inner { display: grid; justify-items: center; gap: 1rem; text-align: center; }
.footer-tag { color: var(--text-dim); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; }
.footer-links a { color: var(--text-dim); font-family: var(--font-head); font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.copyright { color: var(--text-mute); font-size: .85rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 200;
  width: min(720px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%);
}
.cookie-banner[hidden] { display: none; }
.cookie-copy strong {
  display: block;
  font-family: var(--font-head);
  margin-bottom: .2rem;
  color: var(--text);
}
.cookie-copy p {
  color: var(--text-dim);
  font-size: .92rem;
  line-height: 1.45;
}
.cookie-actions { display: flex; gap: .55rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .join-grid, .merch-grid, .about-grid { grid-template-columns: 1fr; }
  .about-info { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(3, minmax(180px, 1fr)); overflow-x: auto; padding-bottom: .4rem; scroll-snap-type: x mandatory; }
  .video-card { scroll-snap-align: center; }
  .featured-video { transform: none; }
  .perks { padding-top: 0; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .container { padding-inline: 16px; }
  .nav { height: 64px; }
  .brand { height: 38px; }
  .brand-logo { width: 88px; height: 32px; }
  .theme-toggle,
  .menu-toggle { width: 40px; height: 40px; }
  .language-picker { gap: .2rem; padding: .2rem; }
  .lang-btn { width: 36px; height: 36px; }
  .lang-btn img { width: 23px; height: 16px; }

  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .4rem;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 1rem clamp(18px, 5vw, 40px) 1.4rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links > a:not(.btn) { padding: .7rem .2rem; font-size: 1.05rem; }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-join { margin-top: .4rem; }

  .hero { min-height: 92svh; align-items: end; }
  .hero-video { object-position: center; }
  .hero-overlay {
    background:
      radial-gradient(120% 80% at 70% 20%, rgba(212,175,55,.14), transparent 58%),
      linear-gradient(180deg, rgba(5,5,6,.35), rgba(5,5,6,.68) 52%, rgba(5,5,6,.94));
  }
  .hero-cinebar { height: 24px; }
  .hero-inner { padding-block: 92px 86px; }
  .hero-title { font-size: clamp(2.45rem, 15vw, 4.2rem); max-width: 8ch; }
  .hero-sub { font-size: 1rem; max-width: 34ch; }
  .hero-cta { display: grid; grid-template-columns: 1fr; gap: .75rem; margin: 1.5rem 0 1.2rem; max-width: 360px; }
  .hero-cta .btn { width: 100%; }
  .badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .35rem;
    max-width: 360px;
    width: 100%;
  }
  .badge {
    display: grid;
    place-items: center;
    min-height: 38px;
    padding: .45rem .35rem;
    font-size: clamp(.62rem, 2.7vw, .78rem);
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }
  .badge::before { content: none; }
  .scroll-cue { display: none; }

  .section { padding-block: 56px; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(1.75rem, 8vw, 2.35rem); }
  .lead { font-size: 1rem; }
  .card { padding: 20px; border-radius: 18px; }

  .grid-3 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .event-card { align-items: flex-start; }
  .location-actions,
  .about-location-actions { display: grid; grid-template-columns: 1fr; }
  .location-map { aspect-ratio: 4 / 3; }
  .contact-card { align-items: flex-start; padding-right: 18px; }
  .contact-go { align-self: center; }
  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 14px;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .seg { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: repeat(3, 1fr); }
  .about-stats { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(3, minmax(220px, 1fr)); overflow-x: auto; padding-bottom: .4rem; scroll-snap-type: x mandatory; }
  .video-card { min-width: 220px; width: 100%; margin-inline: 0; border-radius: 24px; scroll-snap-align: center; }
  .video-card::before { border-radius: 19px; inset: 8px; }
  .video-caption { padding: 1rem; }
  .event-date { width: 60px; height: 60px; }
  .event-date .day { font-size: 1.4rem; }
  .merch-main img { aspect-ratio: 1 / 1; }
  .merch-thumbs { gap: .55rem; overflow-x: auto; padding-bottom: .25rem; }
  .thumb { min-width: 92px; flex: 0 0 30%; }
  .form-card { gap: 1rem; }
  .field input,
  .field textarea { font-size: 16px; }
}

@media (max-width: 420px) {
  .container { padding-inline: 14px; }
  .btn { --pad-y: 13px; --pad-x: 18px; font-size: .94rem; }
  .hero-title { font-size: clamp(2.25rem, 16vw, 3.4rem); }
  .hero-inner { padding-block: 84px 78px; }
  .grid-5 { grid-template-columns: 1fr; }
  .pillar { padding: 1.1rem; }
  .event-card { flex-direction: column; }
  .location-head { align-items: flex-start; }
  .about-pillars span { width: 100%; text-align: center; }
  .perks li { align-items: flex-start; font-size: .98rem; }
  .contact-card { display: grid; grid-template-columns: auto 1fr; }
  .contact-go { display: none; }
  .footer-links { gap: .9rem 1.1rem; }
  .cookie-banner { width: calc(100vw - 24px); padding: .9rem; border-radius: 18px; }
  .cookie-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
