:root {
  --bg: #121212;
  --bg-soft: #171717;
  --bg-card: #151515;
  --text: #f6f3ec;
  --muted: rgba(255, 255, 255, 0.56);
  --muted-2: rgba(255, 255, 255, 0.32);
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.6);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.25);
  --shell: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(18, 18, 18, 0.94);
  border-bottom: 1px solid var(--gold);
  backdrop-filter: blur(12px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.font-archivo {
  font-family: "Archivo Black", sans-serif;
}

.font-archivo-light {
  font-family: "Archivo", sans-serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease,
    opacity 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-gold {
  background: var(--gold);
  color: #111;
  box-shadow: var(--shadow-gold);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}

.button-outline-gold {
  border-color: rgba(212, 175, 55, 0.7);
  color: var(--gold);
  background: transparent;
  padding: 14px 28px;
  border-radius: 0;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  box-shadow: none;
}

.button-sm {
  padding: 12px 18px;
  font-size: 0.75rem;
}

.button-lg,
.button-gold,
.button-ghost {
  padding: 16px 24px;
  font-size: 0.8rem;
}

.gold-text {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: min(100svh, 920px);
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(12, 12, 12, 0.06), rgba(12, 12, 12, 0.16) 42%, rgba(12, 12, 12, 0.42) 72%, rgba(12, 12, 12, 0.84) 90%, rgba(12, 12, 12, 0.94)),
    linear-gradient(to right, rgba(12, 12, 12, 0.28), rgba(12, 12, 12, 0.06), rgba(12, 12, 12, 0.32));
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: min(100svh, 920px);
  padding: 138px 0 86px;
}

.hero-copy {
  max-width: 1120px;
  text-align: center;
  margin-bottom: 118px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.video-copy h3,
.artist-copy h2 {
  margin: 0;
  font-family: "Archivo Black", Inter, system-ui, sans-serif;
  text-transform: uppercase;
}

.hero h1 {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.01;
  letter-spacing: 0.01em;
  max-width: 1180px;
  margin: 0 auto;
  text-rendering: optimizeLegibility;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-title {
  display: none;
}

.hero-title-mobile {
  display: block;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-title-mobile {
    display: none;
  }

  .hero-title-tablet {
    display: block;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 60px;
    max-width: 1240px;
  }

  .hero-title-tablet {
    display: none;
  }

  .hero-title-desktop {
    display: block;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 72px;
    max-width: 1320px;
  }
}

.hero-body {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.95rem, 1.05vw, 0.98rem);
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.hero-proof {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  width: min(calc(100% - 32px), 1120px);
  margin: 0 auto;
  text-align: center;
}

.hero-proof .stat-item {
  color: rgba(255, 255, 255, 0.28);
}

.hero-proof .stat-item strong,
.hero-proof .stat-item span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.hero-proof .stat-item span {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .hero-proof {
    bottom: 56px;
  }
}

@media (min-width: 1024px) {
  .hero-proof {
    bottom: 64px;
  }
}

@media (min-width: 1280px) {
  .hero-proof {
    bottom: 72px;
  }
}

.hero-chevron {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(212, 175, 55, 0.84);
  font-size: 1.6rem;
  line-height: 1;
}

.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.96);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  text-align: center;
}

.stat-item {
  font-family: Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}

.stat-item strong,
.stat-item span {
  display: block;
}

.stat-item strong {
  font-size: 0.88rem;
  font-weight: 500;
}

.stat-item span {
  font-size: 0.88rem;
}

.stat-dot {
  width: 5px;
  height: 5px;
  background: rgba(212, 175, 55, 0.55);
  border-radius: 50%;
}

.section-head {
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.rule {
  width: 68px;
  height: 2px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.rule-left {
  margin-left: 0;
  margin-right: 0;
  background: var(--gold);
}

.logo-wall,
.video-section,
.acts-section,
.artist-section {
  background: var(--bg);
}

.logo-wall {
  padding: 26px 0 78px;
  border-bottom: 1px solid var(--line);
}

.logo-shell {
  max-width: 1060px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
  max-width: 360px;
  margin: 44px auto 0;
}

.logo-divider {
  width: min(100%, 770px);
  height: 1px;
  margin: 18px auto 0;
  background: rgba(255, 255, 255, 0.05);
}

.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
}

.logo-span {
  grid-column: 1 / -1;
}

.logo {
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-mtv {
  width: 142px;
  height: 76px;
}

.logo-disney {
  width: 198px;
  height: 72px;
}

.logo-paramount {
  width: 124px;
  height: 86px;
}

.logo-coke {
  width: 196px;
  height: 76px;
}

.logo-vh1 {
  width: 150px;
  height: 80px;
}

.logo-mcd {
  width: 112px;
  height: 82px;
}

.logo-wells {
  width: 182px;
  height: 94px;
}

.logo-mgm {
  width: 192px;
  height: 92px;
}

.logo-kt {
  width: 238px;
  height: 90px;
}

.logo-toyota {
  width: 150px;
  height: 104px;
}

@media (min-width: 768px) {
  .logo-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 0;
    max-width: 728px;
    margin-top: 48px;
  }

  .logo-span {
    grid-column: auto;
  }

  .logo-cell {
    min-height: 118px;
  }

  .logo-mtv {
    width: 176px;
    height: 94px;
  }

  .logo-disney {
    width: 246px;
    height: 90px;
  }

  .logo-paramount {
    width: 142px;
    height: 100px;
  }

  .logo-coke {
    width: 244px;
    height: 92px;
  }

  .logo-vh1 {
    width: 178px;
    height: 94px;
  }

  .logo-mcd {
    width: 124px;
    height: 92px;
  }

  .logo-wells {
    width: 206px;
    height: 106px;
  }

  .logo-mgm {
    width: 222px;
    height: 106px;
  }

  .logo-kt {
    width: 276px;
    height: 106px;
  }

  .logo-toyota {
    width: 164px;
    height: 112px;
  }
}

.video-section {
  padding: 86px 0 54px;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-top: 52px;
}

.video-frame-wrap {
  display: flex;
  justify-content: center;
}

.video-embed {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.video-embed-wide {
  max-width: none;
  aspect-ratio: 16 / 9;
}

.gallery-media > .video-embed-wide {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
}

.video-placeholder {
  position: relative;
  display: block;
  padding: 0;
  cursor: pointer;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 12, 12, 0.04), rgba(12, 12, 12, 0.36));
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 186px;
  height: 64px;
  padding: 0 24px;
  border-radius: 14px;
  background: var(--gold);
  color: #111;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}

.video-play::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #111;
}

.video-copy h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}

.video-copy p,
.artist-copy p,
.act-copy p,
.footer-shell p {
  color: var(--muted);
  line-height: 1.72;
}

.video-copy .quote {
  margin: 24px 0 32px;
  padding-left: 18px;
  border-left: 2px solid rgba(212, 175, 55, 0.34);
  color: rgba(255, 255, 255, 0.42);
  font-style: italic;
}

.acts-section {
  padding: 84px 0 108px;
}

.section-intro {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.72;
}

.acts-block {
  margin-top: 52px;
}

.acts-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.acts-label-muted {
  color: rgba(255, 255, 255, 0.34);
}

.acts-section .eyebrow {
  color: var(--gold);
}

.act-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: #141414;
  overflow: hidden;
}

.act-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 36%;
}

.act-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 42px;
}

.act-feature-copy h3,
.act-copy h3 {
  margin: 0;
  font-family: "Archivo", Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 3.05rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.act-feature-copy p,
.act-copy p {
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.78;
}

.act-feature-copy .button,
.act-copy .button {
  margin-top: 22px;
}

.act-feature-copy .button {
  align-self: center;
}

.acts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.act-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.act-card-media {
  position: relative;
  overflow: hidden;
}

.act-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 28%;
}

.act-image-snf {
  object-position: center 34%;
}

.act-image-pulp {
  object-position: center 34%;
}

.act-image-grease {
  object-position: center 24%;
}

.gallery-storyboard-grease img {
  object-position: center 18%;
}

.act-card-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 96px;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0), rgba(18, 18, 18, 0.9));
}

.act-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 22px 28px;
}

.act-copy h3 {
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.act-copy .button {
  margin-top: auto;
  align-self: center;
}

.acts-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.artist-section {
  padding: 92px 0 94px;
  border-top: 1px solid var(--line);
}

.artist-layout {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.artist-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.artist-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 0.95;
  margin-bottom: 0;
}

.artist-section .eyebrow {
  margin-bottom: 16px;
  color: #d4af37;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.artist-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}

.artist-subhead {
  margin: 38px 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.credential-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.credential-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.72;
}

.credential-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--gold);
  font-size: 0.95rem;
}

.credential-list strong {
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.artist-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.artist-copy .artist-service-area {
  max-width: 350px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.34);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 56px 0 44px;
  background: #121212;
}

.footer-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.footer-shell h2 {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.94);
}

.footer-copy {
  max-width: 470px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.96rem;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 30px;
  margin-top: 28px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.footer-note {
  margin: 42px auto 0;
  color: rgba(255, 255, 255, 0.28);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0;
}

.footer-subnote {
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.18);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  line-height: 1.45;
}

.page-hero,
.content-page {
  padding: 120px 0 90px;
}

.page-hero h1 {
  margin: 16px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  text-transform: uppercase;
}

.gallery-hero h1.font-archivo-light {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.content-page .shell {
  max-width: 900px;
}

.content-page p,
.content-page li {
  color: var(--muted);
  line-height: 1.74;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.gallery-hero {
  padding-bottom: 42px;
}

.gallery-hero-shell {
  max-width: none;
}

.gallery-hero-copy {
  max-width: 860px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 1.04rem;
  line-height: 1.8;
}

.gallery-video-section {
  padding-top: 0;
}

.gallery-video-section .video-layout {
  margin-top: 26px;
}

.video-copy .eyebrow {
  color: var(--gold-soft);
}

.gallery-act-section {
  padding: 40px 0 34px;
}

.gallery-section-head {
  max-width: 760px;
}

.gallery-section-head h2,
.gallery-final-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  text-transform: uppercase;
}

.gallery-section-copy,
.gallery-final-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.78;
}

.gallery-storyboard {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.gallery-storyboard-snf {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.72fr);
  align-items: start;
}

.gallery-storyboard-pulp {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  align-items: start;
}

.gallery-storyboard-grease {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr);
  align-items: start;
}

.gallery-tile {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gallery-tile-featured-vertical {
  grid-row: span 2;
}

.gallery-tile-wide {
  grid-column: 1 / -1;
}

.gallery-media {
  position: relative;
  overflow: hidden;
  background: #101010;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.07), rgba(255, 255, 255, 0.02)),
    #141414;
  color: rgba(255, 255, 255, 0.34);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 28px;
}

.gallery-tile-featured-vertical .gallery-media {
  aspect-ratio: 9 / 16;
}

.gallery-tile-portrait .gallery-media {
  aspect-ratio: 4 / 5;
}

.gallery-tile-landscape .gallery-media,
.gallery-tile-support .gallery-media {
  aspect-ratio: 3 / 2;
}

.gallery-tile-wide .gallery-media {
  aspect-ratio: 16 / 9;
}

.gallery-tile-grease-feature .gallery-media {
  aspect-ratio: 3 / 4;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #101010;
}

.gallery-tile-grease-feature .gallery-media img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
}

.gallery-tile-grease-yearbook {
  display: grid;
  gap: 26px;
  padding: 30px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(232, 236, 242, 0.96), rgba(215, 222, 232, 0.93)),
    #d8dee8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.grease-yearbook-intro {
  padding: 0;
  max-width: 780px;
}

.gallery-tile-grease-yearbook::before,
.gallery-tile-grease-yearbook::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gallery-tile-grease-yearbook::before {
  inset: 16px;
  border: 1px solid rgba(63, 76, 96, 0.18);
}

.gallery-tile-grease-yearbook::after {
  right: 32px;
  top: 18px;
  width: 240px;
  height: 76px;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,0.18), transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  opacity: 0.3;
  transform: rotate(-3deg);
}

.gallery-tile-grease-yearbook .gallery-slot-label {
  color: #27384f;
  letter-spacing: 0.18em;
}

.grease-yearbook-intro h3 {
  margin: 0 0 14px;
  color: #18202a;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.08;
}

.grease-yearbook-intro p:last-child {
  color: rgba(24, 32, 42, 0.78);
}

.gallery-tile-grease-yearbook .grease-yearbook-intro p {
  color: rgba(24, 32, 42, 0.78);
}

.grease-yearbook-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.grease-yearbook-card {
  background: rgba(246, 244, 239, 0.86);
  border: 1px solid rgba(88, 97, 111, 0.18);
  overflow: hidden;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.grease-yearbook-card-banner {
  grid-column: 1 / -1;
}

.grease-yearbook-card-banner .gallery-media {
  aspect-ratio: 12 / 5;
  background: rgba(232, 229, 223, 0.9);
  padding: 10px;
}

.grease-yearbook-card-banner .gallery-media img {
  object-fit: cover;
  object-position: center 24%;
}

.grease-yearbook-card-portrait .gallery-media {
  aspect-ratio: 3 / 4;
  background: rgba(232, 229, 223, 0.9);
  padding: 8px;
}

.grease-yearbook-card-landscape .gallery-media {
  aspect-ratio: 5 / 3;
  background: rgba(232, 229, 223, 0.9);
  padding: 8px;
}

.grease-yearbook-card-square .gallery-media {
  aspect-ratio: 1 / 1;
  background: rgba(232, 229, 223, 0.9);
  padding: 8px;
}

.grease-yearbook-card .gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.grease-yearbook-card-table .gallery-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 4;
}

.grease-yearbook-card-table .gallery-media img {
  object-fit: contain;
  object-position: center center;
}

.grease-yearbook-card .gallery-caption p:last-child {
  color: rgba(27, 34, 43, 0.8);
}

.gallery-snf-finger-point {
  object-position: center 16%;
}

.gallery-snf-invite {
  object-position: center 28%;
}

.gallery-snf-hero-crowd {
  object-position: center 24%;
}

.gallery-snf-busta {
  object-position: center 26%;
}

.gallery-snf-cheek {
  object-position: center 22%;
}

.gallery-snf-hand-air {
  object-position: center 20%;
}

.gallery-snf-performance {
  object-position: center 30%;
}

.gallery-snf-clock-san-jose {
  object-position: center 18%;
}

.gallery-snf-clock-oc {
  object-position: center 18%;
}

.gallery-caption {
  padding: 18px 18px 20px;
}

.gallery-storyboard-snf .gallery-caption {
  padding-left: 0;
  padding-right: 0;
}

.gallery-slot-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-caption p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.7;
}

.gallery-caption.grease-yearbook-intro p:last-child,
.gallery-caption.grease-yearbook-intro p {
  color: rgba(24, 32, 42, 0.78);
}

.gallery-proof-strip {
  padding: 54px 0 28px;
}

.gallery-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.gallery-faq-section {
  padding: 78px 0 20px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-item[open] {
  border-color: rgba(212, 175, 55, 0.24);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 64px 22px 22px;
  color: #f3eee4;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin: 0;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.pulp-sequence {
  display: grid;
  gap: 42px;
  margin-top: 26px;
}

.pulp-block {
  display: grid;
  gap: 22px;
}

.pulp-block-head {
  max-width: 780px;
}

.pulp-block-head .eyebrow {
  margin-bottom: 14px;
}

.pulp-block-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.pulp-storyboard {
  display: grid;
  gap: 28px;
}

.pulp-storyboard-hero {
  grid-template-columns: 1fr;
  align-items: start;
}

.pulp-storyboard-two-up {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.pulp-storyboard-three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.pulp-storyboard-two-up .gallery-tile-wide:first-child {
  grid-column: 1 / -1;
}

.pulp-video-media {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}

.pulp-video-button,
.pulp-video-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  padding: 0;
  background: #000;
}

.pulp-video-button {
  appearance: none;
  cursor: pointer;
}

.pulp-video-button img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pulp-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gallery-tile[data-slot="PULP_WILTERN_SIDE_STAGE_CURTAIN_INTRO_VIDEO_OPTIONAL"] .video-play {
  left: auto;
  top: auto;
  right: 22px;
  bottom: 22px;
  transform: none;
}

.gallery-tile[data-slot="PULP_JACK_RABBIT_SLIMS_TWIST_CONTEST_VIDEO"] .video-play,
.gallery-tile[data-slot="PULP_WILTERN_SIDE_STAGE_CURTAIN_INTRO_VIDEO_OPTIONAL"] .video-play {
  display: none;
}

.gallery-proof-strip .shell {
  max-width: 980px;
}

.gallery-proof-strip p {
  margin: 0;
  padding: 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151515;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
  line-height: 1.8;
}

.gallery-final-cta {
  padding: 28px 0 90px;
}

.gallery-final-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 34px 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151515;
}

.gallery-final-card .button {
  margin-top: 28px;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.gallery-card p {
  margin: 0;
  padding: 20px;
}

.form-wrap {
  max-width: 760px;
}

.contact-page-layout {
  width: min(calc(100% - 32px), 1160px);
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 40px;
  align-items: start;
}

.contact-main-column > .eyebrow {
  color: var(--gold) !important;
}

.contact-main-column h1 {
  max-width: 740px;
}

.contact-intro-copy {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-intro-copy p {
  margin: 0;
}

.form-sections {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.form-section {
  display: grid;
  gap: 16px;
}

.form-section-primary {
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.form-section h2 {
  margin: 0 0 2px;
  font-family: Inter, system-ui, sans-serif;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.form-section-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.92rem;
  line-height: 1.7;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: rgba(255, 255, 255, 0.42);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-optional {
  color: rgba(255, 255, 255, 0.34);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
}

.field textarea {
  min-height: 168px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid button {
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

.choice-grid button.is-active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.form-disclosure {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.form-disclosure summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  color: rgba(255, 255, 255, 0.92);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.form-disclosure summary::-webkit-details-marker {
  display: none;
}

.form-disclosure summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(-50%);
}

.form-disclosure[open] summary::after {
  content: "−";
}

.form-disclosure-body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
}

.form-disclosure-body .form-section {
  padding-top: 18px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 24px;
  color: #ffb6b6;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.event-router-section,
.promise-section,
.event-page-section,
.event-overview-section,
.contact-support-section,
.faq-page-section {
  padding: 72px 0;
}

.event-router-grid,
.event-overview-grid,
.event-spotlight-grid,
.event-steps,
.contact-support-grid {
  display: grid;
  gap: 24px;
}

.event-router-grid,
.event-overview-grid,
.event-spotlight-grid,
.contact-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-router-section .event-router-grid {
  margin-top: 14px;
}

.event-router-section .section-head {
  margin-bottom: 30px;
}

.event-router-section .section-intro {
  margin-bottom: 28px;
}

.intent-card,
.event-overview-card,
.event-spotlight-card,
.event-step,
.promise-card,
.quote-card,
.contact-support-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
}

.intent-card,
.event-overview-card,
.event-spotlight-card,
.event-step,
.contact-support-card {
  padding: 28px;
}

.intent-card h3,
.event-overview-card h3,
.event-spotlight-card h3,
.event-overview-section h1,
.event-page h1,
.event-page h2,
.event-page h3,
.promise-copy h2,
.contact-support-card h3,
.faq-page-shell h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
}

.intent-card p,
.event-overview-card p,
.event-spotlight-card p,
.event-step p,
.promise-copy p,
.contact-support-card p,
.quote-card p,
.event-page-section p,
.event-page-section li,
.faq-page-intro p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.74;
}

.intent-card .button,
.event-overview-card .button {
  margin-top: 20px;
}

.promise-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.promise-layout,
.event-hero-grid,
.event-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.promise-copy h2,
.event-overview-section h1,
.event-page h1,
.event-page h2,
.faq-page-shell h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.promise-points {
  display: grid;
  gap: 16px;
}

.promise-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.promise-card {
  padding: 24px;
}

.event-hero {
  padding-top: 120px;
  padding-bottom: 56px;
}

.event-page .shell,
.faq-page-shell {
  width: min(calc(100% - 32px), 1160px);
  margin: 0 auto;
}

.event-hero-copy > p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.04rem;
  line-height: 1.8;
}

.event-hero-copy h1 {
  margin: 0 0 18px;
}

.event-hero-actions,
.event-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.event-hero-quicklist,
.contact-quicklist {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.event-hero-quicklist li,
.contact-quicklist li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.64);
}

.event-hero-quicklist li::before,
.contact-quicklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.event-hero-media,
.event-split-media,
.contact-support-media {
  border: 1px solid var(--line);
  overflow: hidden;
}

.event-hero-media img,
.event-split-media img,
.contact-support-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-hero-media {
  aspect-ratio: 4 / 5;
}

.event-page-section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.event-page .eyebrow,
.event-page .quote-card .eyebrow {
  color: var(--gold) !important;
}

.event-page-fact {
  max-width: 860px;
  margin: 0 0 30px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.event-page-fact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.event-page-section-head h2 {
  margin-bottom: 12px;
}

.event-spotlight-card h3,
.event-step h3,
.contact-support-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.event-split {
  align-items: stretch;
}

.event-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-split-copy h2 {
  margin-bottom: 14px;
}

.event-split-media {
  aspect-ratio: 5 / 4;
}

.quote-card {
  padding: 30px;
}

.quote-card .eyebrow {
  margin-bottom: 14px;
}

.quote-card .quote-stars {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.quote-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.7;
}

.quote-attribution {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
}

.event-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-step strong {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.event-overview-grid .event-overview-card {
  display: flex;
  flex-direction: column;
}

.intent-card .eyebrow,
.event-overview-card .eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
}

.event-overview-card p:last-of-type {
  margin-bottom: 0;
}

.faq-page-shell {
  padding-top: 120px;
  padding-bottom: 60px;
}

.faq-page-intro {
  max-width: 840px;
  margin-bottom: 34px;
}

.faq-page-intro p.eyebrow {
  color: var(--gold) !important;
}

.contact-support-card h3 {
  margin-bottom: 12px;
}

.contact-support-card {
  height: 100%;
}

.contact-side-column {
  padding-top: 76px;
}

.contact-note {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
}

.testimonial-inline {
  margin-top: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.testimonial-inline p {
  margin: 0;
}

.testimonial-inline strong {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.testimonial-inline blockquote {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.74;
}

.testimonial-inline .quote-stars {
  margin: 12px 0 0;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.testimonial-inline cite {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

.form-sections > .button.button-lg {
  margin-top: 2px;
}

.event-type-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  padding: 15px 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (min-width: 901px) {
  .pulp-storyboard-three-up .gallery-tile[data-slot="PULP_WIDE_CHARACTER_MOMENT_TEMP"] {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .promise-layout,
  .event-hero-grid,
  .event-split,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .event-router-grid,
  .event-overview-grid,
  .event-spotlight-grid,
  .contact-support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .video-layout,
  .artist-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell,
  .stats-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .stat-dot {
    display: none;
  }

  .act-feature-card,
  .acts-grid {
    grid-template-columns: 1fr;
  }

  .gallery-storyboard-snf,
  .gallery-storyboard-grease {
    grid-template-columns: 1fr;
  }

  .event-router-grid,
  .event-overview-grid,
  .event-spotlight-grid,
  .contact-support-grid {
    grid-template-columns: 1fr;
  }

  .contact-side-column {
    padding-top: 0;
  }

  .pulp-storyboard-hero,
  .pulp-storyboard-two-up,
  .pulp-storyboard-three-up {
    grid-template-columns: 1fr;
  }

  .grease-yearbook-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grease-yearbook-card-banner {
    grid-column: 1 / -1;
  }

  .gallery-tile-featured-vertical,
  .gallery-tile-wide {
    grid-row: auto;
    grid-column: auto;
  }

}

@media (max-width: 767px) {
  .site-nav a:not(.button) {
    display: none;
  }

  .gallery-faq-section {
    padding: 58px 0 12px;
  }

  .faq-item summary {
    padding: 18px 52px 18px 18px;
    font-size: 0.98rem;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .gallery-tile-grease-yearbook {
    padding: 18px;
  }

  .grease-yearbook-grid {
    grid-template-columns: 1fr;
  }

  .grease-yearbook-card-banner {
    grid-column: auto;
  }

  .grease-yearbook-card-banner .gallery-media {
    aspect-ratio: 32 / 15;
    padding: 4px;
  }

  .grease-yearbook-card-banner .gallery-media img {
    object-fit: contain;
    object-position: center center;
  }

  .gallery-tile-grease-yearbook::before {
    inset: 10px;
  }

  .gallery-tile-grease-yearbook::after {
    width: 120px;
    height: 42px;
    right: 18px;
    top: 16px;
  }

  .hero-shell {
    min-height: min(100svh, 840px);
    padding-top: 112px;
    padding-bottom: 118px;
  }

  .hero h1 {
    line-height: 1.02;
    letter-spacing: 0.014em;
    max-width: 300px;
  }

  .hero-copy {
    margin-bottom: 94px;
  }

  .hero-body {
    max-width: 320px;
    margin-top: 18px;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button-lg,
  .button-gold,
  .button-ghost {
    padding: 15px 22px;
    font-size: 0.78rem;
  }

  .stats-grid {
    gap: 14px;
    padding: 20px 0;
  }

  .hero-proof {
    bottom: 42px;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 8px;
    width: min(calc(100% - 24px), 390px);
  }

  .hero-proof .stat-item strong,
  .hero-proof .stat-item span {
    font-size: 0.64rem;
    letter-spacing: 0.15em;
  }

  .hero-chevron {
    bottom: 12px;
  }

  .logo-row {
    margin-top: 34px;
    gap: 8px 0;
    max-width: 274px;
  }

  .logo-cell {
    min-height: 78px;
  }

  .page-hero,
  .content-page,
  .acts-section,
  .artist-section,
  .video-section {
    padding-top: 110px;
  }

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

  .form-section-primary {
    padding: 22px;
  }

  .form-disclosure summary,
  .form-disclosure-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .form-disclosure summary {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .form-disclosure summary::after {
    right: 18px;
  }

  .video-copy .button {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-hero {
    padding-bottom: 24px;
  }

  .gallery-video-section {
    padding-top: 0;
  }

  .gallery-video-section .video-layout {
    margin-top: 12px;
  }

  .gallery-hero-copy {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .gallery-caption {
    padding: 16px;
  }

  .gallery-media-placeholder {
    min-height: 220px;
    font-size: 0.72rem;
    padding: 22px;
  }

  .gallery-proof-strip p,
  .gallery-final-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .event-router-section,
  .promise-section,
  .event-page-section,
  .event-overview-section,
  .contact-support-section,
  .faq-page-section {
    padding: 54px 0;
  }

  .event-hero {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .event-hero-copy > p,
  .event-page-section p,
  .event-page-section li,
  .faq-page-intro p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .event-hero-media {
    aspect-ratio: 5 / 4;
  }

  .event-hero-actions,
  .event-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .event-hero-actions .button,
  .event-cta-row .button {
    width: 100%;
  }

  .quote-card,
  .intent-card,
  .event-overview-card,
  .event-spotlight-card,
  .event-step,
  .contact-support-card {
    padding: 22px;
  }
}
