:root {
  --ink: #16110e;
  --ink-2: #231910;
  --paper: #f3e7d2;
  --paper-2: #efe0c6;
  --cream: #f7f0e2;
  --copper: #c4784a;
  --copper-deep: #8d4a2b;
  --leaf: #e4c27a;
  --moss: #3f5c4d;
  --line: rgba(196, 120, 74, 0.34);
  --display: "Fraunces", "Times New Roman", serif;
  --body: "Literata", "Georgia", serif;
  --ui: "Syne", "Trebuchet MS", sans-serif;
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(196, 120, 74, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 8%, rgba(228, 194, 122, 0.08), transparent 46%),
    linear-gradient(180deg, #120e0b 0%, var(--ink) 38%, #1b1410 100%);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: 0;
}

a { color: var(--leaf); }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--leaf);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { top: 12px; }

.ticker {
  position: relative;
  z-index: 4;
  background: #2a1a12;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}
.ticker b {
  flex: 0 0 auto;
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--copper);
  color: var(--ink);
  padding: 0 14px;
  height: 38px;
  display: grid;
  place-items: center;
}
.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  padding-left: 24px;
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-2);
}
.ticker-track span { opacity: 0.88; }
.ticker-track em { color: var(--leaf); font-style: normal; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 12;
  backdrop-filter: blur(14px);
  background: rgba(18, 14, 11, 0.82);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  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;
  color: var(--cream);
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}
.brand strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.brand small {
  display: block;
  font-family: var(--ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  color: var(--paper);
  text-decoration: none;
  font-family: var(--ui);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.nav a:hover { color: var(--leaf); }
.langs {
  display: flex;
  gap: 8px;
  font-family: var(--ui);
  font-size: 0.72rem;
}
.langs a {
  color: var(--paper-2);
  text-decoration: none;
  border: 1px solid transparent;
  padding: 3px 6px;
}
.langs a[aria-current="page"] {
  color: var(--ink);
  background: var(--leaf);
  border-radius: 999px;
}

.cta-pair { display: flex; gap: 8px; }
.btn {
  font-family: var(--ui);
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-in {
  background: linear-gradient(180deg, #e8b07a, var(--copper));
  color: #1a100b;
  box-shadow: 0 0 0 0 rgba(196, 120, 74, 0.7);
  animation: pulse 2.2s ease-in-out infinite;
}
.btn-up {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--leaf);
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { min-height: 56px; padding: 0 22px; font-size: 1.02rem; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 120, 74, 0.55); }
  50% { box-shadow: 0 0 0 12px rgba(196, 120, 74, 0); }
}

.menu-btn {
  display: none;
  background: none;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-family: var(--ui);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 42px 0 20px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: end;
}
.kicker {
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--copper);
  margin: 0 0 10px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 5.1rem);
  line-height: 0.92;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero h1 span {
  display: block;
  color: var(--leaf);
  font-style: italic;
  font-weight: 500;
}
.lede {
  font-size: 1.18rem;
  max-width: 38rem;
  color: #f0e2cb;
}
.stamp {
  width: min(100%, 360px);
  justify-self: end;
  border: 2px dashed var(--copper);
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-8deg);
  background: rgba(196, 120, 74, 0.07);
  animation: float 7s ease-in-out infinite;
}
.stamp strong {
  font-family: var(--display);
  font-size: 2rem;
  display: block;
}
.stamp small {
  font-family: var(--ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
}
@keyframes float {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-10px); }
}

.dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 16;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(18, 14, 11, 0.94);
  border-top: 1px solid var(--line);
  gap: 8px;
}
.dock .btn { flex: 1; }

.panel {
  position: relative;
  z-index: 1;
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px 28px 0 0;
  margin-top: 28px;
  padding: 42px 0 20px;
}
.panel a { color: var(--copper-deep); }
.section { padding: 28px 0 12px; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 8px;
}
.section .sub {
  margin: 0 0 22px;
  color: #4a3a2c;
  max-width: 44rem;
}
.article-body p { margin: 0 0 1em; }
.article-body h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 1.4em 0 0.5em;
}

.ticket {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  box-shadow: 0 10px 30px rgba(22, 17, 14, 0.08);
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--paper);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.ticket::before { left: -11px; }
.ticket::after { right: -11px; }

.steps { display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  background: #fff8ec;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(141, 74, 43, 0.12);
}
.step b {
  font-family: var(--ui);
  font-size: 1.4rem;
  color: var(--copper-deep);
}

.slider {
  position: relative;
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 0.55s cubic-bezier(.22,.9,.3,1);
}
.slide {
  min-width: 100%;
  padding: 4px;
}
.card {
  background: #1d1611;
  color: var(--paper);
  border-radius: 20px;
  padding: 24px;
  min-height: 210px;
  border: 1px solid var(--line);
}
.card.paper {
  background: #fff6e8;
  color: var(--ink);
}
.card h3 {
  font-family: var(--display);
  margin: 0 0 8px;
  font-size: 1.6rem;
}
.meta {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.slider-nav button {
  font-family: var(--ui);
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}
.dots { display: flex; gap: 6px; }
.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9b496;
  display: block;
}
.dots i.on { background: var(--copper-deep); width: 18px; border-radius: 99px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.chip {
  font-family: var(--ui);
  font-size: 0.78rem;
  border: 1px solid var(--line);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
}

.faq details {
  background: #fff7ea;
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 10px;
  border: 1px solid rgba(141, 74, 43, 0.12);
}
.faq summary {
  font-family: var(--ui);
  font-weight: 700;
  cursor: pointer;
}
.crumbs {
  font-family: var(--ui);
  font-size: 0.8rem;
  margin: 0 0 18px;
}
.crumbs a { text-decoration: none; }

.review {
  background: #2a1d15;
  color: var(--paper);
  border-radius: 22px;
  padding: 24px;
}
.stars { color: var(--leaf); letter-spacing: 2px; font-size: 1.2rem; }

.event {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  background: linear-gradient(135deg, #2b1a13, #3d2618);
  color: var(--cream);
  border-radius: 22px;
  padding: 22px;
}
.event-date {
  font-family: var(--display);
  text-align: center;
  border: 1px solid var(--leaf);
  border-radius: 16px;
  padding: 16px 8px;
}
.event-date b { display: block; font-size: 2rem; line-height: 1; }

footer {
  position: relative;
  z-index: 1;
  padding: 40px 0 110px;
  color: #cbbba6;
  font-size: 0.95rem;
}
.legal { max-width: 50rem; }

@media (max-width: 880px) {
  .hero-grid, .grid-2, .grid-3, .event { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 16px;
    top: 74px;
    background: #22180f;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
  }
  .menu-btn { display: inline-flex; }
  .cta-pair.desktop { display: none; }
  .dock { display: flex; }
  .stamp { justify-self: start; width: 220px; }
  .hero { padding-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
