@layer reset, base, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, p { margin: 0; }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
}

@layer base {
  :root {
    --black: #0a0909;
    --ink: #12100f;
    --paper: #f2e9dc;
    --paper-2: #d9cec0;
    --red: #d9402f;
    --red-deep: #a92118;
    --line: rgba(242, 233, 220, 0.24);
    --sans: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", Arial, sans-serif;
    --body: Inter, "Segoe UI", Arial, sans-serif;
    --page: min(1180px, calc(100vw - 48px));
  }

  body {
    background: var(--black);
    color: var(--paper);
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
  }

  ::selection { background: var(--red); color: #fff; }
  :focus-visible { outline: 3px solid #f4b33a; outline-offset: 4px; }

  .skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 10px 14px;
    background: var(--paper);
    color: var(--ink);
    font-weight: 800;
  }
  .skip-link:focus { transform: none; }
}

@layer components {
  .site-header {
    position: fixed;
    z-index: 20;
    inset: 0 0 auto;
    height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 0 max(24px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease, height .25s ease;
  }
  .site-header.is-scrolled {
    height: 66px;
    background: rgba(10, 9, 9, .92);
    border-color: var(--line);
    backdrop-filter: blur(16px);
  }

  .brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; color: inherit; text-decoration: none; }
  .brand__mark {
    display: grid;
    place-items: center;
    width: 38px;
    aspect-ratio: 1;
    background: var(--red);
    color: #fff;
    font: 900 1rem/1 var(--sans);
    letter-spacing: -.04em;
    transform: rotate(-4deg);
  }
  .brand__name { font: 800 .86rem/1 var(--body); letter-spacing: .08em; text-transform: uppercase; }

  .nav { display: flex; align-items: center; gap: 30px; }
  .nav a, .header-cta {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
  }
  .nav a { position: relative; padding: 12px 0; }
  .nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 5px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
  }
  .nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .header-cta { justify-self: end; border: 1px solid rgba(255,255,255,.55); padding: 10px 16px; transition: .2s ease; }
  .header-cta:hover { background: var(--paper); color: var(--black); border-color: var(--paper); }

  .hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    isolation: isolate;
    overflow: hidden;
  }
  .hero__image {
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image: url("assets/dennis-stage.webp");
    background-size: cover;
    background-position: center;
    animation: hero-in 1.7s cubic-bezier(.2,.7,.2,1) both;
  }
  .hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(10,9,9,.94) 0%, rgba(10,9,9,.77) 40%, rgba(10,9,9,.08) 78%),
      linear-gradient(0deg, rgba(10,9,9,.9) 0%, transparent 42%);
  }
  .hero__grain {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .16;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  }
  .hero__content { width: var(--page); margin: 0 auto; padding: 142px 0 98px; }
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: .79rem;
    font-weight: 800;
    letter-spacing: .18em;
  }
  .eyebrow::before { content: ""; width: 48px; height: 2px; background: var(--red); }
  .eyebrow span { color: var(--red); }
  .hero__title {
    max-width: 940px;
    margin: 26px 0 38px;
    font: 950 clamp(4.6rem, 11vw, 10.6rem)/.77 var(--sans);
    letter-spacing: -.072em;
    text-transform: uppercase;
    text-wrap: balance;
  }
  .hero__title span { display: block; }
  .hero__title span:last-child { color: transparent; -webkit-text-stroke: 2px var(--paper); }
  .hero__bottom { display: flex; align-items: end; justify-content: space-between; gap: 40px; max-width: 910px; }
  .hero__show { display: grid; gap: 2px; padding-left: 18px; border-left: 5px solid var(--red); }
  .hero__show-label { text-transform: uppercase; font-size: .7rem; font-weight: 900; letter-spacing: .18em; color: var(--paper-2); }
  .hero__show strong { font: 900 clamp(1.45rem, 2.7vw, 2.3rem)/1 var(--sans); text-transform: uppercase; }
  .hero__actions { display: flex; align-items: center; gap: 28px; }

  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: .77rem;
    font-weight: 900;
    letter-spacing: .12em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .button:hover { transform: translateY(-3px); }
  .button--light { background: var(--paper); color: var(--ink); box-shadow: 7px 7px 0 var(--red); }
  .button--light:hover { box-shadow: 3px 3px 0 var(--red); }
  .button--dark { background: var(--black); color: var(--paper); box-shadow: 7px 7px 0 rgba(10,9,9,.23); margin-top: 18px; }
  .button--dark:hover { box-shadow: 3px 3px 0 rgba(10,9,9,.23); }
  .text-link { text-underline-offset: 5px; font-size: .86rem; font-weight: 800; }
  .text-link span { color: var(--red); }
  .topic-line {
    position: absolute;
    inset: auto 0 0;
    padding: 10px 24px;
    border-top: 1px solid rgba(255,255,255,.16);
    background: rgba(10,9,9,.65);
    color: rgba(242,233,220,.63);
    text-align: center;
    text-transform: uppercase;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .16em;
    white-space: nowrap;
  }

  .section { width: var(--page); margin: 0 auto; padding: 132px 0; }
  .section__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 64px;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .18em;
    color: #756d64;
  }
  .section__label::after { content: ""; flex: 1; height: 1px; background: #cec3b6; }
  .section__label span { color: var(--red); }
  .section__label--light { color: rgba(242,233,220,.65); margin: 0; }
  .section__label--light::after { background: rgba(242,233,220,.25); }
  .section--intro { width: 100%; padding-inline: max(24px, calc((100vw - 1180px) / 2)); background: var(--paper); color: var(--ink); }
  .intro-grid { display: grid; grid-template-columns: 1.14fr .86fr; gap: clamp(54px, 9vw, 130px); align-items: start; }
  .display-title { font: 950 clamp(3.5rem, 7vw, 7rem)/.9 var(--sans); letter-spacing: -.055em; text-transform: uppercase; }
  .intro-copy { padding-top: 10px; }
  .lead { font-size: clamp(1.28rem, 2.2vw, 1.8rem); line-height: 1.35; font-weight: 700; letter-spacing: -.025em; }
  .intro-copy p + p, .program__content p + p { margin-top: 26px; }
  .intro-copy > p:not(.lead), .program__content > p:not(.lead) { color: #514b46; }
  .facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 98px; border-top: 1px solid #cfc2b4; border-bottom: 1px solid #cfc2b4; }
  .fact { display: flex; align-items: center; gap: 20px; min-height: 132px; padding: 24px 34px; }
  .fact + .fact { border-left: 1px solid #cfc2b4; }
  .fact strong { font: 950 clamp(3rem, 5vw, 5rem)/1 var(--sans); letter-spacing: -.06em; color: var(--red); }
  .fact span { max-width: 100px; font-size: .79rem; font-weight: 800; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; }

  .program { position: relative; overflow: hidden; background: var(--red); color: var(--black); }
  .program__inner { width: var(--page); margin: 0 auto; padding: 132px 0 148px; }
  .eyebrow--dark::before { background: var(--black); }
  .program__title { position: relative; z-index: 1; margin: 44px 0 52px; font: 950 clamp(5rem, 12vw, 11.5rem)/.72 var(--sans); letter-spacing: -.075em; text-transform: uppercase; }
  .program__content { width: min(610px, 100%); margin-left: auto; padding: 38px 0 0 54px; border-left: 2px solid var(--black); }
  .program__content > p:not(.lead) { color: #30100c; }
  .program__number { position: absolute; right: -2vw; top: -90px; color: rgba(10,9,9,.09); font: 950 40rem/.8 var(--sans); letter-spacing: -.1em; pointer-events: none; }
  .program__aside { position: absolute; left: 34px; bottom: 50px; writing-mode: vertical-rl; transform: rotate(180deg); text-transform: uppercase; font-size: .64rem; font-weight: 900; letter-spacing: .17em; }

  .live { padding-bottom: 150px; }
  .live__heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 70px; }
  .live__heading p { max-width: 290px; color: #a99f94; }
  .dates { border-top: 1px solid var(--line); }
  .date-row { display: grid; grid-template-columns: 210px 1fr 170px 90px; align-items: center; gap: 32px; min-height: 130px; border-bottom: 1px solid var(--line); transition: background .2s ease, padding .2s ease; }
  .date-row:hover { background: rgba(242,233,220,.045); padding-inline: 18px; }
  .date-row time { display: flex; align-items: baseline; gap: 10px; text-transform: uppercase; font-size: .69rem; font-weight: 900; letter-spacing: .12em; color: #a99f94; }
  .date-row time span { font: 950 3.8rem/1 var(--sans); letter-spacing: -.06em; color: var(--paper); }
  .date-row__place { display: grid; gap: 3px; }
  .date-row__place strong { font: 900 clamp(1.5rem, 2.8vw, 2.35rem)/1 var(--sans); text-transform: uppercase; }
  .date-row__place span { color: #9e958b; font-size: .83rem; }
  .date-row__format { color: var(--paper-2); text-transform: uppercase; font-size: .76rem; font-weight: 800; letter-spacing: .1em; }
  .date-row > a { justify-self: end; font-size: .79rem; font-weight: 900; text-transform: uppercase; text-underline-offset: 5px; }
  .date-row > a span { color: var(--red); }
  .live__note { margin-top: 34px; color: #968d83; text-align: right; font-size: .84rem; }
  .live__note a { color: var(--paper); font-weight: 800; text-underline-offset: 4px; }

  .booking { padding: 94px max(24px, calc((100vw - 1180px) / 2)) 110px; background: var(--paper); color: var(--black); }
  .booking__top { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
  .section__label--light { color: #746b62; }
  .section__label--light::after { background: #c8bbae; }
  .availability { display: flex; align-items: center; gap: 10px; text-transform: uppercase; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
  .availability::before { content: ""; width: 9px; aspect-ratio: 1; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(217,64,47,.14); }
  .booking__body { display: grid; grid-template-columns: 1.18fr .82fr; align-items: end; gap: 70px; margin-top: 78px; }
  .booking h2 { font: 950 clamp(4rem, 8.5vw, 8.5rem)/.8 var(--sans); letter-spacing: -.065em; text-transform: uppercase; }
  .booking__copy { padding-bottom: 10px; }
  .booking__copy p { max-width: 440px; margin-bottom: 32px; color: #514b46; font-size: 1.12rem; }
  .mail-link { display: inline-flex; gap: 12px; color: var(--black); font: 900 clamp(1.05rem, 2.2vw, 1.55rem)/1.2 var(--sans); text-underline-offset: 8px; }
  .mail-link span { color: var(--red); }

  .footer { width: var(--page); min-height: 170px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 34px; color: #9d958d; font-size: .78rem; }
  .brand--footer { color: var(--paper); }
  .footer__links { display: flex; gap: 24px; }
  .footer__links a { text-underline-offset: 4px; }
  .footer__legal { text-align: right; }

  .legal-page { background: var(--paper); color: var(--ink); }
  .legal-page .site-header { background: var(--black); color: var(--paper); border-color: rgba(242,233,220,.18); }
  .legal-main { min-height: calc(100svh - 170px); padding: 160px 0 110px; }
  .legal-shell { width: min(820px, calc(100vw - 48px)); margin: 0 auto; }
  .legal-back { display: inline-flex; gap: 9px; margin-bottom: 52px; color: #615950; font-size: .82rem; font-weight: 800; text-underline-offset: 5px; }
  .legal-back span { color: var(--red); }
  .legal-kicker { margin-bottom: 20px; color: var(--red); text-transform: uppercase; font-size: .75rem; font-weight: 900; letter-spacing: .16em; }
  .legal-title { margin-bottom: 72px; font: 950 clamp(4rem, 10vw, 7.5rem)/.82 var(--sans); letter-spacing: -.06em; text-transform: uppercase; }
  .legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 70px; border-top: 1px solid #cfc2b4; }
  .legal-block { padding: 34px 0 38px; border-bottom: 1px solid #cfc2b4; }
  .legal-block h2 { margin: 0 0 18px; font: 900 1.15rem/1.2 var(--sans); text-transform: uppercase; letter-spacing: .02em; }
  .legal-block p { color: #514b46; }
  .legal-block p + p { margin-top: 16px; }
  .legal-block a { color: var(--ink); font-weight: 700; text-underline-offset: 4px; overflow-wrap: anywhere; }
  .legal-note { margin-top: 38px; color: #6f665d; font-size: .88rem; }
  .privacy-intro { max-width: 700px; margin: -38px 0 58px; color: #615950; font-size: 1.08rem; }
  .privacy-sections { border-top: 1px solid #cfc2b4; }
  .privacy-sections .legal-block { max-width: 760px; }
  .legal-list { margin: 16px 0 0; padding-left: 20px; color: #514b46; }
  .legal-list li + li { margin-top: 8px; }
  .legal-list + p { margin-top: 18px; }
  .legal-block address { color: #514b46; font-style: normal; }
  .legal-block address a { display: inline-block; }
  .privacy-page .legal-title { font-size: clamp(3.8rem, 9vw, 6.7rem); }
  .legal-page .footer {
    width: 100%;
    padding-inline: max(24px, calc((100vw - 1180px) / 2));
    background: var(--black);
    color: #9d958d;
  }

  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
  .reveal.is-visible { opacity: 1; transform: none; }
}

@layer utilities {
  @keyframes hero-in { from { transform: scale(1.05); opacity: .45; } to { transform: scale(1); opacity: 1; } }

  @media (max-width: 900px) {
    :root { --page: min(100% - 36px, 760px); }
    .site-header { grid-template-columns: 1fr auto; padding-inline: 18px; }
    .nav { display: none; }
    .hero::before { background: linear-gradient(90deg, rgba(10,9,9,.94) 0%, rgba(10,9,9,.63) 68%, rgba(10,9,9,.25)), linear-gradient(0deg, rgba(10,9,9,.95) 0%, transparent 56%); }
    .hero__image { background-position: 62% center; }
    .hero__content { padding: 136px 0 88px; }
    .hero__bottom, .live__heading { align-items: flex-start; flex-direction: column; }
    .intro-grid, .booking__body { grid-template-columns: 1fr; }
    .intro-grid { gap: 48px; }
    .facts { margin-top: 70px; }
    .fact { align-items: flex-start; flex-direction: column; gap: 8px; padding: 24px 20px; }
    .program__content { margin: 0; }
    .program__aside { display: none; }
    .date-row { grid-template-columns: 150px 1fr auto; gap: 20px; }
    .date-row__format { display: none; }
    .footer { grid-template-columns: 1fr auto; padding: 42px 0; }
    .footer > p:not(.footer__legal) { display: none; }
    .footer__legal { grid-column: 2; }
  }

  @media (max-width: 620px) {
    :root { --page: calc(100vw - 40px); }
    .brand__name { display: none; }
    .site-header, .site-header.is-scrolled { height: 62px; }
    .header-cta { padding: 8px 12px; font-size: .7rem; }
    .hero { min-height: 740px; background: var(--black); }
    .hero__image { inset: 0 0 auto; height: 55%; background-position: 54% 34%; }
    .hero::before { background: linear-gradient(180deg, rgba(10,9,9,.08) 0%, rgba(10,9,9,.18) 28%, var(--black) 56%, var(--black) 100%); }
    .hero__grain { opacity: .1; }
    .hero__content { padding: 330px 0 48px; }
    .eyebrow { gap: 7px; font-size: .7rem; letter-spacing: .12em; }
    .eyebrow::before { width: 30px; }
    .hero__title { font-size: clamp(3.2rem, 17vw, 5.15rem); line-height: .8; margin: 17px 0 27px; letter-spacing: -.065em; }
    .hero__title span:last-child { -webkit-text-stroke-width: 1px; }
    .hero__bottom { gap: 23px; }
    .hero__show { padding-left: 13px; border-left-width: 4px; }
    .hero__show strong { font-size: 1.28rem; }
    .hero__actions { width: 100%; flex-flow: row wrap; align-items: center; gap: 16px 22px; }
    .button { min-height: 48px; padding-inline: 18px; }
    .text-link { font-size: .79rem; }
    .topic-line { display: none; }
    .section, .section--intro { padding-block: 72px; }
    .section--intro, .booking { padding-inline: 20px; }
    .section__label { margin-bottom: 38px; }
    .display-title { font-size: clamp(2.9rem, 13vw, 4.35rem); line-height: .92; }
    .intro-grid { gap: 34px; }
    .lead { font-size: 1.16rem; }
    .intro-copy p + p, .program__content p + p { margin-top: 21px; }
    .facts { margin-top: 54px; }
    .facts { grid-template-columns: 1fr; }
    .fact { min-height: 90px; flex-direction: row; align-items: center; padding: 17px 16px; }
    .fact strong { font-size: 2.85rem; }
    .fact + .fact { border-left: 0; border-top: 1px solid #cfc2b4; }
    .program__inner { padding: 76px 0 82px; }
    .program__title { margin: 32px 0 40px; font-size: clamp(3.35rem, 16vw, 5.45rem); line-height: .79; }
    .program__content { padding: 26px 0 0 18px; }
    .program__number { font-size: 21rem; }
    .live { padding-bottom: 82px; }
    .live__heading { gap: 20px; margin-bottom: 48px; }
    .date-row { grid-template-columns: 86px 1fr; gap: 14px; min-height: 104px; padding: 15px 0; }
    .date-row:hover { padding-inline: 10px; }
    .date-row time { display: grid; gap: 0; }
    .date-row time span { font-size: 2.65rem; }
    .date-row__place strong { font-size: 1.35rem; }
    .date-row > a { grid-column: 2; justify-self: start; margin-top: -12px; }
    .live__note { text-align: left; }
    .booking { padding-block: 68px 74px; }
    .booking__top { grid-template-columns: 1fr; }
    .booking__body { gap: 34px; margin-top: 50px; }
    .booking h2 { font-size: clamp(3rem, 13.5vw, 4.85rem); line-height: .84; }
    .booking__copy p { margin-bottom: 25px; font-size: 1rem; }
    .mail-link { font-size: 1rem; overflow-wrap: anywhere; }
    .footer { grid-template-columns: 1fr; gap: 18px; min-height: auto; padding: 36px 0; }
    .footer__links { flex-wrap: wrap; gap: 12px 20px; }
    .brand--footer .brand__name { display: inline; }
    .footer__legal { grid-column: auto; text-align: left; }
    .legal-main { padding: 112px 0 78px; }
    .legal-shell { width: calc(100vw - 40px); }
    .legal-back { margin-bottom: 38px; }
    .legal-title { margin-bottom: 48px; font-size: clamp(3.05rem, 15.5vw, 4.8rem); }
    .privacy-page .legal-title { font-size: clamp(2.7rem, 13vw, 4.2rem); }
    .privacy-intro { margin: -22px 0 42px; font-size: 1rem; }
    .legal-grid { grid-template-columns: 1fr; }
    .legal-block { padding: 27px 0 30px; }
    .legal-page .footer { padding-inline: 20px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
  }
}
