@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/bodoni-moda-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/manrope-latin.woff2") format("woff2");
}
:root {
  --paper: #ffffff;
  --paper-deep: oklch(91.8% 0.024 244);
  --ink: oklch(25.5% 0.045 250);
  --ink-soft: oklch(43% 0.035 248);
  --blue: oklch(48% 0.12 252);
  --blue-deep: oklch(35% 0.11 254);
  --line: oklch(78% 0.028 245);
  --accent: oklch(66% 0.14 21);
  --white-ink: oklch(98% 0.008 245);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --display: "Bodoni Moda", Georgia, serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.16' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 20;
}
a { color: inherit; }
.site-shell { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); overflow: clip; }
.skip-link { position: absolute; left: -10000px; top: 12px; padding: 10px 14px; background: var(--ink); color: var(--white-ink); z-index: 30; }
.skip-link:focus { left: 12px; }
.topbar { min-height: 84px; display: flex; align-items: center; gap: 32px; border-bottom: 1px solid var(--line); }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; letter-spacing: 0; }
.brand-name { font-size: 20px; }
.brand-mark { width: 26px; height: 26px; border: 2px solid var(--blue-deep); border-radius: 50%; display: grid; place-items: center; position: relative; }
.brand-mark::before, .brand-mark::after, .brand-mark span { content: ""; position: absolute; height: 2px; background: var(--blue-deep); border-radius: 2px; }
.brand-mark::before { width: 12px; transform: rotate(45deg); }
.brand-mark::after { width: 12px; transform: rotate(-45deg); }
.brand-mark span { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); z-index: 1; }
.nav-links { display: flex; gap: clamp(18px, 3vw, 42px); margin-left: auto; }
.nav-links a, .language-toggle { color: var(--ink-soft); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.nav-links a:hover, .nav-links a:focus-visible, .language-toggle:hover, .language-toggle:focus-visible { color: var(--blue); }
.language-toggle { appearance: none; border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 8px 14px; cursor: pointer; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.language-toggle:hover, .language-toggle:focus-visible { background: var(--paper-deep); border-color: var(--blue); outline: none; }
.language-link { display: inline-block; }
.hero { display: grid; grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr); gap: clamp(40px, 8vw, 132px); align-items: center; min-height: min(790px, calc(100vh - 84px)); padding: clamp(72px, 10vw, 144px) 0 clamp(72px, 11vw, 152px); }
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: 0; }
h1 { max-width: 10ch; margin-bottom: 28px; font-size: 88px; line-height: .98; }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.hero-lede { max-width: 37ch; color: var(--ink-soft); font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; gap: 12px; min-height: 48px; padding: 0 18px; border: 1px solid transparent; border-radius: 4px; font-size: 13px; font-weight: 700; text-decoration: none; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); outline: none; }
.button-primary { background: var(--blue-deep); color: var(--white-ink); }
.button-primary:hover, .button-primary:focus-visible { background: var(--blue); }
.button-store { border-color: var(--line); color: var(--ink-soft); background: color-mix(in oklch, var(--paper-deep) 55%, transparent); font-family: var(--body); }
.button-store:disabled { opacity: .62; cursor: not-allowed; }
.button-store:disabled:hover { transform: none; }
.button-outline { border-color: var(--blue); color: var(--blue-deep); }
.button-outline:hover, .button-outline:focus-visible { background: var(--blue-deep); color: var(--white-ink); }
.text-link { color: var(--blue-deep); font-size: 13px; font-weight: 700; text-underline-offset: 4px; }
.text-link:hover, .text-link:focus-visible { color: var(--accent); }
.hero-meta { display: flex; align-items: center; gap: 10px; margin-top: 74px; color: var(--ink-soft); font-size: 11px; letter-spacing: .05em; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 12%, transparent); }
.hero-stage { min-height: 680px; }
.stage-visual { min-height: 680px; position: relative; isolation: isolate; }
.stage-visual::before { content: ""; position: absolute; left: 7%; right: -12%; top: 13%; bottom: 4%; border: 1px solid var(--line); transform: rotate(5deg); z-index: -1; }
.stage-visual::after { content: ""; position: absolute; width: 170px; height: 170px; right: 3%; bottom: 4%; border: 1px solid color-mix(in oklch, var(--accent) 38%, transparent); border-radius: 50%; z-index: -1; }
.phone { position: absolute; width: min(270px, 44vw); overflow: hidden; border: 7px solid var(--ink); border-radius: 32px; background: var(--ink); box-shadow: 0 28px 60px color-mix(in oklch, var(--ink) 23%, transparent); }
.phone img { display: block; width: 100%; height: auto; }
.phone-back { top: 9%; right: 7%; transform: rotate(6deg); animation: drift-back 9s ease-in-out infinite; }
.phone-front { top: 20%; left: 7%; transform: rotate(-5deg); animation: drift-front 8s ease-in-out infinite; }
.stage-note { position: absolute; top: 2%; left: 2%; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.quiet-line { display: flex; align-items: center; gap: 24px; padding: 24px 0 80px; color: var(--ink-soft); font-family: var(--display); font-size: 28px; font-weight: 500; }
.quiet-line p { margin: 0; }
.quiet-line-rule { width: min(190px, 20vw); height: 1px; background: var(--line); }
.ticket-showcase { display: grid; grid-template-columns: minmax(0, .86fr) minmax(360px, .72fr); gap: clamp(56px, 10vw, 150px); align-items: center; padding: clamp(88px, 11vw, 152px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticket-showcase-copy { max-width: 610px; }
.ticket-showcase h2 { max-width: 11ch; }
.ticket-showcase-lede { max-width: 37ch; margin: 28px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.ticket-preview { width: min(100%, 470px); margin: 0; justify-self: end; }
.ticket-preview img { display: block; width: 100%; height: auto; border-radius: 8px; transform: rotate(1deg); transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.ticket-preview:hover img { transform: rotate(0deg) translateY(-4px); }
.why-section { padding: clamp(86px, 11vw, 160px) 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 32px; align-items: end; margin-bottom: clamp(60px, 8vw, 112px); }
.section-heading .eyebrow { align-self: start; }
h2 { margin-bottom: 0; font-size: 64px; line-height: 1.02; }
.section-intro { max-width: 31ch; margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(26px, 4vw, 60px); align-items: start; }
.feature { display: grid; gap: 24px; }
.feature-ticket { grid-column: 1 / span 5; }
.feature-calendar { grid-column: 7 / span 5; margin-top: 130px; }
.feature-discover { grid-column: 2 / span 8; margin-top: 44px; grid-template-columns: minmax(220px, .8fr) minmax(240px, 1fr); align-items: end; }
.feature-image { overflow: hidden; background: var(--paper-deep); border: 1px solid var(--line); }
.feature-image img { display: block; width: 100%; height: auto; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.feature:hover .feature-image img { transform: scale(1.025); }
.feature-copy { max-width: 34ch; }
.feature-index { display: block; margin-bottom: 14px; color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
h3 { margin-bottom: 12px; font-size: 38px; line-height: 1.04; }
.feature-copy p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.statement { padding: clamp(80px, 12vw, 168px) 0; text-align: center; }
.statement-mark { margin-bottom: 20px; color: var(--accent); font-size: 23px; }
.statement p { margin-bottom: 18px; font-family: var(--display); font-size: 64px; line-height: 1; letter-spacing: 0; }
.statement-detail { color: var(--ink-soft); font-size: 13px; }
.privacy-band { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.privacy-band h2 { margin-bottom: 12px; font-size: 56px; }
.privacy-band p:not(.eyebrow) { max-width: 45ch; margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }
.footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 24px; align-items: center; padding: 30px 0 40px; color: var(--ink-soft); font-size: 12px; }
.footer-brand { color: var(--ink); }
.footer-brand .brand-mark { width: 21px; height: 21px; }
.footer-brand .brand-mark::before, .footer-brand .brand-mark::after { width: 10px; }
.footer p { margin: 0; }
.footer-links { display: flex; align-items: center; gap: 22px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--blue); }
.legal-main { padding: clamp(80px, 11vw, 145px) 0 clamp(90px, 12vw, 160px); }
.legal-intro { padding-bottom: clamp(65px, 9vw, 110px); border-bottom: 1px solid var(--line); }
.legal-intro h1 { max-width: 12ch; margin-bottom: 26px; }
.legal-intro > p:last-child { margin: 0; color: var(--ink-soft); font-size: 12px; }
.legal-layout { display: grid; grid-template-columns: minmax(170px, .45fr) minmax(0, 1.2fr); gap: clamp(36px, 8vw, 140px); padding-top: clamp(55px, 8vw, 100px); }
.legal-aside { color: var(--ink-soft); font-size: 12px; }
.legal-aside span { display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .12em; }
.legal-aside a { color: var(--blue-deep); font-weight: 700; text-underline-offset: 4px; }
.legal-copy { max-width: 68ch; }
.legal-copy p { color: var(--ink-soft); font-size: 15px; line-height: 1.8; }
.legal-copy h2 { margin: 52px 0 12px; color: var(--ink); font-family: var(--body); font-size: 15px; font-weight: 700; letter-spacing: 0; line-height: 1.4; }
.legal-copy h2:first-of-type { margin-top: 0; }
.legal-copy a { color: var(--blue-deep); font-weight: 700; text-underline-offset: 4px; }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes drift-front { 0%, 100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }
@keyframes drift-back { 0%, 100% { transform: rotate(6deg) translateY(0); } 50% { transform: rotate(8deg) translateY(14px); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
@media (max-width: 900px) {
  h1 { font-size: 76px; }
  h2 { font-size: 54px; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 56px; }
  .hero-copy { max-width: 620px; }
  .hero-stage { min-height: 680px; width: min(650px, 100%); margin: 0 auto; }
  .ticket-showcase { grid-template-columns: minmax(0, .8fr) minmax(320px, .72fr); gap: 48px; }
  .section-heading { grid-template-columns: 1fr 1.15fr; }
  .section-heading .section-intro { grid-column: 2; }
  .feature-ticket { grid-column: 1 / span 6; }
  .feature-calendar { grid-column: 7 / span 6; margin-top: 90px; }
  .feature-discover { grid-column: 1 / span 10; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .site-shell { padding: 0 20px; }
  .topbar { min-height: 70px; gap: 14px; }
  .nav-links { gap: 14px; }
  .nav-links a:nth-child(1) { display: none; }
  .language-toggle { padding: 7px 10px; }
  .hero { padding-top: 68px; }
  h1 { font-size: 54px; }
  h2 { font-size: 42px; }
  h3 { font-size: 32px; }
  .hero-lede { font-size: 16px; }
  .hero-meta { margin-top: 50px; }
  .hero-stage { min-height: 560px; }
  .stage-visual { min-height: 560px; }
  .phone { width: min(214px, 57vw); border-width: 5px; border-radius: 23px; }
  .phone-front { left: 5%; top: 19%; }
  .phone-back { right: 3%; top: 7%; }
  .quiet-line { padding: 12px 0 64px; }
  .statement p { font-size: 40px; }
  .privacy-band h2 { font-size: 42px; }
  .quiet-line-rule { width: 60px; }
  .ticket-showcase { grid-template-columns: 1fr; gap: 48px; padding: 78px 0; }
  .ticket-preview { width: min(100%, 420px); justify-self: center; }
  .section-heading { display: block; }
  .section-heading .section-intro { margin-top: 25px; }
  .feature-grid { display: flex; flex-direction: column; gap: 70px; }
  .feature-calendar, .feature-discover { margin-top: 0; }
  .feature-discover { display: grid; grid-template-columns: 1fr; }
  .feature-discover .feature-copy { order: -1; }
  .privacy-band { display: block; }
  .privacy-band .button { margin-top: 28px; }
  .footer { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
  .legal-layout { display: block; }
  .legal-aside { margin-bottom: 44px; }
  .legal-copy h2 { margin-top: 40px; }
}
