    :root {
      --bg: #050505;
      --panel: #090909;
      --ink: #f5f1eade;
      --muted: #a9a5a0;
      --quiet: #6d6962;
      --line: rgba(255, 255, 255, 0.13);
      --gold: #d6ad28;
      --red: #d94832;
      --green: #4f8c70;
      --blue: #6f8fae;
      --shadow: rgba(0, 0, 0, 0.72);
      --section-kicker-size: 1.2rem;
      --section-kicker-content-gap: clamp(1rem, 3vw, 2rem);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background:
        radial-gradient(circle at 50% 14rem, rgba(80, 62, 24, 0.22), transparent 30rem),
        linear-gradient(180deg, #080807 0%, var(--bg) 38%, #070707 100%);
      color: var(--ink);
      font-family: "Avenir Next", "Segoe UI", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: 0.22;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 84px 84px;
      mask-image: linear-gradient(to bottom, black, transparent 82%);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      padding: 1.1rem clamp(1.2rem, 5vw, 5.4rem);
      background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.3), transparent);
      backdrop-filter: blur(10px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex: 1 0 auto;
    }

    .brand img {
      display: block;
      width: auto;
      height: clamp(2rem, .4vw, 3.8rem);
    }

    .menu-toggle {
      display: none;
      width: 2.8rem;
      height: 2.8rem;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      flex-direction: column;
      gap: 0.32rem;
      border: 1px solid rgba(214, 173, 40, 0.42);
      border-radius: 5px;
      background: rgba(5, 5, 5, 0.58);
      cursor: pointer;
      padding: 0;
    }

    .menu-toggle span {
      display: block;
      width: 1.18rem;
      height: 1px;
      background: var(--gold);
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-header.is-open .menu-toggle span:nth-child(1) {
      transform: translateY(0.39rem) rotate(45deg);
    }

    .site-header.is-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .site-header.is-open .menu-toggle span:nth-child(3) {
      transform: translateY(-0.39rem) rotate(-45deg);
    }

    .footer-brand {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1rem, 1.2vw, 1.28rem);
      letter-spacing: 0.58rem;
      white-space: nowrap;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(1.4rem, 3vw, 3.2rem);
    }

    .nav-item {
      position: relative;
    }

    .nav a,
    .section-kicker,
    .button,
    .stat-label {
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.34rem;
      text-transform: uppercase;
    }

    .section-kicker {
      font-size: var(--section-kicker-size);
    }
    .section-kicker,
    p.section-kicker,
    span.section-kicker,
    .content-panel .section-kicker,
    .spectacle .section-kicker,
    .program-section .section-kicker,
    .appointment .section-kicker {
      color: var(--gold);
    }

    .nav a {
      transition: color 180ms ease;
    }

    .nav a:hover,
    .nav a:focus-visible {
      color: rgba(214, 173, 40, 0.86);
    }

    .has-dropdown:hover > a,
    .has-dropdown:focus-within > a {
      color: rgba(214, 173, 40, 0.86);
    }

    .dropdown {
      position: absolute;
      top: calc(100% + 0.9rem);
      left: 0;
      z-index: 30;
      min-width: 17rem;
      margin: 0;
      padding: 0.7rem 0;
      border: 1px solid rgba(90, 89, 88, 0.38);
      background: rgba(5, 5, 5, 0.94);
      box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.72);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-0.35rem);
      transition: opacity 180ms ease, transform 180ms ease;
      list-style: none;
    }

    .dropdown::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 100%;
      height: 0.9rem;
    }

    .dropdown a {
      display: block;
      padding: 0.85rem 1.05rem;
      color: var(--muted);
      letter-spacing: 0.18rem;
      line-height: 1.35;
      white-space: normal;
    }

    .dropdown a:hover,
    .dropdown a:focus-visible {
      background: rgba(214, 173, 40, 0.09);
      color: rgba(214, 173, 40, 0.86);
    }

    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .button {
      display: inline-flex;
      /*min-height: 3.15rem;*/
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.02);
      color: var(--ink);
      cursor: pointer;
      letter-spacing: 0.28rem;
      padding: 0 1.45rem;
      transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
    }

    .button:hover,
    .button:focus-visible {
      border-color: rgba(214, 173, 40, 0.7);
      background: rgba(214, 173, 40, 0.08);
      transform: translateY(-2px);
    }

    .nav .button {
      min-height: 2.85rem;
      border-color: var(--gold);
      background: rgba(5, 5, 5, 0.18);
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.34rem;
      padding: 0 2.55rem;
      transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
    }

    .nav .button:hover,
    .nav .button:focus-visible {
      border-color: var(--gold);
      background: #b8911f;
      color: #080807;
      transform: none;
    }

    main {
      min-height: 100vh;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 8rem 1.5rem 5rem;
      text-align: center;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(ellipse at 50% 38%, rgba(0, 0, 0, 0.96) 0 20rem, rgba(0, 0, 0, 0.78) 30rem, transparent 44rem);
      pointer-events: none;
    }

    .hero-inner {
      width: min(100%, 76rem);
    }

    .hero-image {
      display: block;
      width: auto;
      max-width: min(88vw, 38rem);
      max-height: clamp(22rem, 60vh, 42rem);
      margin: 0 auto clamp(3rem, 8vh, 5rem);
      object-fit: contain;
      box-shadow: 0 0 5rem 3rem rgba(0, 0, 0, 0.86);
      filter: drop-shadow(0 1.4rem 2.8rem rgba(0, 0, 0, 0.72));
      transform: translateY(calc(var(--scroll-lift, 0) * -16px));
    }

    .hero h1,
    .display-title {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 400;
      letter-spacing: clamp(0.36rem, 2vw, 1.9rem);
      line-height: 0.95;
    }

    .hero h1 {
      font-size: clamp(3.6rem, 9vw, 8.7rem);
    }

    .tagline {
      margin: clamp(1.8rem, 4vh, 2.8rem) 0 2.8rem;
      color: var(--muted);
      letter-spacing: 0.22rem;
    }

    .divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.3rem;
      color: var(--gold);
    }

    .divider::before,
    .divider::after {
      content: "";
      width: min(5.3rem, 16vw);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold));
    }

    .divider::after {
      background: linear-gradient(90deg, var(--gold), transparent);
    }

    .spade {
      position: relative;
      display: block;
      width: 1.95rem;
      height: 1.95rem;
      flex: 0 0 auto;
    }

    .spade::before {
      content: "";
      position: absolute;
      inset: 0.22rem 0.15rem 0.38rem;
      background: var(--gold);
      clip-path: polygon(50% 0, 100% 58%, 70% 88%, 50% 70%, 30% 88%, 0 58%);
    }

    .spade::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0.05rem;
      width: 0.86rem;
      height: 0.58rem;
      background: var(--gold);
      transform: translateX(-50%);
      clip-path: polygon(38% 0, 62% 0, 78% 100%, 22% 100%);
    }

    .scroll-cue {
      position: absolute;
      bottom: 4.2rem;
      left: 50%;
      width: 1.8rem;
      height: 1.8rem;
      border: 0;
      border-right: 1px solid var(--muted);
      border-bottom: 1px solid var(--muted);
      background: transparent;
      transform: translateX(-50%) rotate(45deg);
      cursor: pointer;
      animation: floatDown 2s ease-in-out infinite;
    }

    .section {
      padding: clamp(2.5rem, 8vw, 5rem) clamp(1.2rem, 5vw, 5.4rem);
    }

    .section-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.3rem;
      width: min(100%, 36rem);
      margin: 0 auto 1.25rem;
      color: var(--gold);
      line-height: 0;
      overflow: visible;
    }

    .section-divider::before,
    .section-divider::after {
      content: "";
      width: min(5.3rem, 16vw);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold));
    }

    .section-divider::after {
      background: linear-gradient(90deg, var(--gold), transparent);
    }

    .section > .section-kicker {
      width: 100%;
      max-width: none;
      margin: 0 0 var(--section-kicker-content-gap);
      color: var(--gold);
      justify-self: stretch;
      text-align: center;
    }

    .artisan {
      display: grid;
      grid-template-columns: minmax(17rem, 0.88fr) minmax(18rem, 1fr);
      column-gap: clamp(3rem, 9vw, 8.8rem);
      row-gap: 0;
      align-items: center;
      min-height: 88vh;
    }

    .artisan > .section-kicker {
      grid-column: 1 / -1;
      justify-self: center;
    }

    .artisan > .section-divider {
      grid-column: 1 / -1;
      justify-self: center;
    }

    .portrait {
      position: relative;
      min-height: clamp(31rem, 56vw, 58rem);
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)),
        url("../images/artisan-portrait-placeholder.jpg") center / cover no-repeat;
      box-shadow:
        inset 0 0 5rem 2.8rem rgba(0, 0, 0, 0.82),
        0 0 5.5rem 3.2rem rgba(0, 0, 0, 0.74);
      isolation: isolate;
    }

    .portrait::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 50%, transparent 42%, rgba(0, 0, 0, 0.42) 76%, rgba(0, 0, 0, 0.9) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.72)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 16%, transparent 80%, rgba(0, 0, 0, 0.82));
      pointer-events: none;
    }

    .content-panel {
      max-width: 42rem;
    }

    .content-panel h2,
    .spectacle h2,
    .program-section h2,
    .appointment h2 {
      margin: 1.5rem 0 1.8rem;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.3rem, 4.7vw, 4.3rem);
      font-weight: 400;
      line-height: 1.07;
    }

    .content-panel > h2:first-child,
    .spectacle-intro > h2:first-child,
    .program-intro > h2:first-child,
    .appointment-inner > h2:first-child {
      margin-top: 0;
    }

    .content-panel em {
      color: var(--muted);
      font-style: italic;
    }

    .content-panel p,
    .spectacle p,
    .program-section p,
    .appointment p {
      color: var(--muted);
      max-width: 43rem;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 3.2rem;
      padding-top: 2.4rem;
      border-top: 1px solid var(--line);
    }

    .stat strong {
      display: block;
      color: rgba(214, 173, 40, 0.7);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.7rem, 3vw, 2.25rem);
      font-weight: 400;
    }

    .stat-label {
      display: block;
      margin-top: 0.35rem;
      font-size: 0.62rem;
      letter-spacing: 0.26rem;
    }

    .spectacle {
      min-height: 100vh;
      padding-top: clamp(3rem, 8vw, 7rem);
    }

    .spectacle-hero {
      display: grid;
      grid-template-columns: minmax(18rem, 0.78fr) minmax(24rem, 1.22fr);
      gap: clamp(2.5rem, 6vw, 7rem);
      align-items: center;
      margin-bottom: clamp(2rem, 5vw, 4rem);
    }

    .spectacle-intro {
      max-width: 38rem;
    }

    .spectacle-audience {
      position: relative;
      min-height: clamp(32rem, 72vh, 48rem);
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06) 32%, rgba(0, 0, 0, 0.28)),
        url("../images/audience.jpg") center / cover no-repeat;
      box-shadow: inset 0 0 5.5rem 3rem rgba(0, 0, 0, 0.86);
      isolation: isolate;
    }

    .spectacle-audience::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 50%, transparent 38%, rgba(0, 0, 0, 0.38) 72%, rgba(0, 0, 0, 0.92) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 18%, transparent 76%, rgba(0, 0, 0, 0.88));
      pointer-events: none;
    }

    .frames {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(1.5rem, 3vw, 3rem);
      min-height: 24rem;
      align-items: end;
    }

    .frame {
      position: relative;
      min-height: clamp(18rem, 32vw, 31rem);
      border: 1px solid var(--line);
      background: var(--frame-bg) center / cover no-repeat;
      overflow: hidden;
      cursor: pointer;
      transform: translateY(var(--shift, 0));
      transition: transform 260ms ease, border-color 260ms ease, filter 260ms ease;
      filter: grayscale(1) contrast(1.1) brightness(0.66);
    }

    .frame:nth-child(2) {
      --shift: 4rem;
    }

    .frame:nth-child(3) {
      --shift: -2rem;
    }

    .frame::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 50%), transparent 0 5.5rem, rgba(0, 0, 0, 0.5) 9rem),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
      opacity: 0.92;
      transition: opacity 260ms ease;
    }

    .frame::after {
      content: attr(data-title);
      position: absolute;
      left: 1.2rem;
      right: 1.2rem;
      bottom: 1rem;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.4rem, 2.8vw, 2.35rem);
      line-height: 1.1;
      color: var(--ink);
    }

    .frame:hover,
    .frame:focus-visible,
    .frame.is-awake {
      border-color: rgba(214, 173, 40, 0.54);
      filter: grayscale(0.08) contrast(1.03) brightness(0.92);
      transform: translateY(calc(var(--shift, 0) - 0.7rem));
    }

    .frame:hover::before,
    .frame:focus-visible::before,
    .frame.is-awake::before {
      opacity: 0.3;
    }

    .frame.card,
    .frame.coin,
    .frame.flame {
      appearance: none;
      display: flex;
      min-height: auto;
      flex-direction: column;
      border: 0;
      background: transparent;
      overflow: visible;
      padding: 0;
      filter: none;
    }

    .frame.card::before,
    .frame.coin::before,
    .frame.flame::before {
      content: none;
    }

    .frame.card::after,
    .frame.coin::after,
    .frame.flame::after {
      content: none;
    }

    .card-heading {
      position: absolute;
      inset-inline: 0;
      bottom: -1px;
      z-index: 2;
      display: block;
      width: 100%;
      padding: 0.9rem 1rem;
      background: rgba(0, 0, 0, 0.62);
      color: var(--ink);
      font-family: inherit;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.34rem;
      line-height: 1.35;
      text-align: center;
      text-transform: uppercase;
    }

    .card-media {
      position: relative;
      display: block;
      width: 100%;
      min-height: clamp(18rem, 32vw, 31rem);
      border-radius: 5px;
      background-color: #050505;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      overflow: hidden;
      filter: brightness(0.78) contrast(1.02) saturate(0.96);
      transition: box-shadow 260ms ease, filter 260ms ease;
    }

    .frames .card-media {
      min-height: clamp(16rem, 28vw, 27rem);
    }

    .card-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.08) 0 5.5rem, rgba(0, 0, 0, 0.24) 9rem),
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.38));
      opacity: 0.82;
      transition: opacity 260ms ease;
    }

    .frame.card:hover,
    .frame.card:focus-visible,
    .frame.card.is-awake,
    .frame.coin:hover,
    .frame.coin:focus-visible,
    .frame.coin.is-awake,
    .frame.flame:hover,
    .frame.flame:focus-visible,
    .frame.flame.is-awake {
      border-color: transparent;
      filter: none;
    }

    .frame.card:hover .card-media,
    .frame.card:focus-visible .card-media,
    .frame.card.is-awake .card-media,
    .frame.coin:hover .card-media,
    .frame.coin:focus-visible .card-media,
    .frame.coin.is-awake .card-media,
    .frame.flame:hover .card-media,
    .frame.flame:focus-visible .card-media,
    .frame.flame.is-awake .card-media {
      box-shadow: 0 0 3.4rem rgba(231, 197, 85, 0.18);
      filter: brightness(0.96) contrast(1.04) saturate(1.08);
    }

    .frame.card:hover .card-media::before,
    .frame.card:focus-visible .card-media::before,
    .frame.card.is-awake .card-media::before,
    .frame.coin:hover .card-media::before,
    .frame.coin:focus-visible .card-media::before,
    .frame.coin.is-awake .card-media::before,
    .frame.flame:hover .card-media::before,
    .frame.flame:focus-visible .card-media::before,
    .frame.flame.is-awake .card-media::before {
      opacity: 0.28;
    }

    .program-section {
      min-height: 82vh;
      display: grid;
      gap: 0;
      align-content: center;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .program-intro {
      max-width: 44rem;
      margin-bottom: clamp(2.8rem, 7vw, 6rem);
    }

    .education-feature {
      display: grid;
      grid-template-columns: minmax(24rem, 1.22fr) minmax(18rem, 0.78fr);
      gap: clamp(2.5rem, 6vw, 7rem);
      align-items: center;
      margin-bottom: clamp(2.8rem, 7vw, 6rem);
    }

    .education-feature .program-intro {
      margin-bottom: 0;
    }

    .education-image {
      position: relative;
      min-height: clamp(32rem, 72vh, 48rem);
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06) 32%, rgba(0, 0, 0, 0.28)),
        url("../images/Education.jpg") center / contain no-repeat;
      box-shadow: inset 0 0 3rem 1.8rem rgba(0, 0, 0, 0.9);
      isolation: isolate;
    }

    .education-image::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 50%, transparent 38%, rgba(0, 0, 0, 0.42) 72%, rgba(0, 0, 0, 0.96) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.86)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.76) 8%, transparent 26%, transparent 70%, rgba(0, 0, 0, 0.78) 90%, rgba(0, 0, 0, 0.98));
      pointer-events: none;
    }

    .workshops-feature {
      display: grid;
      grid-template-columns: minmax(18rem, 0.78fr) minmax(24rem, 1.22fr);
      gap: clamp(2.5rem, 6vw, 7rem);
      align-items: center;
      margin-bottom: clamp(2.8rem, 7vw, 6rem);
    }

    .workshops-feature .program-intro {
      margin-bottom: 0;
    }

    .workshops-image {
      position: relative;
      min-height: clamp(32rem, 72vh, 48rem);
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06) 32%, rgba(0, 0, 0, 0.28)),
        url("../images/Workshop.jpg") center / contain no-repeat;
      box-shadow: inset 0 0 3rem 1.8rem rgba(0, 0, 0, 0.9);
      isolation: isolate;
    }

    .workshops-image::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 50%, transparent 38%, rgba(0, 0, 0, 0.42) 72%, rgba(0, 0, 0, 0.96) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.86)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.76) 8%, transparent 26%, transparent 70%, rgba(0, 0, 0, 0.78) 90%, rgba(0, 0, 0, 0.98));
      pointer-events: none;
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(1rem, 2.2vw, 2rem);
    }

    .education-cards {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(1.5rem, 3vw, 3rem);
      min-height: 24rem;
      align-items: end;
    }

    .workshops-cards {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(1.5rem, 3vw, 3rem);
      min-height: 24rem;
      align-items: end;
    }

    .education-cards .card-heading {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .education-cards .card-heading {
      white-space: nowrap;
    }

    .education-cards .card-media,
    .workshops-cards .card-media {
      min-height: clamp(16rem, 28vw, 27rem);
    }

    .workshops-cards .card-heading {
      white-space: nowrap;
    }

    .program-card {
      position: relative;
      min-height: clamp(18rem, 26vw, 27rem);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      padding: clamp(1.4rem, 3vw, 2.4rem);
      background:
        radial-gradient(circle at 50% 0, rgba(214, 173, 40, 0.12), transparent 16rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        #050505;
      box-shadow:
        inset 0 0 4rem 2rem rgba(0, 0, 0, 0.74),
        0 0 4.6rem 2.8rem rgba(0, 0, 0, 0.58);
      isolation: isolate;
    }

    .program-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82)),
        radial-gradient(ellipse at 50% 50%, transparent 38%, rgba(0, 0, 0, 0.72) 100%);
      pointer-events: none;
    }

    .program-card h3 {
      margin: 1.1rem 0 0.85rem;
      color: var(--ink);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.55rem, 2.6vw, 2.35rem);
      font-weight: 400;
      line-height: 1.08;
    }

    .program-card p {
      margin-bottom: 0;
    }

    .pricing {
      min-height: 82vh;
      display: grid;
      align-content: center;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .pricing-intro {
      max-width: 44rem;
      margin: 0 auto clamp(2.8rem, 7vw, 6rem);
      text-align: center;
    }

    .pricing-intro h2 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.3rem, 4.7vw, 4.3rem);
      font-weight: 400;
      line-height: 1.07;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(1.5rem, 3vw, 3rem);
    }

    .pricing-card {
      overflow: hidden;
      border: 1px solid rgba(214, 173, 40, 0.22);
      border-radius: 5px;
      background:
        radial-gradient(circle at 50% 0, rgba(214, 173, 40, 0.12), transparent 16rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
        #050505;
      box-shadow: inset 0 0 4rem 2rem rgba(0, 0, 0, 0.7);
    }

    .pricing-card-title {
      min-height: 4.4rem;
      display: grid;
      place-items: center;
      padding: 1rem 1.2rem;
      background: rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
    }

    .pricing-card h3 {
      margin: 0;
      color: rgba(245, 241, 234, 0.78);
      font-family: inherit;
      font-size: 0.86rem;
      font-weight: 500;
      letter-spacing: 0.18rem;
      line-height: 1.38;
      text-transform: uppercase;
    }

    .pricing-card-content {
      display: grid;
      gap: 1rem;
      padding: clamp(1.4rem, 3vw, 2.2rem);
      color: var(--muted);
    }

    .pricing-card-content p {
      margin: 0;
    }

    .pricing-card-content strong {
      color: var(--ink);
      font-weight: 500;
    }

    .pricing-audience {
      color: rgba(242, 242, 242, 0.72);
    }

    .pricing-audience strong {
      color: rgba(249, 249, 249, 0.853);
    }

    .pricing-starting strong {
      color: var(--ink);
    }

    .pricing-price {
      color: var(--gold);
      font-weight: 500;
    }

    .appointment {
      min-height: 82vh;
      display: grid;
      place-items: center;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .appointment-inner {
      width: min(100%, 45rem);
    }

    .inquiry {
      display: grid;
      gap: 1rem;
      margin: 2.8rem auto 0;
      max-width: 36rem;
      text-align: left;
    }

    .inquiry label .section-kicker {
      display: block;
      margin-bottom: 0.55rem;
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.34rem;
      line-height: 1.35;
      text-transform: uppercase;
    }

    .required-star {
      color: var(--gold);
    }

    .inquiry .button {
      min-height: 4.1rem;
      border-color: var(--gold);
      background: rgba(5, 5, 5, 0.18);
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.34rem;
      text-transform: uppercase;
      transform: none;
    }

    .inquiry .button:hover,
    .inquiry .button:focus-visible {
      border-color: var(--gold);
      background: var(--gold);
      color: #080807;
      transform: none;
    }

    .inquiry .button:disabled {
      cursor: wait;
      opacity: 0.58;
    }

    .field-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 0;
      background: rgba(5, 5, 5, 0.94);
      color: var(--ink);
      padding: 0.95rem 1rem;
      outline: none;
      transition: border-color 180ms ease, background 180ms ease;
    }

    .custom-select {
      position: relative;
    }

    .custom-select-value {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .custom-select-trigger {
      position: relative;
      width: 100%;
      border: 1px solid rgba(90, 89, 88, 0.38);
      border-radius: 0;
      background: rgba(5, 5, 5, 0.94);
      color: var(--muted);
      cursor: pointer;
      padding: 0.95rem 2.6rem 0.95rem 1rem;
      text-align: left;
      transition: border-color 180ms ease, background 180ms ease;
    }

    .custom-select-trigger::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 1.1rem;
      width: 0.48rem;
      height: 0.48rem;
      border-right: 1px solid var(--gold);
      border-bottom: 1px solid var(--gold);
      transform: translateY(-62%) rotate(45deg);
      transform-origin: center;
      pointer-events: none;
    }

    .custom-select-trigger:focus-visible,
    .custom-select.is-open .custom-select-trigger {
      border-color: rgba(214, 173, 40, 0.7);
      background: rgba(5, 5, 5, 0.94);
      outline: none;
    }

    .custom-select-menu {
      position: absolute;
      top: calc(100% + 0.75rem);
      left: 0;
      right: 0;
      z-index: 12;
      margin: 0;
      padding: 0.7rem 0;
      border: 1px solid rgba(90, 89, 88, 0.38);
      background: rgba(5, 5, 5, 0.94);
      box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.72);
      list-style: none;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-0.35rem);
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .custom-select.is-open .custom-select-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .custom-select-menu button {
      display: block;
      width: 100%;
      border: 0;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18rem;
      line-height: 1.35;
      padding: 0.85rem 1.05rem;
      text-align: left;
      text-transform: uppercase;
    }

    .custom-select-menu button:hover,
    .custom-select-menu button:focus-visible,
    .custom-select-menu button.is-selected {
      background: rgba(214, 173, 40, 0.09);
      color: rgba(214, 173, 40, 0.86);
      outline: none;
    }

    textarea {
      min-height: 8.5rem;
      resize: vertical;
    }

    input:focus,
    textarea:focus {
      border-color: rgba(214, 173, 40, 0.7);
      background: rgba(5, 5, 5, 0.94);
    }

    .form-note {
      min-height: 1.6rem;
      color: var(--gold);
      font-size: 0.9rem;
      text-align: center;
    }

    .form-note:empty {
      display: none;
    }

    .detail-section {
      min-height: 82vh;
      display: grid;
      align-content: center;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .detail-section-first {
      min-height: 100vh;
      align-content: start;
      padding-top: clamp(8rem, 11vw, 10rem);
    }

    .breadcrumb {
      position: fixed;
      top: 4.25rem;
      left: 0;
      right: 0;
      z-index: 19;
      padding: 1.05rem clamp(1.2rem, 5vw, 5.4rem) 0.75rem;
      margin-bottom: clamp(3rem, 7vw, 6rem);
      background: linear-gradient(180deg, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.36), transparent);
      backdrop-filter: blur(10px);
      color: var(--muted);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 0.95rem;
      font-style: italic;
      font-weight: 400;
      letter-spacing: 0;
      text-transform: none;
    }

    .breadcrumb a {
      transition: color 180ms ease;
    }

    .breadcrumb a:hover,
    .breadcrumb a:focus-visible {
      color: var(--gold);
    }

    .breadcrumb span {
      margin-left: 0.6rem;
    }

    .breadcrumb span + a,
    .breadcrumb span + span {
      margin-left: 0.6rem;
    }

    .detail-stack {
      max-width: 46rem;
      display: grid;
      gap: clamp(1.2rem, 2.6vw, 2rem);
      margin: var(--section-kicker-content-gap) auto 0;
    }

    .detail-block {
      padding-bottom: clamp(1.2rem, 2.4vw, 1.8rem);
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .detail-block:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .detail-block h1 {
      margin: 0 0 1rem;
      color: rgba(245, 241, 234, 0.78);
      font-family: inherit;
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 0.18rem;
      line-height: 1.38;
      text-transform: uppercase;
    }

    .detail-block h2 {
      margin: 0 0 1rem;
      color: rgba(245, 241, 234, 0.78);
      font-family: inherit;
      font-size: 0.86rem;
      font-weight: 500;
      letter-spacing: 0.18rem;
      line-height: 1.38;
      text-transform: uppercase;
    }

    .detail-block p {
      margin: 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.35vw, 1.14rem);
    }

    .detail-list {
      display: grid;
      gap: 1.15rem;
      margin: 0;
      padding: 0;
      color: var(--muted);
      list-style: none;
    }

    .detail-list li {
      position: relative;
      padding-left: 1.35rem;
      font-size: clamp(1rem, 1.35vw, 1.14rem);
    }

    .detail-list li::before {
      content: "";
      position: absolute;
      top: 0.78em;
      left: 0;
      width: 0.36rem;
      height: 0.36rem;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.8;
      transform: translateY(-50%);
    }

    .detail-list strong {
      display: block;
      margin-bottom: 0.2rem;
      color: rgba(245, 241, 234, 0.82);
      font-weight: 500;
    }

    .detail-list span {
      display: block;
    }

    .detail-submit-button {
      display: flex;
      width: fit-content;
      min-height: 3rem;
      margin: 3rem auto 0;
      border-color: var(--gold);
      color: var(--gold);
    }

    .detail-submit-button:hover,
    .detail-submit-button:focus-visible {
      background: var(--gold);
      color: #080807;
      transform: none;
    }

    .site-footer {
      padding: 4.6rem clamp(1.2rem, 5vw, 5.4rem) 1.8rem;
      border-top: 1px solid var(--line);
      text-align: center;
    }

    .footer-brand {
      display: block;
      margin-bottom: 0.85rem;
    }

    .footer-tagline {
      margin: 0 0 2.4rem;
      color: var(--muted);
      font-size: 0.72rem;
      letter-spacing: 0.28rem;
      text-transform: uppercase;
    }

    .footer-bottom {
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding-top: 1.8rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--muted);
      font-size: 0.82rem;
    }

    .socials {
      display: flex;
      justify-content: center;
      gap: 1.1rem;
      margin: 2.4rem 0 2.2rem;
    }

    .socials a {
      width: 2.2rem;
      height: 2.2rem;
      display: grid;
      place-items: center;
      border: 1px solid transparent;
      color: var(--muted);
      transition: color 180ms ease, border-color 180ms ease;
    }

    .socials svg {
      width: 1.25rem;
      height: 1.25rem;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .socials svg path {
      fill: currentColor;
      stroke: none;
    }

    .socials svg rect,
    .socials svg circle,
    .socials svg polyline {
      fill: none;
      stroke: currentColor;
    }

    .socials a:hover,
    .socials a:focus-visible {
      color: var(--ink);
      border-color: var(--line);
    }

    .reveal {
      opacity: 0;
      transform: translateY(2.2rem);
      transition: opacity 850ms ease, transform 850ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 {
      transition-delay: 120ms;
    }

    .delay-2 {
      transition-delay: 240ms;
    }

    .delay-3 {
      transition-delay: 360ms;
    }

    @keyframes twinkle {
      0%, 100% {
        opacity: 0.45;
        transform: scale(0.75) rotate(0deg);
      }
      50% {
        opacity: 1;
        transform: scale(1.08) rotate(25deg);
      }
    }

    @keyframes floatDown {
      0%, 100% {
        opacity: 0.45;
        margin-bottom: 0;
      }
      50% {
        opacity: 1;
        margin-bottom: -0.55rem;
      }
    }

    @media (max-width: 850px) {
      .site-header {
        align-items: center;
        flex-wrap: wrap;
      }

      .brand {
        letter-spacing: 0.34rem;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav {
        width: 100%;
        max-height: 0;
        display: grid;
        flex-basis: 100%;
        gap: 0;
        overflow: hidden;
        opacity: 0;
        padding-top: 0;
        transition: max-height 240ms ease, opacity 180ms ease, padding-top 180ms ease;
      }

      .site-header.is-open .nav {
        max-height: calc(100vh - 5.5rem);
        overflow-y: auto;
        opacity: 1;
        padding-top: 1rem;
      }

      .nav > a,
      .nav-item > a,
      .nav .button {
        min-height: auto;
        justify-content: flex-start;
        padding: 0.92rem 0;
      }

      .nav .button {
        margin-top: 0.6rem;
        justify-content: center;
      }

      .nav-item {
        position: static;
      }

      .dropdown {
        position: static;
        min-width: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        padding: 0 0 0.55rem 0.9rem;
        pointer-events: auto;
        transform: none;
      }

      .dropdown::before {
        content: none;
      }

      .dropdown a {
        padding: 0.48rem 0;
        font-size: 0.64rem;
        letter-spacing: 0.18rem;
      }

      .hero h1 {
        letter-spacing: 0.42rem;
      }

      .artisan {
        grid-template-columns: 1fr;
      }

      .spectacle-hero {
        grid-template-columns: 1fr;
      }

      .spectacle-audience {
        min-height: clamp(22rem, 62vw, 36rem);
      }

      .education-feature {
        grid-template-columns: 1fr;
      }

      .education-image {
        min-height: clamp(22rem, 62vw, 36rem);
      }

      .workshops-feature {
        grid-template-columns: 1fr;
      }

      .workshops-image {
        min-height: clamp(22rem, 62vw, 36rem);
      }

      .program-grid {
        grid-template-columns: 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .program-card {
        min-height: 20rem;
      }

      .frames {
        grid-template-columns: 1fr;
      }

      .frame,
      .frame:nth-child(2),
      .frame:nth-child(3) {
        --shift: 0;
        min-height: 22rem;
      }
    }

    @media (max-width: 560px) {
      .site-header {
        padding-top: 0.85rem;
      }

      .hero {
        padding-top: 7rem;
      }

      .hero h1 {
        font-size: clamp(3.2rem, 18vw, 5.4rem);
        letter-spacing: 0.18rem;
      }

      .tagline {
        letter-spacing: 0.12rem;
      }

      .stats,
      .field-row,
      .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 1ms !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
