:root {
  --paper: #f3ecdf;
  --ink: #221f1c;
  --curtain: #c24a2c;
  --brass: #b8923f;
  --sage: #5e7a6e;
  --theater: #3b1410;
  --soft: rgba(34, 31, 28, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(184, 146, 63, 0.11), transparent 24rem),
    linear-gradient(90deg, rgba(34, 31, 28, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 72px 72px, auto;
  font-family: Inter, Public Sans, system-ui, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  mix-blend-mode: multiply;
  background-image:
    repeating-radial-gradient(circle at 18% 20%, rgba(34, 31, 28, 0.13) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px 7px);
}

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

a {
  color: inherit;
}

.curtain {
  position: fixed;
  inset: 0;
  z-index: 90;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent 18%, rgba(255, 255, 255, 0.06) 35%, transparent 62%, rgba(0, 0, 0, 0.18)),
    var(--theater);
  transform-origin: top;
  animation: curtain-open 1.15s cubic-bezier(0.76, 0, 0.24, 1) 0.25s forwards;
}

@keyframes curtain-open {
  to {
    transform: translateY(-101%);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fffaf1;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(243, 236, 223, 0.97);
  box-shadow: 0 1px 0 rgba(34, 31, 28, 0.12);
}

.brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  line-height: 0.86;
  isolation: isolate;
}

.brand-word {
  display: inline-flex;
  gap: 0.045em;
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-word i {
  display: inline-block;
  font-style: normal;
  transform-origin: 50% 80%;
  animation: logo-arrive 850ms cubic-bezier(0.22, 1, 0.36, 1) both, logo-breathe 4.8s ease-in-out infinite;
}

.brand-word i:nth-child(1) {
  animation-delay: 0.18s, 1.3s;
}

.brand-word i:nth-child(2) {
  animation-delay: 0.26s, 1.42s;
}

.brand-word i:nth-child(3) {
  animation-delay: 0.34s, 1.54s;
}

.brand-word i:nth-child(4) {
  animation-delay: 0.42s, 1.66s;
}

.brand:hover .brand-word i {
  animation-play-state: running;
}

.brand:hover .brand-word i:nth-child(1) {
  transform: translateY(-2px) rotate(-2deg);
}

.brand:hover .brand-word i:nth-child(2) {
  transform: translateY(1px) rotate(2deg);
}

.brand:hover .brand-word i:nth-child(3) {
  transform: translateY(-1px) rotate(-1deg);
}

.brand:hover .brand-word i:nth-child(4) {
  transform: translateY(2px) rotate(2deg);
}

.brand small {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.62em;
  animation: studio-fade 900ms ease 0.68s both;
}

.brand small::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: calc(100% - 0.62em);
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.82;
  transform: scaleX(0);
  transform-origin: left;
  animation: studio-line 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}

.brand::after {
  position: absolute;
  right: -12px;
  bottom: 4px;
  z-index: -1;
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  content: "";
  opacity: 0.22;
  transform: rotate(18deg) scale(0.85);
  animation: logo-mark 3.8s ease-in-out 1.2s infinite;
}

@keyframes logo-arrive {
  from {
    opacity: 0;
    transform: translateY(12px) rotate(5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  48% {
    transform: translateY(-1px) rotate(-0.8deg);
  }
}

@keyframes studio-fade {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes studio-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes logo-mark {
  0%,
  100% {
    opacity: 0.18;
    transform: rotate(18deg) scale(0.85);
  }
  50% {
    opacity: 0.4;
    transform: rotate(26deg) scale(1);
  }
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 27px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

.nav-pill {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: #e2bd82;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  align-items: center;
  gap: clamp(28px, 7vw, 96px);
  overflow: hidden;
  color: #fffaf1;
  padding: 116px clamp(18px, 5vw, 72px) 72px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  filter: saturate(0.86) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(34, 31, 28, 0.78), rgba(34, 31, 28, 0.22) 48%, rgba(34, 31, 28, 0.74)),
    linear-gradient(0deg, rgba(34, 31, 28, 0.35), transparent 56%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow,
.section-kicker,
.audience-age {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.quote,
.section-heading h2,
.signup h2,
.pricing h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 720;
  line-height: 0.92;
}

.hero h1 {
  max-width: 620px;
  margin: 8px 0 18px;
  font-size: clamp(4.6rem, 8.4vw, 8.8rem);
  font-style: normal;
  letter-spacing: 0;
}

.hero h1 span {
  color: #f7d7a1;
  font-weight: 760;
  text-shadow: 0 1px 0 rgba(255, 250, 241, 0.28);
}

.hero-copy {
  max-width: 360px;
  margin: 0 0 28px;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  border-color: var(--curtain);
  color: #fffaf1;
  background: var(--curtain);
}

.button-ghost {
  color: #fffaf1;
  background: transparent;
  border-color: transparent;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 520px;
  margin-top: 30px;
}

.hero-styles a {
  padding: 8px 12px;
  border: 1px solid rgba(226, 189, 130, 0.56);
  border-radius: 999px;
  color: #fff4df;
  background: rgba(34, 31, 28, 0.45);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-aside {
  position: relative;
  z-index: 2;
  max-width: 360px;
  justify-self: end;
  margin-top: 16vh;
}

.hero-aside p {
  margin: 0;
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
}

.hero-aside span {
  display: block;
  margin-top: 28px;
  color: #e2bd82;
  font-family: Caveat, cursive;
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  transform: rotate(-6deg);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  z-index: 2;
  font-family: Caveat, cursive;
  font-size: 1.55rem;
  text-decoration: none;
}

.poster-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 3fr;
  gap: 10px;
  padding: 10px;
  background: #fffaf1;
  transition: grid-template-columns 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.poster-grid:has(.poster-card:nth-child(1):hover) {
  grid-template-columns: 1.8fr 0.78fr 0.78fr 2.64fr;
}

.poster-grid:has(.poster-card:nth-child(2):hover) {
  grid-template-columns: 0.78fr 1.8fr 0.78fr 2.64fr;
}

.poster-grid:has(.poster-card:nth-child(3):hover) {
  grid-template-columns: 0.78fr 0.78fr 1.8fr 2.64fr;
}

.poster-card,
.about-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #fffaf1;
  background: var(--ink);
}

.poster-card {
  grid-column: auto;
}

.about-tile {
  grid-column: auto;
}

.poster-card img,
.about-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
  transition: transform 700ms ease, filter 500ms ease;
}

.poster-card:nth-child(2) img {
  object-position: 62% center;
}

.poster-card:nth-child(3) img {
  object-position: 52% center;
}

.poster-card::after,
.about-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(34, 31, 28, 0.84), rgba(34, 31, 28, 0.08) 62%);
  transition: background 420ms ease;
}

.poster-card:hover img,
.about-tile:hover img {
  transform: scale(1.045);
  filter: saturate(0.9) contrast(1.08);
}

.poster-card:hover::after {
  background: linear-gradient(0deg, rgba(34, 31, 28, 0.88), rgba(34, 31, 28, 0.15) 54%);
}

.poster-card div,
.about-tile div {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.poster-card {
  display: grid;
  align-items: end;
  grid-column: auto;
}

.poster-card h2,
.about-tile h2 {
  margin: 0 0 9px;
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.poster-card p,
.about-tile p {
  max-width: 350px;
  margin: 0 0 18px;
}

.poster-card p,
.poster-card a {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.poster-card:hover p,
.poster-card:hover a,
.poster-card:focus-within p,
.poster-card:focus-within a {
  opacity: 1;
  transform: translateY(0);
}

.poster-card a,
.about-tile a {
  color: #f2d5b5;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.about-tile {
  display: grid;
  align-items: center;
}

.about-tile::after {
  background: linear-gradient(90deg, rgba(34, 31, 28, 0.58), rgba(34, 31, 28, 0.92) 58%);
}

.about-tile img {
  object-position: 38% center;
}

.about-tile div {
  justify-self: end;
  width: min(430px, 52%);
}

.proof-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}

.proof-row::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(184, 146, 63, 0.18), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 250, 241, 0.08) 0 1px, transparent 1px 24px);
}

.proof-item {
  position: relative;
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(24px, 3vw, 38px);
  color: #fffaf1;
  text-align: left;
  isolation: isolate;
  transition: background 280ms ease, transform 280ms ease;
}

.proof-item::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-right: 1px solid rgba(255, 250, 241, 0.13);
  background:
    linear-gradient(155deg, transparent 0 54%, rgba(194, 74, 44, 0.28) 54% 55%, transparent 55%),
    rgba(255, 250, 241, 0.03);
}

.proof-item:nth-child(2)::after {
  background:
    linear-gradient(155deg, transparent 0 48%, rgba(94, 122, 110, 0.38) 48% 49%, transparent 49%),
    rgba(255, 250, 241, 0.05);
}

.proof-item:nth-child(3)::after {
  background:
    linear-gradient(155deg, transparent 0 58%, rgba(184, 146, 63, 0.34) 58% 59%, transparent 59%),
    rgba(255, 250, 241, 0.03);
}

.proof-item:hover {
  background: rgba(255, 250, 241, 0.07);
  transform: translateY(-4px);
}

.proof-item .notation-mark {
  width: 58px;
  height: 26px;
  color: #e2bd82;
}

.proof-item strong {
  max-width: 230px;
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-item p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.95rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(86px, 12vw, 150px) clamp(18px, 4vw, 40px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--curtain);
}

.section-kicker.light {
  color: #f3d7bc;
}

.notation-mark {
  width: 34px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
}

.notation-mark path {
  stroke-dasharray: 86;
  stroke-dashoffset: 86;
}

.reveal.is-visible .notation-mark path,
.is-visible .notation-mark path {
  animation: notation-draw 720ms ease-out 110ms forwards;
}

@keyframes notation-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.62fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  margin-top: 34px;
}

.quote {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-style: italic;
}

.hand-note {
  display: inline-block;
  margin: 18px 0 0 16%;
  color: var(--sage);
  font-family: Caveat, cursive;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  transform: rotate(-3deg);
}

.pin-photo {
  position: relative;
  margin: 0;
  transform: rotate(2deg);
}

.pin-photo::before {
  position: absolute;
  top: -13px;
  left: 23%;
  width: 86px;
  height: 24px;
  content: "";
  background: rgba(184, 146, 63, 0.48);
  transform: rotate(-8deg);
}

.pin-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 70% center;
  clip-path: polygon(2% 0, 100% 3%, 96% 100%, 0 96%);
  filter: saturate(0.88) contrast(1.02);
}

.pin-photo figcaption {
  margin-top: 10px;
  font-family: Caveat, cursive;
  font-size: 1.3rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(52px, 8vw, 92px);
}

.value-item img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.value-item:nth-child(1) img {
  object-position: 52% 58%;
  clip-path: polygon(0 5%, 98% 0, 100% 92%, 6% 100%);
}

.value-item:nth-child(2) img {
  object-position: 48% center;
  clip-path: polygon(4% 0, 100% 6%, 95% 100%, 0 96%);
}

.value-item:nth-child(3) img {
  object-position: 50% center;
  clip-path: polygon(0 0, 96% 4%, 100% 100%, 3% 95%);
}

.value-item h2 {
  margin: 18px 0 8px;
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-size: 2.45rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.value-item p {
  margin: 0;
  font-size: 1rem;
}

.discipline-band {
  overflow: hidden;
  padding: 32px 0;
  color: #fffaf1;
  background: var(--ink);
}

.discipline-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 72px);
  color: #fffaf1;
  background:
    linear-gradient(90deg, rgba(59, 20, 16, 0.95), rgba(34, 31, 28, 0.96)),
    var(--theater);
}

.style-photo {
  transform: rotate(-1.5deg);
}

.style-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 44% center;
  clip-path: polygon(0 3%, 97% 0, 100% 94%, 4% 100%);
  filter: saturate(0.8) contrast(1.08);
}

.style-copy h2 {
  max-width: 760px;
  margin: 16px 0 28px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3.1rem, 7vw, 7rem);
  font-style: italic;
  line-height: 0.92;
}

.style-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.style-list span {
  padding: 10px 14px;
  border: 1px solid rgba(226, 189, 130, 0.48);
  color: #fff4df;
  background: rgba(255, 250, 241, 0.06);
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee span {
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.88;
  text-transform: uppercase;
}

.marquee i {
  width: 28px;
  height: 28px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  transform: skewX(-22deg);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  max-width: 840px;
}

.section-heading h2,
.pricing h2 {
  margin: 16px 0 0;
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  font-style: italic;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.audience-panel {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf1;
  background: var(--ink);
}

.audience-photo {
  position: absolute;
  inset: 0;
}

.audience-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: opacity 420ms ease, transform 900ms ease;
}

.audience-photo .photo-alt {
  opacity: 0;
}

.audience-panel:hover .photo-alt {
  opacity: 1;
}

.audience-panel:hover .audience-photo img {
  transform: scale(1.035);
}

.audience-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(34, 31, 28, 0.86), transparent 62%);
}

.audience-copy {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.audience-copy h3,
.event-copy h2,
.neighborhood h3 {
  margin: 6px 0 10px;
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(3.6rem, 7vw, 6rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.audience-copy p:not(.audience-age) {
  margin: 0 0 16px;
}

.audience-copy strong {
  color: #f2d5b5;
}

.events {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 4vw, 56px);
  color: #fffaf1;
  background: var(--theater);
}

.event-stage {
  position: relative;
  max-width: 1360px;
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.event-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
}

.event-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(59, 20, 16, 0.85), rgba(59, 20, 16, 0.1) 70%);
}

.event-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: clamp(28px, 6vw, 64px);
}

.event-copy p:last-child,
.neighborhood p {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.neighborhood {
  max-width: 960px;
  margin: 44px auto 0;
  border-top: 1px solid rgba(255, 250, 241, 0.28);
  padding-top: 28px;
}

.neighborhood h3 {
  color: #f2d5b5;
}

.ticket-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.ticket {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(34, 31, 28, 0.32);
  background:
    linear-gradient(135deg, rgba(184, 146, 63, 0.11), transparent 42%),
    rgba(255, 250, 241, 0.34);
}

.ticket::before,
.ticket::after {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  content: "";
  background: var(--paper);
  transform: translateY(-50%);
}

.ticket::before {
  left: -16px;
}

.ticket::after {
  right: -16px;
}

.ticket span {
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticket strong {
  display: block;
  margin-top: 38px;
  color: var(--curtain);
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.8;
}

.ticket small {
  font-size: 1.1rem;
}

.pricing-note {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(34, 31, 28, 0.76);
  font-size: 1.08rem;
}

.signup {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
  overflow: hidden;
  padding: clamp(78px, 10vw, 135px) clamp(18px, 5vw, 72px);
  color: #fffaf1;
  background: var(--ink);
}

.signup::before {
  position: absolute;
  inset: -34px 0;
  content: "";
  background:
    linear-gradient(rgba(34, 31, 28, 0.92), rgba(34, 31, 28, 0.92)),
    url("assets/portrait-studio-assis.png") center / cover;
  transform: translateY(var(--signup-bg-y, 0px));
  transition: transform 80ms linear;
}

.signup > * {
  position: relative;
  z-index: 1;
}

.signup h2 {
  margin: 14px 0 18px;
  font-size: clamp(3.1rem, 8vw, 7.8rem);
  font-style: italic;
}

.signup-intro p:last-child {
  max-width: 560px;
  font-size: 1.14rem;
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 250, 241, 0.24);
  background: rgba(243, 236, 223, 0.13);
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: 0;
  padding: 0 12px;
  color: #fffaf1;
  background: rgba(34, 31, 28, 0.42);
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

select option {
  color: var(--ink);
  background: var(--paper);
}

input:focus,
select:focus {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.checkbox,
.signup-form .button,
.form-status {
  grid-column: 1 / -1;
}

.checkbox {
  grid-template-columns: 18px 1fr;
  align-items: start;
  letter-spacing: 0;
  text-transform: none;
}

.checkbox input {
  min-height: auto;
  margin-top: 4px;
}

.signup-form .button {
  width: fit-content;
  border: 0;
  font-size: 1rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: #f2d5b5;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 42px clamp(18px, 5vw, 72px);
  color: #fffaf1;
  background: var(--theater);
  border-top: 1px solid rgba(255, 250, 241, 0.18);
}

.footer p,
.footer a {
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.95rem;
}

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

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

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .hero,
  .poster-grid,
  .proof-row,
  .discipline-showcase,
  .philosophy-grid,
  .values,
  .audience-grid,
  .ticket-row,
  .signup {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    max-width: 520px;
    justify-self: start;
    margin-top: 0;
  }

  .poster-card,
  .about-tile {
    grid-column: 1 / -1;
  }

  .poster-grid:has(.poster-card:nth-child(1):hover),
  .poster-grid:has(.poster-card:nth-child(2):hover),
  .poster-grid:has(.poster-card:nth-child(3):hover) {
    grid-template-columns: 1fr;
  }

  .poster-card p,
  .poster-card a {
    opacity: 1;
    transform: none;
  }

  .about-tile div {
    width: auto;
    justify-self: start;
  }

  .proof-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-panel {
    min-height: 560px;
  }

}

@media (max-width: 620px) {
  .hero {
    min-height: 92svh;
    padding-bottom: 70px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 18vw, 6rem);
  }

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

  .button {
    padding: 0 16px;
  }

  .scroll-cue {
    left: 18px;
    right: auto;
  }

  .value-item img {
    height: 300px;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    min-height: 520px;
  }

  .event-stage {
    min-height: 540px;
  }

  .event-stage img {
    object-position: 55% center;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
