:root {
  --night: #14090c;
  --espresso: #1c100e;
  --velvet: #4a1020;
  --wine: #7a1d33;
  --rose: #b85a6a;
  --gold: #c9a227;
  --gold-soft: #e3c86a;
  --ivory: #f4ebd8;
  --paper: #efe2cc;
  --dust: #e8c9b0;
  --ink: #2a1714;
  --mute: #8a7268;
  --line: rgba(201, 162, 39, 0.28);
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --text: "Newsreader", "Georgia", serif;
  --ui: "Figtree", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  color: var(--ivory);
  background: var(--night);
  font-family: var(--ui);
  line-height: 1.7;
  padding-bottom: 92px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 80;
  background: var(--gold);
  color: var(--espresso);
  padding: 8px 14px;
}
.skip-link:focus { left: 12px; }

.gold-dust {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.site-rail {
  position: relative;
  z-index: 2;
}

.topdock {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(20, 9, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 420px) {
  .brand-copy span { display: none; }
  .brand-copy strong { font-size: 1.15rem; }
  .topdock { padding: 8px 10px; gap: 8px; }
  .cta-pair .btn { padding: 0 11px; min-height: 40px; font-size: 0.84rem; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-copy span {
  font-size: 0.72rem;
  color: var(--dust);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cta-pair {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-login {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--espresso);
  box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.55);
  animation: pulse-gold 1.8s ease-in-out infinite;
}

.btn-join {
  background: var(--wine);
  color: var(--ivory);
  border: 1px solid var(--gold);
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.55); }
  50% { box-shadow: 0 0 0 10px rgba(201, 162, 39, 0); }
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--line);
}

.menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #1a0c10;
  border-bottom: 1px solid var(--line);
  padding: 10px 16px 16px;
}

.menu.open { display: grid; gap: 8px; }

.menu a {
  padding: 10px 8px;
  border-bottom: 1px dashed rgba(232, 201, 176, 0.14);
  font-size: 0.95rem;
}

.lang-row {
  display: flex;
  gap: 8px;
  padding-top: 8px;
}

.lang-row a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
}

.lang-row a[aria-current="page"] {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

.ticker {
  overflow: hidden;
  background: var(--velvet);
  border-bottom: 1px solid var(--gold);
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  padding: 8px 0;
  animation: marquee 28s linear infinite;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 36px 0 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(122, 29, 51, 0.55), transparent 70%);
  filter: blur(6px);
  animation: drift 8s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-18px, 12px); }
}

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.1rem, 8vw, 4.4rem);
  line-height: 0.95;
  margin: 0 0 16px;
}

.lede {
  font-family: var(--text);
  font-size: 1.12rem;
  max-width: 62ch;
  color: var(--paper);
  margin: 0 0 22px;
}

.seal {
  position: relative;
  background:
    linear-gradient(145deg, rgba(74, 16, 32, 0.92), rgba(28, 16, 14, 0.95)),
    repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(201, 162, 39, 0.04) 10px, rgba(201, 162, 39, 0.04) 11px);
  border: 1px solid var(--gold);
  border-radius: 28px 8px 28px 8px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.seal-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 8px;
}

.address {
  font-family: var(--mono);
  font-size: clamp(0.92rem, 3.4vw, 1.15rem);
  word-break: break-word;
  color: var(--ivory);
  margin: 0 0 14px;
}

.seal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 14px;
}

.hero-grid {
  display: grid;
  gap: 22px;
}

@media (max-width: 859px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
  }
  .hero-grid .seal { order: -1; }
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.stat {
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 14px;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold-soft);
}

.stat span { font-size: 0.82rem; color: var(--paper); }

.slider {
  margin: 10px 0 36px;
}

.slider-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.slides {
  display: flex;
  transition: transform 0.55s ease;
}

.slide {
  min-width: 100%;
  padding: 28px 22px;
  background:
    linear-gradient(160deg, #3a101c 0%, #1c100e 70%);
}

.slide h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  margin: 0 0 8px;
}

.slide p {
  margin: 0;
  max-width: 50ch;
  color: var(--paper);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5a3a36;
}

.dot.active { background: var(--gold); }

.section {
  padding: 28px 0;
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 8px;
}

.section .intro {
  font-family: var(--text);
  color: var(--paper);
  max-width: 70ch;
}

.folio {
  background: var(--ivory);
  color: var(--ink);
  border-radius: 20px;
  padding: 22px 20px;
  margin: 18px 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.folio header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px solid rgba(74, 16, 32, 0.12);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.folio h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin: 0;
  line-height: 1.15;
}

.folio time {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--wine);
  white-space: nowrap;
}

.folio p {
  font-family: var(--text);
  font-size: 1.05rem;
  margin: 0 0 14px;
}

.folio h4 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 18px 0 8px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  background: #fff8ee;
  border-left: 4px solid var(--wine);
  padding: 12px 14px;
}

.steps li::before {
  content: counter(step);
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--velvet);
  display: block;
  margin-bottom: 4px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: #fff;
  border: 1px solid rgba(74, 16, 32, 0.12);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
}

.review-grid, .faq-list, .event-card {
  display: grid;
  gap: 12px;
}

.review {
  background: rgba(244, 235, 216, 0.05);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.stars { color: var(--gold); letter-spacing: 2px; }

.review footer {
  margin-top: 8px;
  color: var(--dust);
  font-size: 0.85rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: rgba(74, 16, 32, 0.45);
  color: var(--ivory);
  padding: 14px 16px;
  font-weight: 650;
}

.faq-item .answer {
  display: none;
  padding: 0 16px 14px;
  color: var(--paper);
  background: rgba(74, 16, 32, 0.28);
}

.faq-item.open .answer { display: block; }

.event-card {
  background:
    linear-gradient(120deg, rgba(122, 29, 51, 0.4), rgba(28, 16, 14, 0.2)),
    var(--espresso);
  border: 1px solid var(--gold);
  border-radius: 18px;
  padding: 20px;
}

.crumbs {
  font-size: 0.82rem;
  color: var(--dust);
  margin: 8px 0 0;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  opacity: 0.6;
}

.site-foot {
  border-top: 1px solid var(--line);
  padding: 28px 0 20px;
  color: var(--dust);
  font-size: 0.9rem;
}

.mobiledock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20, 9, 12, 0.96);
  border-top: 1px solid var(--gold);
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .topdock {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 12px 28px;
  }
  .menu {
    display: flex;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
  .menu a { border: 0; padding: 0; font-size: 0.88rem; }
  .menu a:hover { color: var(--gold-soft); }
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .folio { padding: 32px 36px; }
  .mobiledock { display: none; }
  body { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
