:root {
  --night: #07151c;
  --ink: #102833;
  --tide: #1b5362;
  --foam: #b9e3d6;
  --paper: #f6ecd8;
  --cream: #fff8ec;
  --gold: #d9a441;
  --gold-2: #f0c56a;
  --ember: #c85a32;
  --line: rgba(16, 40, 51, 0.14);
  --text: #1c2a30;
  --muted: #4d6168;
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(7, 21, 28, 0.16);
  --radius: 22px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;
  --dock-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(217, 164, 65, 0.12), transparent 50%),
    radial-gradient(900px 420px at 110% 8%, rgba(27, 83, 98, 0.1), transparent 46%),
    var(--paper);
  line-height: 1.7;
  font-size: 17px;
  padding-bottom: calc(var(--dock-h) + 18px);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, .btn { font-family: inherit; cursor: pointer; }
.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: var(--night);
  padding: 8px 12px;
  z-index: 80;
}
.skip:focus { top: 12px; }

.ticker {
  background: var(--night);
  color: var(--foam);
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
  height: 40px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  animation: drift 36s linear infinite;
  min-width: max-content;
}
.ticker b { color: var(--gold-2); font-weight: 600; }
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 248, 236, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(217, 164, 65, 0.35);
}
.brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}
.nav a:hover { color: var(--ember); }

.tools { display: flex; align-items: center; gap: 10px; }
.lang {
  display: flex;
  background: #efe4cc;
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.lang button {
  border: 0;
  background: transparent;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
}
.lang button.is-on { background: var(--night); color: var(--gold-2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--night);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.28);
}
.btn-ember {
  background: var(--ember);
  color: #fff8ef;
  box-shadow: 0 8px 20px rgba(200, 90, 50, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 248, 236, 0.28);
}
.btn-wide { min-width: 150px; }
.pulse { animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 164, 65, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(217, 164, 65, 0); }
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
}

.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(7, 21, 28, 0.2), transparent 30%),
    var(--night);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -28% 28%;
  height: 70%;
  background: radial-gradient(circle at 30% 30%, #2a7a86 0%, transparent 42%),
    radial-gradient(circle at 70% 60%, #d9a441 0%, transparent 36%);
  filter: blur(10px);
  opacity: 0.35;
  z-index: -1;
  animation: tide 12s ease-in-out infinite;
}
@keyframes tide {
  50% { transform: translateY(-16px) scale(1.04); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  padding: 54px 0 72px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185, 227, 214, 0.12);
  border: 1px solid rgba(185, 227, 214, 0.24);
  color: var(--foam);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ad27a;
  box-shadow: 0 0 0 6px rgba(58, 210, 122, 0.16);
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 14ch;
}
.lead { margin: 18px 0 26px; color: #d7e7e1; max-width: 52ch; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; color: #9bb0aa; font-size: 0.88rem; }

.stamp {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px 28px 8px 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  transform: rotate(-2.2deg);
  position: relative;
}
.stamp::after {
  content: "";
  position: absolute;
  right: 18px;
  top: -10px;
  width: 54px;
  height: 54px;
  border: 2px dashed var(--ember);
  border-radius: 50%;
  opacity: 0.55;
}
.stamp h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 8px;
}
.stamp p { color: var(--muted); font-size: 0.95rem; }
.stamp-list { margin-top: 14px; display: grid; gap: 8px; }
.stamp-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 6px;
}

.wave {
  height: 54px;
  background: var(--night);
  margin-top: -1px;
}
.wave svg { display: block; width: 100%; height: 54px; }

section { padding: 68px 0; scroll-margin-top: 100px; }
.section-head { margin-bottom: 28px; max-width: 720px; }
.eyebrow {
  color: var(--ember);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 8px 0 12px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.muted { color: var(--muted); }

.tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ticket {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 40, 51, 0.05);
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--paper);
  border-radius: 50%;
  top: 58%;
}
.ticket::before { left: -11px; }
.ticket::after { right: -11px; }
.ticket .tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tide);
  font-weight: 700;
}
.ticket a.url {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink);
  margin: 10px 0 14px;
  word-break: break-all;
  text-decoration: none;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #18764a;
}
.copy {
  margin-top: 12px;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  font-size: 0.82rem;
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.step {
  background: #fff9ee;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  min-height: 180px;
}
.num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.article-block {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.article-block + .article-block { margin-top: 22px; }
.drop::first-letter {
  font-family: var(--font-display);
  font-size: 3.1rem;
  float: left;
  line-height: 0.85;
  padding: 8px 10px 0 0;
  color: var(--tide);
}
.article-block p { margin: 0 0 14px; }
.article-block ul { margin: 0 0 14px 18px; }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.slider-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}
.slider {
  position: relative;
}
.track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.track::-webkit-scrollbar { display: none; }
.slide {
  min-width: min(320px, 84vw);
  scroll-snap-align: start;
  background: var(--night);
  color: var(--cream);
  border-radius: 22px;
  padding: 22px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}
.slide::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.18);
}
.slide h3 { font-size: 1.5rem; }
.slide p { color: #c9d8d3; font-size: 0.95rem; }
.ctrl { display: flex; gap: 8px; }
.ctrl button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.1rem;
}

.review-grid, .faq-grid, .split {
  display: grid;
  gap: 14px;
}
.review-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff9ee;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.who { margin-top: 12px; font-size: 0.86rem; color: var(--muted); }

.event {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  background: linear-gradient(135deg, #123744, #1c5a68 58%, #8a6230);
  color: var(--cream);
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
}
.event time {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
  margin: 10px 0;
  font-family: var(--font-mono);
  font-size: 0.86rem;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 1rem;
}
.faq-item .ans { display: none; padding: 0 18px 16px; color: var(--muted); }
.faq-item.open .ans { display: block; }

.crumbs {
  font-size: 0.86rem;
  color: var(--muted);
  padding: 18px 0 0;
}
.crumbs a { text-decoration: none; color: var(--tide); }

footer {
  background: var(--night);
  color: #c7d6d1;
  padding: 42px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}
footer a { color: var(--gold-2); text-decoration: none; }
.legal { font-size: 0.82rem; color: #8ea39c; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(7, 21, 28, 0.94);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.dock-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.dock .btn { flex: 1; max-width: 280px; min-height: 48px; font-size: 1rem; }

.reveal { opacity: 0; transform: translateY(16px); animation: up 0.7s ease forwards; }
@keyframes up { to { opacity: 1; transform: none; } }

@media (max-width: 1180px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: var(--cream);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 45;
  }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .tools .desk-cta { display: none; }
}

@media (max-width: 980px) {
  .hero-grid, .tickets, .steps, .review-grid, .event, .foot-grid {
    grid-template-columns: 1fr;
  }
  h1 { max-width: none; }
  .stamp { transform: none; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero-grid { padding: 36px 0 48px; }
  .lang button { padding: 6px 7px; }
  .btn-wide { min-width: 0; flex: 1; }
  .hero-actions { display: flex; }
  .hero-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
