@layer reset, base, components, sections, responsive;

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

@layer base {
  :root {
    --ink: oklch(0.15 0.035 258);
    --ink-deep: oklch(0.115 0.026 258);
    --ink-raised: oklch(0.21 0.045 258);
    --paper: oklch(0.96 0.012 85);
    --muted: oklch(0.73 0.025 255);
    --gold: oklch(0.75 0.13 77);
    --gold-soft: oklch(0.86 0.065 82);
    --blue: oklch(0.66 0.18 245);
    --line: oklch(0.38 0.045 258 / 0.55);
    --ease: cubic-bezier(.16, 1, .3, 1);
    --display: "Anybody", sans-serif;
    --body: "Red Hat Display", sans-serif;
    --gutter: clamp(1.25rem, 4vw, 4.5rem);
  }

  body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--paper);
    background: var(--ink);
    font-family: var(--body);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    opacity: .16;
    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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
  }

  ::selection { background: var(--gold); color: var(--ink); }

  :focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 4px;
    border-radius: 4px;
  }

  .skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 100;
    padding: .7rem 1rem;
    color: var(--ink);
    background: var(--gold);
    transform: translateY(-160%);
    transition: transform .2s ease;
  }
  .skip-link:focus { transform: translateY(0); }

  .section { padding: clamp(6rem, 11vw, 10rem) var(--gutter); }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--gold-soft);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
  .eyebrow::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: currentColor;
  }

  h1, h2, h3 {
    font-family: var(--display);
    text-wrap: balance;
  }

  h2 {
    margin-top: .9rem;
    font-size: clamp(3.2rem, 7vw, 7.4rem);
    font-stretch: 94%;
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: .88;
  }

  svg {
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
  .social-icon { flex: 0 0 auto; width: 1.15rem; height: 1.15rem; }

  .reveal { opacity: 1; transform: none; }
  .reveal.is-visible { opacity: 1; transform: none; }
}

@layer components {
  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 5.9rem;
    padding: .65rem var(--gutter);
    border-bottom: 1px solid transparent;
    transition: min-height .4s var(--ease), background-color .4s var(--ease), border-color .4s ease;
  }
  .site-header.is-scrolled {
    min-height: 4.8rem;
    background: oklch(0.14 0.033 258 / .94);
    border-color: var(--line);
    backdrop-filter: blur(14px);
  }
  .brand { width: 5.6rem; }
  .brand img { width: 100%; max-height: 4.4rem; object-fit: contain; }
  .main-nav { display: flex; gap: clamp(1.4rem, 3vw, 3.2rem); }
  .main-nav a {
    position: relative;
    padding: .5rem .1rem;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 700;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: .25rem;
    height: 1px;
    background: var(--gold);
    transition: right .35s var(--ease);
  }
  .main-nav a:hover { color: var(--paper); }
  .main-nav a:hover::after { right: 0; }
  .header-cta { justify-self: end; }

  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: 3.6rem;
    padding: .9rem 1.25rem;
    border: 1px solid transparent;
    border-radius: .85rem;
    font-size: .88rem;
    font-weight: 800;
    transition: transform .35s var(--ease), background-color .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease;
  }
  .button:hover { transform: translateY(-3px); }
  .button-small { min-height: 2.9rem; padding: .65rem 1rem; font-size: .78rem; }
  .button-gold {
    color: var(--ink-deep);
    background: var(--gold);
    box-shadow: 0 10px 28px oklch(0.75 0.13 77 / .16);
  }
  .button-gold:hover { background: var(--gold-soft); box-shadow: 0 15px 40px oklch(0.75 0.13 77 / .25); }
  .button-ghost { color: var(--paper); border-color: var(--line); background: oklch(0.2 0.04 258 / .3); }
  .button-ghost:hover { border-color: var(--muted); background: var(--ink-raised); }
  .button-ink { color: var(--paper); background: var(--ink); }
  .button-ink:hover { background: var(--ink-raised); }
  .button svg, .text-link svg, .channel-link svg { transition: transform .35s var(--ease); }
  .button:hover svg, .text-link:hover svg, .channel-link a:hover svg { transform: translate(2px, -2px); }

  .text-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: 2rem;
    color: var(--gold-soft);
    font-weight: 700;
    border-bottom: 1px solid var(--line);
    padding-bottom: .3rem;
  }
}

@layer sections {
  .hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(20rem, .78fr) 1.22fr;
    grid-template-rows: 1fr auto;
    align-items: center;
    min-height: 100svh;
    padding: clamp(7.8rem, 12vh, 10rem) var(--gutter) 2rem;
    overflow: hidden;
    background:
      radial-gradient(circle at 70% 40%, oklch(0.39 0.13 252 / .36), transparent 31%),
      linear-gradient(125deg, var(--ink-deep) 0%, var(--ink) 48%, oklch(0.205 0.067 257) 100%);
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 20%;
    z-index: 1;
    background: linear-gradient(transparent, var(--ink));
    pointer-events: none;
  }
  .hero-copy { position: relative; z-index: 4; align-self: center; padding-bottom: 3rem; }
  .hero-title {
    margin-top: .85rem;
    max-width: 8ch;
    font-size: clamp(4.7rem, 9vw, 10rem);
    font-stretch: 112%;
    font-weight: 900;
    letter-spacing: -.07em;
    line-height: .76;
    text-transform: uppercase;
  }
  .hero-title span { color: var(--gold); font-stretch: 80%; }
  .hero-description {
    max-width: 37rem;
    margin-top: 2rem;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
  }
  .hero-description strong { color: var(--paper); }
  .hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
  .hero-visual {
    position: absolute;
    right: -6vw;
    bottom: 2.2rem;
    z-index: 2;
    width: min(71vw, 1100px);
    pointer-events: none;
  }
  .hero-visual::after {
    content: "";
    position: absolute;
    left: 7%;
    right: 0;
    bottom: 0;
    height: 12%;
    background: linear-gradient(transparent, var(--ink));
  }
  .hero-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 2rem 4rem oklch(0.06 0.025 258 / .68));
  }
  .hero-monogram {
    position: absolute;
    top: -40%;
    right: 9%;
    z-index: 1;
    color: transparent;
    font-family: var(--display);
    font-size: clamp(28rem, 57vw, 58rem);
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px oklch(0.74 0.12 77 / .25);
    transform: rotate(-7deg);
  }
  .stage-light { position: absolute; z-index: 1; width: 18vw; height: 120vh; opacity: .12; filter: blur(20px); transform-origin: top; }
  .stage-light-one { top: -30%; right: 18%; background: linear-gradient(var(--blue), transparent 76%); transform: rotate(17deg); }
  .stage-light-two { top: -34%; right: 1%; background: linear-gradient(var(--gold-soft), transparent 70%); transform: rotate(-14deg); }
  .hero-social {
    position: relative;
    z-index: 5;
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--muted);
    font-size: .76rem;
  }
  .hero-social > span { text-transform: uppercase; letter-spacing: .12em; }
  .hero-social-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
  .hero-social a { color: var(--paper); font-weight: 700; }
  .hero-social-links a { display: inline-flex; align-items: center; gap: .42rem; }
  .hero-social a:hover { color: var(--gold); }
  .scroll-cue {
    position: absolute;
    right: var(--gutter);
    bottom: 2rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--muted);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .11em;
  }
  .scroll-cue span { display: block; width: 2.8rem; height: 1px; background: var(--muted); }
  .hero-reveal { opacity: 0; transform: translateY(1.4rem); animation: hero-in .9s var(--ease) forwards; }
  .hero-copy .hero-reveal:nth-child(2) { animation-delay: .08s; }
  .hero-copy .hero-reveal:nth-child(3) { animation-delay: .17s; }
  .hero-copy .hero-reveal:nth-child(4) { animation-delay: .25s; }
  .hero-visual.hero-reveal { animation-delay: .14s; transform: translate(3rem, 1.5rem); }
  .hero-social.hero-reveal { animation-delay: .34s; }
  @keyframes hero-in { to { opacity: 1; transform: none; } }

  .video-section { position: relative; background: var(--ink); }
  .section-heading {
    display: grid;
    grid-template-columns: 1fr .7fr;
    align-items: end;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto 4rem;
  }
  .section-heading > p { max-width: 34rem; color: var(--muted); font-size: 1.08rem; }
  .video-stage { max-width: 1280px; margin: 0 auto; }
  .video-frame-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid oklch(0.66 0.18 245 / .34);
    border-radius: 1.3rem;
    background: var(--ink-deep);
    box-shadow: 0 3rem 8rem oklch(0.66 0.18 245 / .14);
  }
  .video-frame-wrap::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px oklch(0.96 0.012 85 / .06);
  }
  .video-frame-wrap iframe { width: 100%; height: 100%; border: 0; }
  .video-frame-wrap.is-changing iframe { opacity: .15; }
  .now-playing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.6rem 0 1.8rem;
    border-bottom: 1px solid var(--line);
  }
  .now-playing > div:first-child { display: grid; grid-template-columns: auto auto; column-gap: 1.2rem; align-items: baseline; }
  .now-playing span { grid-row: 1 / 3; color: var(--gold); font-size: .75rem; font-weight: 800; letter-spacing: .08em; }
  .now-playing h3 { font-size: clamp(1.4rem, 2.7vw, 2.4rem); font-weight: 720; line-height: 1.1; }
  .now-playing p { color: var(--muted); font-size: .86rem; }
  .video-arrows { display: flex; gap: .55rem; }
  .video-arrows button {
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background-color .25s ease, border-color .25s ease, transform .25s var(--ease);
  }
  .video-arrows button:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); transform: scale(1.04); }
  .video-thumbs {
    display: flex;
    gap: .9rem;
    max-width: 1280px;
    margin: 1.5rem auto 0;
    padding: .2rem .15rem 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--gold) transparent;
  }
  .video-thumb {
    flex: 0 0 min(19rem, 73vw);
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: .8rem;
    align-items: center;
    padding: .65rem;
    color: var(--muted);
    text-align: left;
    border: 1px solid transparent;
    border-radius: .9rem;
    background: transparent;
    cursor: pointer;
    transition: color .3s ease, border-color .3s ease, background-color .3s ease;
  }
  .video-thumb:hover { color: var(--paper); background: var(--ink-raised); }
  .video-thumb.is-active { color: var(--paper); border-color: var(--gold); background: var(--ink-raised); }
  .video-thumb img { width: 7rem; aspect-ratio: 16 / 9; object-fit: cover; border-radius: .55rem; }
  .video-thumb strong { display: block; font-family: var(--display); font-size: 1rem; line-height: 1.1; }
  .video-thumb span { display: block; margin-top: .4rem; font-size: .69rem; }
  .channel-link {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 3.2rem auto 0;
    padding-top: 1.4rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
  }
  .channel-link a { display: flex; align-items: center; gap: .55rem; color: var(--gold-soft); font-weight: 800; }

  .media-hero {
    position: relative;
    min-height: 100svh;
    padding: clamp(7.5rem, 11vh, 9rem) 0 clamp(3rem, 6vw, 5rem);
    overflow: hidden;
    background:
      radial-gradient(circle at 77% 6%, oklch(0.55 0.16 246 / .22), transparent 25%),
      linear-gradient(145deg, var(--ink-deep), var(--ink) 58%, oklch(0.19 0.055 257));
  }
  .media-hero::before {
    content: "AGATHA";
    position: absolute;
    top: 7rem;
    left: 40%;
    color: transparent;
    font-family: var(--display);
    font-size: clamp(8rem, 21vw, 20rem);
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: .7;
    white-space: nowrap;
    -webkit-text-stroke: 1px oklch(0.75 0.13 77 / .1);
    pointer-events: none;
  }
  .media-hero-heading {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr .52fr;
    align-items: end;
    gap: 3rem;
    max-width: 1440px;
    margin: 0 auto clamp(2.4rem, 5vw, 4.5rem);
    padding: 0 var(--gutter);
  }
  .media-hero-heading > * { min-width: 0; }
  .media-hero-title {
    margin-top: .8rem;
    color: var(--paper);
    font-size: clamp(5.6rem, 15vw, 13.5rem);
    font-stretch: 118%;
    font-weight: 900;
    letter-spacing: -.085em;
    line-height: .68;
  }
  .media-hero-intro {
    max-width: 27rem;
    padding-bottom: .35rem;
    color: var(--muted);
  }
  .media-hero-intro .genre-label {
    margin-bottom: .7rem;
    color: var(--gold);
    font-family: var(--display);
    font-size: clamp(1.35rem, 2.2vw, 2.1rem);
    font-weight: 780;
    line-height: 1;
  }
  .video-carousel { position: relative; z-index: 3; }
  .video-carousel-track {
    display: flex;
    align-items: center;
    gap: clamp(.8rem, 1.4vw, 1.4rem);
    width: 100%;
    padding: .4rem max(var(--gutter), calc((100vw - 1440px) / 2 + var(--gutter))) 1.1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .video-carousel-track::-webkit-scrollbar { display: none; }
  .video-card {
    position: relative;
    flex: 0 0 min(72vw, 66rem);
    scroll-snap-align: center;
    opacity: .48;
    transition: opacity .35s ease;
  }
  .video-card.is-active { opacity: 1; }
  .video-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: var(--ink-deep);
  }
  .video-card.is-active .video-card-media {
    border-color: oklch(0.75 0.13 77 / .72);
    box-shadow: 0 2rem 6rem oklch(0.06 0.025 258 / .72), 0 0 4rem oklch(0.66 0.18 245 / .13);
  }
  .video-card iframe { width: 100%; height: 100%; border: 0; }
  .youtube-attempt { position: relative; width: 100%; height: 100%; background: var(--ink-deep); }
  .youtube-attempt > img { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: opacity .25s ease; }
  .youtube-attempt > iframe,
  .youtube-attempt > #active-youtube-player { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; }
  .video-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    color: var(--gold-soft);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
  }
  .youtube-attempt.is-ready > img,
  .youtube-attempt.is-ready > .video-loading { opacity: 0; pointer-events: none; }
  .video-preview,
  .video-external {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    color: var(--paper);
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .video-external::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, oklch(0.08 0.025 258 / .84), transparent 72%), linear-gradient(transparent 55%, oklch(0.08 0.025 258 / .82));
  }
  .video-external > img { width: 100%; height: 100%; object-fit: cover; }
  .video-external-action {
    position: absolute;
    left: clamp(1.2rem, 3vw, 3rem);
    bottom: clamp(1.2rem, 3vw, 3rem);
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0 1rem;
  }
  .video-external-action .video-preview-play { position: static; grid-row: 1 / 3; transform: none; }
  .video-external-action strong { font-family: var(--display); font-size: clamp(1.2rem, 2.4vw, 2rem); line-height: 1; }
  .video-external-action small { margin-top: .25rem; color: var(--gold-soft); font-weight: 700; }
  .video-external:hover .video-preview-play { color: var(--ink); background: var(--gold); transform: scale(1.08); }
  .video-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, oklch(0.08 0.025 258 / .9));
  }
  .video-preview img { width: 100%; height: 100%; object-fit: cover; }
  .video-preview-play {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 3.4rem;
    height: 3.4rem;
    border: 1px solid oklch(0.96 0.012 85 / .68);
    border-radius: 50%;
    background: oklch(0.12 0.035 258 / .68);
    transform: translate(-50%, -50%);
    transition: color .25s ease, background-color .25s ease, transform .35s var(--ease);
  }
  .video-preview:hover .video-preview-play { color: var(--ink); background: var(--gold); transform: translate(-50%, -50%) scale(1.08); }
  .video-card-meta {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: .8rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: .8rem;
    align-items: end;
    pointer-events: none;
  }
  .video-card-meta strong { font-family: var(--display); font-size: 1.05rem; line-height: 1; }
  .video-card-meta span { color: var(--gold-soft); font-size: .68rem; font-weight: 800; }
  .video-card.is-active .video-card-meta { display: none; }
  .video-carousel-controls {
    display: grid;
    grid-template-columns: minmax(8rem, 1fr) auto auto;
    gap: 1.2rem;
    align-items: center;
    max-width: 1440px;
    margin: 1rem auto 0;
    padding: 0 var(--gutter);
  }
  .video-progress { height: 1px; overflow: hidden; background: var(--line); }
  .video-progress span { display: block; width: 14.28%; height: 100%; background: var(--gold); transition: width .55s var(--ease); }
  .video-carousel-controls > p { color: var(--muted); font-size: .72rem; letter-spacing: .08em; }
  .video-carousel-controls > p strong { color: var(--paper); font-size: .95rem; }
  .media-hero-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: end;
    gap: 3rem;
    max-width: 1440px;
    margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
    padding: 0 var(--gutter);
  }
  .media-hero .now-playing { display: flex; justify-content: flex-start; align-items: flex-start; gap: 1rem; padding: 0; border: 0; }
  .media-hero .now-playing > span { flex: 0 0 auto; grid-row: auto; margin-top: .2rem; color: var(--gold); font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
  .media-hero .now-playing h2 { margin: 0; font-size: clamp(1.35rem, 2.5vw, 2.4rem); letter-spacing: -.03em; line-height: 1; }
  .media-hero .now-playing p { margin-top: .3rem; color: var(--muted); font-size: .78rem; }
  .media-hero .hero-social-links { align-self: center; }
  .channel-pill {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .7rem 0;
    color: var(--gold-soft);
    font-size: .78rem;
    font-weight: 800;
    border-bottom: 1px solid var(--gold);
  }

  .about-section {
    position: relative;
    display: grid;
    grid-template-columns: .65fr .78fr 1.4fr;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 5rem);
    min-height: 92vh;
    padding-bottom: 9rem;
    overflow: hidden;
    background:
      radial-gradient(circle at 75% 50%, oklch(0.63 0.16 245 / .18), transparent 27%),
      var(--ink-deep);
  }
  .about-number {
    align-self: start;
    color: transparent;
    font-family: var(--display);
    font-size: clamp(10rem, 22vw, 24rem);
    font-weight: 900;
    letter-spacing: -.12em;
    line-height: .68;
    -webkit-text-stroke: 1px oklch(0.75 0.13 77 / .42);
  }
  .about-copy { position: relative; z-index: 2; }
  .about-copy h2 { font-size: clamp(3rem, 5vw, 5.5rem); }
  .about-copy > p:not(.eyebrow) { max-width: 45rem; color: var(--muted); }
  .about-copy .about-lead { margin: 2rem 0 1rem; color: var(--paper) !important; font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
  .about-image { position: relative; align-self: end; margin-right: calc(var(--gutter) * -1); }
  .about-image::before {
    content: "";
    position: absolute;
    inset: 18% 10% 0;
    border-radius: 50%;
    background: var(--blue);
    filter: blur(100px);
    opacity: .14;
  }
  .about-image img { position: relative; width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 2rem 2.5rem oklch(0.04 0.02 258 / .7)); }
  .about-ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    padding: 1rem 0;
    color: var(--ink-deep);
    background: var(--gold);
    font-family: var(--display);
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    font-weight: 850;
    letter-spacing: .02em;
    white-space: nowrap;
  }
  .about-ticker div { display: flex; width: max-content; align-items: center; gap: 2rem; animation: ticker 18s linear infinite; }
  .about-ticker i { font-style: normal; }
  @keyframes ticker { to { transform: translateX(-50%); } }

  .booking-section { background: var(--paper); color: var(--ink); }
  .booking-section .eyebrow { color: oklch(0.52 0.11 77); }
  .booking-intro {
    display: grid;
    grid-template-columns: 1fr .45fr;
    gap: 4rem;
    align-items: end;
    max-width: 1280px;
    margin: 0 auto clamp(4rem, 8vw, 7rem);
  }
  .booking-intro .eyebrow, .booking-intro h2 { grid-column: 1; }
  .booking-intro > p:last-child { grid-column: 2; grid-row: 1 / 3; align-self: end; color: oklch(0.42 0.03 258); }
  .booking-band {
    display: grid;
    grid-template-columns: .78fr 1fr .65fr 1.25fr auto;
    gap: clamp(1.2rem, 2.7vw, 3rem);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(1.8rem, 4vw, 3.5rem);
  }
  .booking-private { color: var(--paper); background: var(--ink); border-radius: 1.5rem 1.5rem 0 0; }
  .booking-club { color: var(--ink-deep); background: var(--gold); border-radius: 0 0 1.5rem 1.5rem; }
  .booking-name span { display: block; margin-bottom: .55rem; color: var(--gold-soft); font-size: .7rem; font-weight: 800; }
  .booking-club .booking-name span { color: oklch(0.37 0.06 77); }
  .booking-name p { font-family: var(--display); font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 780; line-height: 1; }
  .price-main { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 4.5rem); font-stretch: 88%; font-weight: 850; letter-spacing: -.05em; line-height: .88; }
  .price-local { margin-top: .4rem; font-weight: 800; }
  .booking-price > span { display: block; max-width: 18rem; margin-top: .45rem; color: var(--muted); font-size: .71rem; }
  .booking-club .booking-price > span { color: oklch(0.35 0.04 77); }
  .booking-duration { text-align: center; }
  .booking-duration p, .booking-duration span { display: block; color: var(--muted); font-size: .75rem; }
  .booking-duration strong { display: block; font-family: var(--display); font-size: 2.6rem; line-height: 1; }
  .booking-notes { color: var(--muted); font-size: .82rem; }
  .booking-club .booking-notes { color: oklch(0.34 0.04 77); }
  .important-note { display: flex; gap: .5rem; margin-top: .8rem; color: var(--gold-soft); }
  .important-note svg { flex: 0 0 auto; margin-top: .15rem; }
  .booking-band > .button { min-width: 12rem; }
  .club-options { display: flex; align-items: center; gap: .8rem; }
  .club-options div { display: flex; flex-direction: column; }
  .club-options strong { font-family: var(--display); font-size: 1.25rem; }
  .club-options span { font-size: .72rem; }
  .club-options em { font-style: normal; opacity: .55; }
  .booking-contact {
    display: grid;
    grid-template-columns: .9fr auto .9fr;
    gap: 3rem;
    align-items: center;
    max-width: 1080px;
    margin: 5rem auto 0;
    text-align: center;
  }
  .booking-contact p, .booking-contact span { color: oklch(0.44 0.03 258); }
  .booking-contact a { font-family: var(--display); font-size: clamp(2rem, 4vw, 4rem); font-weight: 850; letter-spacing: -.04em; }
  .booking-contact a:hover { color: oklch(0.5 0.12 77); }

  .social-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 4rem;
    padding: clamp(6rem, 10vw, 10rem) var(--gutter);
    background: var(--ink-raised);
  }
  .social-copy { position: sticky; top: 8rem; align-self: start; }
  .social-copy h2 { font-size: clamp(3rem, 6vw, 6.3rem); }
  .social-list { border-top: 1px solid var(--line); }
  .social-list a {
    display: grid;
    grid-template-columns: 2rem 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1.6rem .4rem;
    border-bottom: 1px solid var(--line);
    transition: color .3s ease, padding .4s var(--ease), background-color .3s ease;
  }
  .social-list a:hover { padding-left: 1.1rem; color: var(--gold-soft); background: oklch(0.26 0.052 258); }
  .social-list span { color: var(--muted); font-size: .7rem; }
  .social-list strong { display: flex; align-items: center; gap: .75rem; font-family: var(--display); font-size: clamp(1.5rem, 3vw, 3rem); font-weight: 720; }
  .social-list strong .social-icon { width: .78em; height: .78em; color: var(--gold); }
  .social-list small { color: var(--muted); }

  .site-footer {
    display: grid;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 2rem;
    min-height: 18rem;
    padding: 3.5rem var(--gutter) 2rem;
    color: var(--muted);
    background: var(--ink-deep);
    border-top: 1px solid var(--line);
  }
  .site-footer img { width: 8rem; align-self: start; }
  .site-footer > p { align-self: center; color: var(--gold-soft); font-family: var(--display); font-size: clamp(1.5rem, 3vw, 3rem); font-weight: 760; }
  .site-footer > div { display: flex; justify-content: flex-end; gap: 1.5rem; font-size: .72rem; }
  .site-footer a:hover { color: var(--paper); }

  .mobile-whatsapp { display: none; }
}

@layer responsive {
  @media (max-width: 1100px) {
    .booking-band { grid-template-columns: .75fr 1fr .8fr; }
    .booking-notes { grid-column: 1 / 3; }
    .booking-band > .button { grid-column: 3; grid-row: 2; }
    .about-section { grid-template-columns: .45fr 1fr; }
    .about-number { grid-column: 1; }
    .about-copy { grid-column: 2; }
    .about-image { grid-column: 1 / 3; width: min(850px, 88vw); margin: -2rem auto -1rem; }
  }

  @media (max-width: 860px) {
    .site-header { grid-template-columns: 1fr auto; }
    .media-hero-heading { grid-template-columns: 1fr; gap: 1.4rem; }
    .media-hero-title { font-size: clamp(5.8rem, 24vw, 10rem); }
    .media-hero-intro { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; }
    .video-card, .video-card.is-active { flex-basis: 86vw; }
    .media-hero-footer { grid-template-columns: 1fr auto; gap: 1.5rem; }
    .media-hero .now-playing { grid-column: 1 / 3; }
    .channel-pill { align-self: center; }

    .main-nav { display: none; }
    .hero { grid-template-columns: 1fr; align-content: center; min-height: 58rem; }
    .hero-copy { align-self: start; }
    .hero-visual { right: -19vw; bottom: 5.2rem; width: 105vw; opacity: .8; }
    .hero-copy::after {
      content: "";
      position: absolute;
      inset: -4rem -4rem -5rem -2rem;
      z-index: -1;
      background: radial-gradient(circle at 28% 45%, var(--ink) 0%, oklch(0.15 0.035 258 / .92) 38%, transparent 72%);
    }
    .hero-social { align-self: end; grid-column: 1; }
    .scroll-cue { display: none; }
    .section-heading, .booking-intro, .social-section { grid-template-columns: 1fr; }
    .section-heading { gap: 2rem; }
    .booking-intro > p:last-child { grid-column: 1; grid-row: auto; }
    .social-copy { position: static; }
    .booking-contact { grid-template-columns: 1fr; gap: 1rem; }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .site-footer > p { grid-column: 2; }
    .site-footer > div { grid-column: 1 / 3; justify-content: space-between; }
  }

  @media (max-width: 680px) {
    :root { --gutter: 1.1rem; }
    .media-hero { padding-top: 6.4rem; }
    .media-hero::before { display: none; }
    .media-hero-heading { margin-bottom: 2rem; }
    .media-hero-title { max-width: 100%; font-size: clamp(4.7rem, 20.5vw, 5.2rem); font-stretch: 90%; white-space: nowrap; }
    .media-hero-intro { display: block; max-width: 32rem; font-size: .88rem; }
    .media-hero-intro .genre-label { font-size: 1.25rem; }
    .video-carousel-track { padding-left: var(--gutter); padding-right: var(--gutter); }
    .video-card, .video-card.is-active { flex-basis: 90vw; }
    .video-card { opacity: .7; }
    .video-card-media { border-radius: .8rem; }
    .video-carousel-controls { grid-template-columns: 1fr auto auto; }
    .media-hero-footer { display: block; }
    .media-hero .now-playing { display: block; }
    .media-hero .now-playing > span { display: block; margin-bottom: .45rem; }
    .media-hero .now-playing h2 { font-size: 1.7rem; line-height: 1; }
    .media-hero .hero-social-links { margin-top: 1.5rem; }
    .channel-pill { width: max-content; margin-top: 1rem; }

    body { padding-bottom: 4.5rem; }
    .site-header { min-height: 4.6rem; }
    .brand { width: 4.5rem; }
    .header-cta { display: none; }
    .hero { min-height: 50rem; padding-top: 6.2rem; }
    .hero-copy { padding-bottom: 9rem; }
    .hero-title { font-size: clamp(4.2rem, 22vw, 6.4rem); }
    .hero-description { max-width: 28rem; font-size: .96rem; }
    .hero-actions { gap: .6rem; }
    .hero-actions .button { flex: 1 1 auto; min-height: 3.25rem; padding: .75rem .9rem; font-size: .78rem; }
    .hero-visual { right: -25vw; bottom: 5.4rem; width: 125vw; }
    .hero-monogram { display: none; }
    .hero-social { display: block; }
    .hero-social > span { display: block; margin-bottom: .5rem; }
    .hero-social-links { gap: .9rem 1.1rem; }
    .section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
    h2 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
    .section-heading { margin-bottom: 2.5rem; }
    .video-frame-wrap { margin-inline: calc(var(--gutter) * -1); border-radius: 0; border-left: 0; border-right: 0; }
    .now-playing { align-items: flex-end; }
    .now-playing > div:first-child { display: block; }
    .now-playing span { display: block; margin-bottom: .45rem; }
    .now-playing p { display: none; }
    .video-arrows button { width: 2.8rem; height: 2.8rem; }
    .channel-link { display: block; }
    .channel-link a { margin-top: .65rem; }
    .about-section { display: block; min-height: 0; padding-top: 5.5rem; }
    .about-number { position: absolute; top: 7rem; right: 0; font-size: 14rem; opacity: .45; }
    .about-copy { max-width: 36rem; }
    .about-image { width: 100%; max-width: 100%; margin: 2rem 0 0; overflow: hidden; }
    .booking-band { display: block; padding: 1.5rem; }
    .booking-name { display: flex; align-items: baseline; justify-content: space-between; }
    .booking-price, .booking-duration, .club-options, .booking-notes { margin-top: 1.7rem; }
    .booking-duration { text-align: left; }
    .booking-duration strong { font-size: 2.2rem; }
    .booking-band > .button { width: 100%; margin-top: 1.7rem; }
    .booking-private { border-radius: 1.2rem 1.2rem 0 0; }
    .booking-club { border-radius: 0 0 1.2rem 1.2rem; }
    .social-section { width: 100%; max-width: 100vw; min-width: 0; gap: 2.5rem; overflow: hidden; }
    .social-copy, .social-list { min-width: 0; max-width: 100%; }
    .social-copy h2 { max-width: 100%; font-size: clamp(2.5rem, 13vw, 3.8rem); overflow-wrap: anywhere; }
    .social-list a { width: 100%; min-width: 0; grid-template-columns: 1.5rem minmax(0, 1fr) auto; }
    .social-list strong { min-width: 0; }
    .social-list small { display: none; }
    .site-footer { display: flex; flex-wrap: wrap; align-items: center; min-height: 15rem; }
    .site-footer > * { min-width: 0; }
    .site-footer > p { overflow-wrap: anywhere; }
    .site-footer img { width: 6.5rem; }
    .site-footer > p { flex: 1; }
    .site-footer > div { flex: 0 0 100%; }
    .mobile-whatsapp {
      position: fixed;
      left: .75rem;
      right: .75rem;
      bottom: .7rem;
      z-index: 60;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .7rem;
      min-height: 3.45rem;
      padding: .8rem 1rem;
      color: var(--ink-deep);
      background: var(--gold);
      border: 1px solid var(--gold-soft);
      border-radius: .9rem;
      box-shadow: 0 1rem 2.5rem oklch(0.07 0.02 258 / .55);
      font-weight: 850;
      opacity: 0;
      pointer-events: none;
      transform: translateY(calc(100% + 1rem));
      transition: opacity .3s ease, transform .45s var(--ease);
    }
    .mobile-whatsapp.is-visible { opacity: 1; pointer-events: auto; transform: none; }
  }

  @media (max-width: 680px) and (max-height: 650px) {
    body { padding-bottom: 0; }
    .mobile-whatsapp { display: none; }
  }

  @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, .hero-reveal { opacity: 1; transform: none; }
  }
}
