@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

:root {
  --ink: #171217;
  --muted: #665d66;
  --cream: #fffaf4;
  --paper: #ffffff;
  --pink: #f8b9e3;
  --pink-soft: #fdebf7;
  --red: #ee3948;
  --yellow: #ffd45a;
  --line: #ded4dc;
  --shadow: 0 16px 50px rgba(39, 18, 33, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
[data-content] a { color: #b81732; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 3px; }
[data-content] a:hover { color: var(--red); }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 12px; z-index: 100; padding: 10px 14px; background: white; border: 2px solid var(--ink); }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,250,244,.9); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(23,18,23,.08); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; text-decoration: none; letter-spacing: -.02em; }
.brand img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; border: 1px solid var(--line); }
.site-header .brand span { color: white; font-family: "Archivo Black", Impact, sans-serif; font-size: clamp(1.2rem, 2.5vw, 2rem); line-height: 1; letter-spacing: -.04em; text-transform: uppercase; -webkit-text-stroke: 5px var(--ink); paint-order: stroke fill; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { text-decoration: none; font-weight: 750; padding: 10px 13px; border-radius: 999px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--pink-soft); }
.nav-links .nav-cta { background: var(--ink); color: white; }
.nav-links .nav-cta:hover, .nav-links .nav-cta[aria-current="page"] { background: var(--red); }
.menu-btn { display: none; border: 0; background: transparent; font: inherit; font-weight: 800; padding: 8px; }

.hero { min-height: 650px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 64px; padding: 76px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 900; }
.eyebrow::before { content: ""; width: 25px; height: 4px; background: var(--red); border-radius: 4px; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.045em; margin: 0 0 18px; }
h1 { font-size: clamp(3.3rem, 8vw, 7.5rem); max-width: 9ch; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: 1.45rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.32rem); color: var(--muted); max-width: 630px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 2px solid var(--ink); border-radius: 999px; text-decoration: none; font-weight: 900; transition: transform .18s, box-shadow .18s, background .18s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); }
.btn-primary { color: white; background: var(--ink); }
.btn-pink { background: var(--pink); }
.btn-light { background: white; }

.hero-art { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-disc { width: min(390px, 86vw); aspect-ratio: 1; overflow: hidden; border-radius: 24px; padding: 0; background: white; border: 1px solid var(--line); box-shadow: 0 24px 70px rgba(39, 18, 33, .18); transform: none; }
.hero-disc img { width: 100%; height: 100%; object-fit: cover; border-radius: 23px; border: 0; image-rendering: auto; }
.spark { display: none; }
.spark-a { left: 1%; top: 12%; transform: rotate(-14deg); }
.spark-b { right: 0; bottom: 5%; transform: rotate(15deg); }

.ticker { overflow: hidden; background: var(--ink); color: white; border-block: 3px solid var(--ink); }
.ticker-track { width: max-content; padding: 14px 0; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; animation: ticker 24s linear infinite; }
.ticker span { color: var(--pink); padding: 0 16px; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } * { scroll-behavior: auto !important; } }

.section { padding: 96px 0; }
.section-pink { background: var(--pink-soft); border-block: 1px solid #f3cee7; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 40px; }
.section-head p { max-width: 510px; color: var(--muted); margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border: 2px solid var(--ink); background: white; border-radius: var(--radius); box-shadow: 7px 7px 0 var(--ink); }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--pink); border: 2px solid var(--ink); font-size: 1.4rem; margin-bottom: 36px; }
.card p { color: var(--muted); margin-bottom: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; }
.feature-list li { display: flex; gap: 12px; margin: 15px 0; font-weight: 700; }
.feature-list li::before { content: "✓"; flex: 0 0 26px; width: 26px; height: 26px; text-align: center; line-height: 24px; border-radius: 50%; background: var(--yellow); border: 2px solid var(--ink); }
.quote { background: var(--red); color: white; padding: 48px; border: 3px solid var(--ink); border-radius: 40px 10px 40px 10px; box-shadow: 12px 12px 0 var(--ink); }
.quote p { font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.2; font-weight: 900; letter-spacing: -.03em; margin: 0 0 24px; }
.quote span { font-weight: 800; }

.page-hero { padding: 92px 0 70px; background: linear-gradient(135deg, var(--pink-soft), var(--cream) 65%); border-bottom: 2px solid var(--ink); }
.page-hero h1 { max-width: 11ch; font-size: clamp(3.2rem, 7vw, 6.5rem); }
.info-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px; }
.panel { background: white; border: 2px solid var(--ink); border-radius: var(--radius); padding: 34px; }
.panel-accent { background: var(--pink); box-shadow: 8px 8px 0 var(--ink); }
.ticket-card { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; background: white; padding: 36px; border: 3px solid var(--ink); border-radius: 24px; box-shadow: 10px 10px 0 var(--pink); }
.ticket-status { display: inline-block; padding: 7px 12px; border: 2px solid var(--ink); border-radius: 99px; background: var(--yellow); font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.ticket-price { text-align: right; }
.ticket-price strong { display: block; font-size: 1.6rem; }
.notice { margin-top: 28px; padding: 20px; background: var(--pink-soft); border-left: 5px solid var(--red); }
.gallery-section { background: var(--cream); }
.gallery-grid { position: relative; width: 100%; }
.gallery-card { position: absolute; top: 0; left: 0; margin: 0; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 14px 38px rgba(39,18,33,.1); transition: transform .22s ease; }
.gallery-open { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-card img { width: 100%; height: auto; transition: transform .25s ease; }
.gallery-open:hover img { transform: scale(1.025); }
.gallery-open:focus-visible { outline: 4px solid var(--red); outline-offset: -4px; }
.gallery-card figcaption { padding: 16px 18px 18px; color: var(--muted); font-weight: 700; }
.gallery-lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 24px; border: 0; background: rgba(15, 10, 15, .94); color: white; }
.gallery-lightbox::backdrop { background: rgba(15, 10, 15, .94); }
.lightbox-frame { position: relative; width: 100%; height: 100%; display: grid; grid-template-columns: 70px minmax(0, 1fr) 70px; grid-template-rows: minmax(0, 1fr) auto; align-items: center; justify-items: center; gap: 16px; }
.lightbox-frame img { grid-column: 2; max-width: 100%; max-height: calc(100vh - 110px); object-fit: contain; border-radius: 12px; }
.lightbox-caption { grid-column: 2; margin: 0; text-align: center; color: rgba(255,255,255,.82); font-weight: 700; }
.lightbox-close, .lightbox-nav { border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: white; cursor: pointer; }
.lightbox-close:hover, .lightbox-nav:hover { background: white; color: var(--ink); }
.lightbox-close { position: absolute; z-index: 2; top: 0; right: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; line-height: 1; }
.lightbox-nav { width: 54px; height: 70px; border-radius: 18px; font-size: 3rem; line-height: 1; }
.lightbox-previous { grid-column: 1; grid-row: 1; }
.lightbox-next { grid-column: 3; grid-row: 1; }
body.lightbox-open { overflow: hidden; }
.ticket-embed { overflow: hidden; background: white; border: 3px solid var(--ink); border-radius: 24px; box-shadow: 10px 10px 0 var(--pink); }
.ticket-embed-head { display: flex; justify-content: space-between; align-items: center; gap: 22px; padding: 26px 30px; border-bottom: 2px solid var(--ink); }
.ticket-embed-head h2 { margin: 12px 0 0; }
.ticket-embed-head a { font-weight: 900; white-space: nowrap; }
.ticket-embed iframe { display: block; width: 100%; height: 720px; border: 0; background: white; }
.eventbrite-booking { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(420px, 1.35fr); gap: 34px; align-items: start; margin-top: 42px; padding: 34px; background: white; border: 3px solid var(--ink); border-radius: 24px; box-shadow: 10px 10px 0 var(--pink); }
.eventbrite-booking-copy { padding: 16px 4px; }
.eventbrite-booking-copy .btn { margin-top: 12px; }
.eventbrite-widget-shell { min-height: 425px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 18px; }
.eventbrite-widget-shell iframe { display: block; width: 100%; min-height: 425px; border: 0; }
.tickets-widget-section { padding: 22px 0 64px; }
.tickets-widget-section .eventbrite-widget-shell { border-radius: 18px; box-shadow: var(--shadow); }
.tickets-external-action { display: flex; justify-content: center; margin-top: 24px; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.home-booking { background: var(--pink-soft); }
.home-booking .eventbrite-widget-shell { max-width: 900px; margin-inline: auto; box-shadow: var(--shadow); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; }
.contact-items { display: grid; gap: 14px; margin-top: 28px; }
.contact-item { padding: 18px; background: white; border: 2px solid var(--ink); border-radius: 16px; text-decoration: none; font-weight: 800; }
.social-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.social-links a { display: flex; align-items: center; gap: 10px; padding: 13px 14px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; font-weight: 800; transition: transform .18s, box-shadow .18s; }
.social-links a:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink); }
.social-links svg { width: 23px; height: 23px; flex: none; fill: currentColor; }
form { display: grid; gap: 18px; }
label { display: grid; gap: 7px; font-weight: 800; }
input, textarea, select { width: 100%; border: 2px solid var(--ink); border-radius: 12px; padding: 13px 14px; background: white; color: var(--ink); font: inherit; }
textarea { min-height: 145px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 4px solid var(--pink); outline-offset: 1px; }
button.btn { cursor: pointer; font: inherit; }
.form-note { color: var(--muted); font-size: .9rem; margin: 0; }
.form-status { min-height: 1.4em; margin: 0; font-weight: 800; }
.form-status.is-success { color: #18733b; }
.form-status.is-error { color: #a51c30; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
form button:disabled { cursor: wait; opacity: .7; }

.cta { margin: 0 auto 96px; padding: 52px; display: flex; align-items: center; justify-content: space-between; gap: 28px; background: var(--yellow); border: 3px solid var(--ink); border-radius: 28px; box-shadow: 10px 10px 0 var(--red); }
.cta h2 { margin-bottom: 6px; }
.cta p { margin: 0; }
footer { padding: 48px 0 28px; background: var(--ink); color: white; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; align-items: start; }
.footer-brand { max-width: 420px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--pink); font-weight: 800; }
.copyright { padding-top: 32px; margin-top: 32px; border-top: 1px solid #443b44; color: #b9afb8; font-size: .9rem; }

@media (max-width: 800px) {
  .menu-btn { display: block; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 68px; padding: 14px; flex-direction: column; align-items: stretch; background: white; border: 2px solid var(--ink); border-radius: 18px; box-shadow: 7px 7px 0 var(--ink); }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .hero { grid-template-columns: 1fr; padding-top: 52px; gap: 24px; }
  .hero-art { min-height: 390px; }
  .cards, .split, .info-grid, .contact-grid { grid-template-columns: 1fr; }
  .section-head, .cta, .footer-grid { align-items: start; flex-direction: column; }
  .ticket-card { grid-template-columns: 1fr; }
  .ticket-price { text-align: left; }
  .ticket-embed-head { align-items: flex-start; flex-direction: column; }
  .ticket-embed iframe { height: 660px; }
  .eventbrite-booking { grid-template-columns: 1fr; padding: 24px; }
  .section { padding: 70px 0; }
}

@media (max-width: 440px) {
  .site-header .brand span { display: block; width: 78px; font-size: 1.08rem; line-height: .92; text-align: center; }
}

@media (max-width: 480px) {
  .wrap { width: min(100% - 26px, 1120px); }
  .brand span { font-size: .9rem; }
  h1 { font-size: 3.15rem; }
  .hero-disc { width: 300px; }
  .hero-art { min-height: 335px; }
  .quote, .panel, .ticket-card, .cta { padding: 26px; }
}

@media (max-width: 600px) {
  .gallery-lightbox { padding: 14px; }
  .lightbox-frame { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 8px; }
  .lightbox-nav { width: 42px; height: 56px; border-radius: 14px; font-size: 2.3rem; }
  .lightbox-frame img { max-height: calc(100vh - 100px); }
}
