:root {
  --ink: #110f0c;
  --ink-2: #1b1712;
  --ink-3: #261f18;
  --paper: #f4ead6;
  --paper-dim: #d8cbb3;
  --copper: #d29a45;
  --copper-2: #f0c27a;
  --ember: #c24b22;
  --moss: #4a6a52;
  --line: rgba(244, 234, 214, 0.14);
  --line-strong: rgba(210, 154, 69, 0.45);
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  --display: "Fraunces", "Times New Roman", serif;
  --ui: "Sora", "Segoe UI", sans-serif;
  --body: "Newsreader", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(210, 154, 69, 0.16), transparent 55%),
    radial-gradient(900px 500px at 110% 8%, rgba(194, 75, 34, 0.14), transparent 50%),
    var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.7;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 10px;
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 0 6px rgba(17, 15, 12, 0.65);
  pointer-events: none;
  z-index: 40;
}

a { color: var(--copper-2); }
a:hover { color: #fff3d4; }

img { max-width: 100%; height: auto; display: block; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--copper);
  color: var(--ink);
  padding: 10px 14px;
  z-index: 80;
}
.skip:focus { left: 16px; top: 16px; }

.age-bar {
  position: relative;
  z-index: 50;
  background: #0a0907;
  color: var(--paper-dim);
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--line);
}

.cta-flash {
  position: sticky;
  top: 0;
  z-index: 55;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 10px 14px;
  background: linear-gradient(90deg, #3a2012, #6a3a16 40%, #3a2012);
  border-bottom: 1px solid rgba(240, 194, 122, 0.4);
}

.btn {
  font-family: var(--ui);
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-enter {
  background: var(--copper);
  color: #1a1208;
  box-shadow: 0 0 0 0 rgba(210, 154, 69, 0.6);
  animation: pulse 1.8s ease-in-out infinite;
}

.btn-join {
  background: var(--ember);
  color: #fff7ee;
}

.btn:hover { transform: translateY(-2px); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(210, 154, 69, 0.55); }
  50% { box-shadow: 0 0 0 10px rgba(210, 154, 69, 0); }
}

.site-header {
  position: relative;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px 8px;
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--paper);
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
}

.brand-mark {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.brand-mark small {
  display: block;
  font-family: var(--ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-2);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--ui);
  font-size: 0.92rem;
}

.nav a {
  color: var(--paper);
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { display: flex; gap: 8px; }

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-family: var(--ui);
}

.ticker-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  margin: 6px 18px 0;
}

.ticker {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  color: var(--copper-2);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  padding: 42px 0 18px;
  align-items: end;
}

.kicker {
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  margin: 0 0 16px;
}

h1 em {
  font-style: italic;
  color: var(--copper-2);
}

.lede {
  font-size: 1.28rem;
  color: var(--paper-dim);
  max-width: 38ch;
}

.hero-card {
  background:
    linear-gradient(180deg, rgba(38, 31, 24, 0.9), rgba(17, 15, 12, 0.92)),
    url("../img/og-salon.png") center/cover;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  min-height: 320px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 30%;
  height: 180px;
  background: radial-gradient(circle, rgba(210, 154, 69, 0.28), transparent 70%);
  animation: drift 7s ease-in-out infinite;
}

@keyframes drift {
  50% { transform: translate(-20px, -12px); }
}

.hero-meta {
  position: relative;
  z-index: 1;
  font-family: var(--ui);
  font-size: 0.86rem;
}

.seal {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px dashed var(--copper);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  background: rgba(17, 15, 12, 0.7);
  margin-left: auto;
}

.seal b { font-size: 1.6rem; display: block; }
.seal span { font-family: var(--ui); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; }

.section { padding: 42px 0; }

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 12px;
}

.sub {
  color: var(--paper-dim);
  max-width: 62ch;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.slides {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.55s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(194, 75, 34, 0.18), transparent 40%),
    var(--ink-2);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.ticket {
  border: 1px dashed rgba(240, 194, 122, 0.45);
  border-radius: 16px;
  padding: 18px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 12px,
    rgba(210, 154, 69, 0.05) 12px,
    rgba(210, 154, 69, 0.05) 13px
  );
}

.ticket .code {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--copper-2);
  word-break: break-all;
}

.status {
  display: inline-block;
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(74, 106, 82, 0.35);
  color: #d8efd8;
}

.slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8px 0;
}

.dots { display: flex; gap: 8px; }
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(244, 234, 214, 0.25);
  border: 0;
}
.dot.is-on { background: var(--copper); }

.ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--ui);
  border-radius: 999px;
  padding: 8px 12px;
}

.grid-2, .grid-3 {
  display: grid;
  gap: 18px;
}

.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card, article.story {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

article.story p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 3.1rem;
  float: left;
  line-height: 0.8;
  padding: 8px 10px 0 0;
  color: var(--copper);
}

.story h3 { margin-top: 0; font-size: 1.7rem; }
.story .meta {
  font-family: var(--ui);
  font-size: 0.8rem;
  color: var(--paper-dim);
}

.crumbs {
  font-family: var(--ui);
  font-size: 0.82rem;
  color: var(--paper-dim);
  padding: 18px 0 0;
}

.crumbs a { color: var(--paper); text-decoration: none; }

.review {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
}

.stars { color: var(--copper-2); letter-spacing: 2px; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.faq summary {
  font-family: var(--ui);
  font-weight: 600;
  cursor: pointer;
}

.event {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
}

.event-date {
  text-align: center;
  border: 1px solid var(--copper);
  border-radius: 14px;
  padding: 12px 8px;
  font-family: var(--ui);
}

.event-date b { display: block; font-size: 1.8rem; color: var(--copper-2); }

.lang-switch {
  display: flex;
  gap: 8px;
  font-family: var(--ui);
  font-size: 0.75rem;
}

.lang-switch a {
  color: var(--paper-dim);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 4px 7px;
  border-radius: 8px;
}

.lang-switch a[aria-current="true"] {
  color: var(--ink);
  background: var(--copper);
  border-color: var(--copper);
}

.site-footer {
  margin-top: 30px;
  padding: 36px 0 90px;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

.cta-dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  gap: 8px;
  padding: 8px;
  background: rgba(17, 15, 12, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.cta-dock .btn { flex: 1; }

.note {
  font-size: 0.92rem;
  color: var(--paper-dim);
}

ol.steps { padding-left: 20px; }
ol.steps li { margin: 10px 0; }

.marquee-alt {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  white-space: nowrap;
  overflow: hidden;
  border-block: 1px solid var(--line);
  color: rgba(244, 234, 214, 0.12);
}

.marquee-alt span {
  display: inline-block;
  animation: ticker 18s linear infinite;
  padding: 8px 0;
}

@media (max-width: 860px) {
  body::before { inset: 0; border: 0; box-shadow: none; }
  .site-header { padding: 12px 14px; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    flex-direction: column;
  }
  .nav.is-open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .hero, .slide, .grid-2, .grid-3, .review, .event, .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-dock { display: flex; }
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  h1 { font-size: 2.2rem; }
  .cta-flash { position: sticky; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
