/* ===== Tokens ===== */
:root {
  --ink: #150E1F;
  --ink-soft: #241531;
  --paper: #FFF8EC;
  --paper-line: #EBDFC9;
  --hot-pink: #FF2E88;
  --marigold: #FFC93C;
  --violet: #8B5CF6;
  --aqua: #2FE6C6;

  --display: 'Bungee', system-ui, sans-serif;
  --quote: 'Fraunces', Georgia, serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'Space Mono', 'Courier New', monospace;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin: 0 0 0.9rem;
}
.eyebrow--light { color: var(--marigold); }

.section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.2;
  margin: 0 0 1.1rem;
}
.section-title--light { color: var(--paper); }
.section-sub { max-width: 46ch; color: #4a3f52; }
.section--ink .section-sub { color: #cfc2da; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px) rotate(-0.5deg); }
.btn--primary {
  background: var(--hot-pink);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--marigold);
}
.btn--primary:hover { box-shadow: 6px 6px 0 var(--marigold); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn--ghost:hover { background: var(--paper); color: var(--ink); }

.section { padding: 5.5rem 1.5rem; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-head { margin-bottom: 3rem; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(21, 14, 31, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--hot-pink);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0.9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--display); font-size: 1.05rem; color: var(--paper);
  text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo span { color: var(--marigold); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  color: var(--paper); text-decoration: none; font-weight: 600; font-size: 0.92rem;
  opacity: 0.85;
}
.nav-links a:hover { opacity: 1; color: var(--aqua); }
.nav-cta {
  background: var(--hot-pink); padding: 0.55rem 1.1rem; border-radius: 999px;
  opacity: 1 !important; color: var(--paper) !important;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--paper); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 30% 20%, #2c1a3d 0%, var(--ink) 55%), var(--ink);
  overflow: hidden;
  padding: 5rem 1.5rem 4.5rem;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,46,136,0.05) 0 2px, transparent 2px 40px),
    repeating-linear-gradient(25deg, rgba(47,230,198,0.05) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(255,201,60,0.18), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.98;
  margin: 0.3rem 0 1.2rem;
  position: relative;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.hero-title::before, .hero-title::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%;
  z-index: -1;
}
.hero-title::before { color: var(--aqua); transform: translate(-5px, 4px); mix-blend-mode: screen; }
.hero-title::after { color: var(--hot-pink); transform: translate(5px, -3px); mix-blend-mode: screen; }

.hero-sub {
  font-family: var(--quote); font-style: italic; font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: #e8d9f0; max-width: 42ch; margin: 0 0 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; }
.hero-asseen {
  font-family: var(--mono); font-size: 0.78rem; color: #a996ba;
  letter-spacing: 0.02em;
}

.hero-frame-wrap { position: relative; display: flex; justify-content: center; }
.bulb-frame {
  position: relative; width: min(340px, 80vw); aspect-ratio: 1/1; border-radius: 50%;
  padding: 22px;
}
.bulb-frame .hero-photo {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  object-position: center 20%;
  border: 4px solid var(--ink-soft);
  box-shadow: 0 0 0 3px var(--marigold), 0 20px 50px rgba(0,0,0,0.5);
}
.bulb {
  position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; border-radius: 50%;
  background: var(--marigold);
  box-shadow: 0 0 8px 2px var(--marigold);
  margin: -5px 0 0 -5px;
  animation: twinkle 1.8s ease-in-out infinite;
}
.bulb:nth-child(3n) { background: var(--hot-pink); box-shadow: 0 0 8px 2px var(--hot-pink); }
.bulb:nth-child(3n+1) { background: var(--aqua); box-shadow: 0 0 8px 2px var(--aqua); }
@keyframes twinkle { 0%, 100% { opacity: 0.35; transform: scale(0.85) translate(var(--tx,0), var(--ty,0)); } 50% { opacity: 1; transform: scale(1.15) translate(var(--tx,0), var(--ty,0)); } }

.hero-tag {
  position: absolute; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 0.4rem 0.7rem; border-radius: 6px; font-weight: 700;
}
.hero-tag--1 { top: 4%; right: 2%; background: var(--hot-pink); color: var(--paper); transform: rotate(6deg); }
.hero-tag--2 { bottom: 6%; left: -2%; background: var(--aqua); color: var(--ink); transform: rotate(-5deg); }

/* ===== Ticker ===== */
.ticker {
  background: var(--marigold); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 2.5rem; padding: 0.7rem 0;
  animation: ticker-scroll 26s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: var(--mono); font-weight: 700; font-size: 0.85rem; color: var(--ink);
  display: flex; align-items: center; gap: 2.5rem;
}
.ticker-item::after { content: "★"; color: var(--hot-pink); margin-left: 2.5rem; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo {
  border-radius: 6px; border: 10px solid #fff;
  box-shadow: 0 18px 40px rgba(21,14,31,0.25);
  transform: rotate(-3deg);
}
.washi {
  position: absolute; top: -14px; left: 40%; width: 90px; height: 30px;
  transform: rotate(-6deg); opacity: 0.85; border-radius: 2px;
}
.washi--pink { background: repeating-linear-gradient(45deg, var(--hot-pink), var(--hot-pink) 6px, #ff6bad 6px, #ff6bad 12px); }

.about-copy p { color: #3a2f42; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin: 2rem 0 0.6rem;
}
.stat-card {
  border: 2px dashed var(--violet); border-radius: 10px; padding: 1rem 0.7rem; text-align: center;
  background: #fffdf8;
  position: relative;
}
.stat-card::before, .stat-card::after {
  content: ""; position: absolute; top: 50%; width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper); transform: translateY(-50%); border: 2px dashed var(--violet);
}
.stat-card::before { left: -8px; }
.stat-card::after { right: -8px; }
.stat-num { display: block; font-family: var(--display); font-size: 1.6rem; color: var(--hot-pink); }
.stat-label { display: block; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.02em; color: #4a3f52; margin-top: 0.3rem; }
.stat-footnote { font-family: var(--mono); font-size: 0.72rem; color: #8a7d90; margin-top: 0.9rem; }

/* ===== Gallery / Polaroids ===== */
.polaroid-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem 1.6rem; margin-bottom: 3rem;
}
.polaroid {
  background: #fff; padding: 0.7rem 0.7rem 1.1rem; margin: 0; border-radius: 3px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  transition: transform 0.25s ease;
}
.polaroid:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 2; }
.polaroid img { border-radius: 2px; aspect-ratio: 4/5; object-fit: cover; }
.p2 img { object-position: top; }
.polaroid figcaption {
  font-family: var(--mono); font-size: 0.78rem; text-align: center; color: var(--ink); padding-top: 0.6rem;
}
.p1 { transform: rotate(-4deg); }
.p2 { transform: rotate(3deg); }
.p3 { transform: rotate(-2deg); }
.p4 { transform: rotate(4deg); }
.p5 { transform: rotate(-3deg); }
.p6 { transform: rotate(2deg); }

.tea-widget { text-align: center; }
.tea-output {
  font-family: var(--quote); font-style: italic; color: var(--marigold); margin-top: 1.2rem;
  font-size: 1.15rem; min-height: 1.6em;
}

/* ===== Press ===== */
.press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.press-card {
  margin: 0; background: #fffdf8; border: 3px solid var(--ink); border-radius: 12px;
  padding: 1.6rem 1.8rem; box-shadow: 6px 6px 0 var(--violet);
}
.stars { color: var(--marigold); letter-spacing: 0.1em; font-size: 1.1rem; }
.press-card p { font-family: var(--quote); font-style: italic; font-size: 1.15rem; margin: 0.6rem 0 0.8rem; }
.press-card cite { font-family: var(--mono); font-size: 0.75rem; font-style: normal; color: var(--hot-pink); }

/* ===== Shows ===== */
.shows-list { list-style: none; margin: 0; padding: 0; }
.shows-list li {
  display: grid; grid-template-columns: 70px 1fr auto; gap: 1.5rem; align-items: center;
  padding: 1.3rem 0; border-bottom: 1px dashed rgba(255,248,236,0.25);
}
.shows-list li:first-child { border-top: 1px dashed rgba(255,248,236,0.25); }
.show-date {
  font-family: var(--mono); font-weight: 700; font-size: 0.8rem; color: var(--aqua);
  text-align: center; line-height: 1.3;
}
.show-info { color: var(--paper); }
.show-info strong { color: var(--marigold); font-family: var(--body); }
.show-link { color: var(--hot-pink); text-decoration: none; font-weight: 700; font-size: 0.88rem; white-space: nowrap; }
.show-link:hover { text-decoration: underline; }

/* ===== Community banner ===== */
.community { position: relative; padding: 6rem 1.5rem; overflow: hidden; }
.community-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.community-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,14,31,0.92), rgba(139,92,246,0.55));
}
.community-content { position: relative; max-width: 720px; margin: 0 auto; text-align: center; }
.community-content p { color: #f2e9f7; font-size: 1.05rem; }

/* ===== Booking ===== */
.booking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.booking-card {
  background: #fff; border-radius: 14px; padding: 2rem 1.6rem; text-align: center;
  border-top: 6px solid var(--hot-pink);
  box-shadow: 0 10px 26px rgba(21,14,31,0.08);
}
.booking-card:nth-child(2) { border-top-color: var(--aqua); }
.booking-card:nth-child(3) { border-top-color: var(--marigold); }
.booking-card h3 { font-family: var(--display); font-size: 1.05rem; margin: 0 0 1rem; }
.booking-name { font-weight: 700; margin: 0; }
.booking-org { color: #7a6d82; margin: 0.2rem 0 1rem; font-size: 0.92rem; }
.booking-card a { color: var(--violet); font-weight: 700; text-decoration: none; word-break: break-word; }
.booking-card a:hover { text-decoration: underline; }

/* ===== Footer ===== */
.footer { background: var(--ink); padding: 3.5rem 1.5rem 2.5rem; text-align: center; }
.footer-inner { max-width: 600px; margin: 0 auto; }
.nav-logo--footer { font-size: 1.3rem; }
.footer-tagline { font-family: var(--quote); font-style: italic; color: #cbb8d6; margin: 0.8rem 0 1.6rem; }
.footer-links { display: flex; justify-content: center; gap: 1.6rem; margin-bottom: 2rem; }
.footer-links a {
  color: var(--paper); text-decoration: none; font-weight: 700; font-size: 0.85rem;
  border: 2px solid var(--paper); border-radius: 999px; padding: 0.5rem 1.1rem;
}
.footer-links a:hover { background: var(--paper); color: var(--ink); }
.footer-fine { font-family: var(--mono); font-size: 0.72rem; color: #6f637a; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-frame-wrap { order: 1; margin-bottom: 1rem; }
  .hero-ctas, .hero-asseen { justify-content: center; text-align: center; }
  .hero-ctas { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 320px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .polaroid-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--ink);
    flex-direction: column; align-items: flex-start; padding: 1.2rem 1.5rem;
    display: none; gap: 1rem; border-bottom: 3px solid var(--hot-pink);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
}
@media (max-width: 560px) {
  .polaroid-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .shows-list li { grid-template-columns: 50px 1fr; }
  .show-link { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .bulb { animation: none; opacity: 0.9; }
  .btn:hover { transform: none; }
}
