/* THE CEILING
   Deliberately minimal: black, ivory, restrained bronze.
   No frameworks, no JavaScript dependency, no third-party fonts. */

:root {
  --black: #000000;
  --near-black: #070605;
  --ivory: #eee5d6;
  --soft-ivory: #cfc4b2;
  --bronze: #a47d4d;
  --line: rgba(238, 229, 214, 0.20);
  --line-strong: rgba(238, 229, 214, 0.34);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0,0,0,.88), rgba(0,0,0,0));
}

.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand,
nav a {
  text-decoration: none;
}

.brand {
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: 17px;
  letter-spacing: .27em;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: rgba(238,229,214,.75);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .2s ease;
}

nav a:hover {
  color: var(--ivory);
}

.ticket-link {
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
}


.menu-toggle {
  display: none;
  appearance: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,.22);
  color: var(--ivory);
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--ivory);
  transform: translateX(-50%);
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 74px 0 0;
  z-index: 19;
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 28px 0 40px;
  display: grid;
}

.mobile-menu a {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ivory);
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: clamp(34px, 10vw, 52px);
  line-height: 1;
}

.mobile-menu .mobile-ticket {
  margin-top: 28px;
  padding: 17px 20px;
  border: 1px solid var(--line-strong);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-align: center;
}

body.menu-open {
  overflow: hidden;
}


.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-frame {
  width: min(100vw, 1180px);
  margin: 72px auto 0;
  position: relative;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-frame::before {
  inset: 0;
  box-shadow: inset 0 0 80px 20px #000;
}

.hero-frame::after {
  left: 0;
  right: 0;
  bottom: -2px;
  height: 18%;
  background: linear-gradient(to bottom, transparent, #000);
}

.hero-image {
  width: 100%;
  height: auto;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: rgba(238,229,214,.18);
  overflow: hidden;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 14px;
  background: var(--ivory);
  animation: drift 2s ease-in-out infinite;
}

@keyframes drift {
  0% { transform: translateY(-14px); opacity: 0; }
  25% { opacity: .8; }
  100% { transform: translateY(40px); opacity: 0; }
}

.event,
.statement,

.about {
  padding: 150px 0 165px;
  border-top: 1px solid var(--line);
  background: var(--near-black);
}

.about-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 110px;
  align-items: start;
}

.about-heading h2 {
  font-size: clamp(62px, 8vw, 108px);
}

.about-heading h2 em {
  font-weight: 400;
}

.about-copy {
  max-width: 720px;
  padding-top: 42px;
}

.about-copy p {
  margin: 0 0 34px;
  color: var(--soft-ivory);
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 1.35;
}

.about-copy p:first-child {
  color: var(--ivory);
}

.about-copy em {
  font-style: italic;
}

.credits,
.cast {
  border-top: 1px solid var(--line);
}

.event {
  padding: 150px 0;
}

.event-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 96px;
  align-items: end;
}

.kicker {
  margin: 0 0 24px;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1,
h2,
.statement-copy,
.credit-name,
.cast-name,
.footer-mark {
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  margin: 0;
  font-size: clamp(76px, 11vw, 154px);
  line-height: .81;
  letter-spacing: -.055em;
}

.event-details {
  padding-bottom: 5px;
  color: var(--soft-ivory);
}

.event-details p {
  margin: 0 0 7px;
}

.event-details strong {
  display: inline-block;
  min-width: 60px;
  color: var(--ivory);
  font-weight: 500;
}

.large-detail {
  color: var(--ivory);
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.15;
}

.rule {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}

.button {
  display: inline-block;
  margin-top: 26px;
  padding: 15px 20px;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  color: var(--ivory);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: #000;
}

.statement {
  padding: 160px 0 170px;
}

.statement-inner {
  max-width: 1040px;
}

.statement-copy {
  margin: 0;
  max-width: 1000px;
  color: rgba(238,229,214,.78);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.statement-copy span {
  color: var(--ivory);
}

.statement-copy em {
  font-style: italic;
}


.about {
  padding: 150px 0 165px;
  border-top: 1px solid var(--line);
  background: var(--near-black);
}

.about-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 110px;
  align-items: start;
}

.about-heading h2 {
  font-size: clamp(62px, 8vw, 108px);
}

.about-heading h2 em {
  font-weight: 400;
}

.about-copy {
  max-width: 720px;
  padding-top: 42px;
}

.about-copy p {
  margin: 0 0 34px;
  color: var(--soft-ivory);
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 1.35;
}

.about-copy p:first-child {
  color: var(--ivory);
}

.about-copy em {
  font-style: italic;
}

.credits,
.cast {
  padding: 150px 0 160px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  margin-bottom: 68px;
}

.section-head .kicker {
  margin-bottom: 12px;
}

h2 {
  margin: 0;
  font-size: clamp(64px, 9vw, 118px);
  line-height: .9;
  letter-spacing: -.045em;
}

.credit-rows {
  border-bottom: 1px solid var(--line);
}

.credit-row {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.credit-name {
  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1;
}

.credit-role {
  color: var(--soft-ivory);
  text-align: right;
  font-size: 14px;
  letter-spacing: .02em;
}

.cast {
  background: var(--near-black);
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.cast-person {
  min-height: 145px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.cast-person:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--line);
}

.cast-person:nth-child(even) {
  padding-left: 48px;
}

.cast-name {
  margin: 0 0 5px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.12;
}

.cast-role {
  margin: 0;
  color: var(--bronze);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}


.contact {
  padding: 150px 0 160px;
  border-top: 1px solid var(--line);
  background: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 96px;
  align-items: start;
}

.contact-copy {
  max-width: 560px;
  padding-top: 44px;
}

.contact-copy > p:first-child {
  margin: 0;
  color: var(--soft-ivory);
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.contact-note {
  margin: 26px 0 0;
  max-width: 520px;
  color: rgba(238,229,214,.48);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: .02em;
}

.final-ticket {
  min-height: 82svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.final-art,
.final-overlay {
  position: absolute;
  inset: 0;
}

.final-art {
  background:
    url("./assets/the-ceiling-art.png")
    center 64% / cover no-repeat;
  filter: saturate(.8);
}

.final-overlay {
  background:
    linear-gradient(to right, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 40%, rgba(0,0,0,.23) 72%, rgba(0,0,0,.52) 100%),
    linear-gradient(to bottom, #000 0%, transparent 16%, transparent 82%, #000 100%);
}

.final-content {
  position: relative;
  z-index: 2;
}

.final-content h2 {
  max-width: 800px;
  letter-spacing: .03em;
}

.final-content > p:not(.kicker) {
  max-width: 520px;
  color: var(--soft-ivory);
  font-size: 18px;
}

.button-light {
  background: var(--ivory);
  border-color: var(--ivory);
  color: #000;
}

.button-light:hover {
  background: transparent;
  color: var(--ivory);
}

footer {
  padding: 62px 0 54px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.footer-mark {
  margin: 0 0 9px;
  font-size: 22px;
  letter-spacing: .20em;
}

.fine {
  margin: 0;
  color: rgba(238,229,214,.45);
  font-size: 10px;
  letter-spacing: .04em;
}

.legal-line {
  margin: 10px 0 0;
  max-width: 660px;
  color: rgba(238,229,214,.28);
  font-size: 9px;
  line-height: 1.55;
  letter-spacing: .02em;
}

.equity {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 400px;
}

.equity img {
  width: 38px;
  height: 46px;
  object-fit: contain;
  filter: invert(1);
  opacity: .7;
}


@media (min-width: 701px) and (max-width: 1080px) {
  .wrap {
    width: min(calc(100% - 40px), var(--max));
  }

  .header-inner {
    gap: 20px;
  }

  .brand {
    font-size: 15px;
    letter-spacing: .22em;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .desktop-nav .ticket-link {
    padding: 10px 12px;
  }
}

@media (max-width: 700px) {

  .header-inner {
    height: 74px;
    gap: 16px;
  }

  .brand {
    font-size: 13px;
    letter-spacing: .19em;
    max-width: calc(100% - 64px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  .wrap {
    width: min(calc(100% - 36px), var(--max));
  }

  .header-inner {
    height: 72px;
  }

  .brand {
    font-size: 14px;
  }

  .desktop-nav {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }


.hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-frame {
    width: 100%;
    margin-top: 16px;
  }

  .hero-frame::before {
    box-shadow: inset 0 0 28px 6px #000;
  }

  .scroll-cue {
    display: none;
  }

  .event,
  .statement,
  .about,
  .credits,
  .cast,
  .contact {
    padding: 96px 0;
  }

  .event-grid,
  .section-head,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .event-grid {
    gap: 56px;
  }

  .contact-grid {
    gap: 34px;
  }

  .about-grid {
    gap: 26px;
  }

  .about-copy {
    padding-top: 0;
  }

  .contact-copy {
    padding-top: 0;
  }

  .section-head {
    gap: 10px;
    margin-bottom: 48px;
  }

  h1 {
    font-size: clamp(72px, 23vw, 122px);
  }

  .statement-copy {
    font-size: clamp(36px, 10vw, 62px);
  }

  .credit-row {
    min-height: 90px;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
  }

  .credit-role {
    text-align: left;
  }

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

  .cast-person {
    min-height: auto;
    padding: 27px 0 !important;
    border-right: 0 !important;
  }

  
.contact {
  padding: 150px 0 160px;
  border-top: 1px solid var(--line);
  background: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 96px;
  align-items: start;
}

.contact-copy {
  max-width: 560px;
  padding-top: 44px;
}

.contact-copy > p:first-child {
  margin: 0;
  color: var(--soft-ivory);
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.contact-note {
  margin: 26px 0 0;
  max-width: 520px;
  color: rgba(238,229,214,.48);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: .02em;
}

.final-ticket {
    min-height: 72svh;
  }

  .final-art {
    background-position: 56% center;
  }

  .final-overlay {
    background:
      linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.52)),
      linear-gradient(to bottom, #000, transparent 20%, transparent 78%, #000);
  }

  .footer-inner {
    display: grid;
    gap: 38px;
  }

  .equity {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .kicker {
    font-size: 12px;
  }

  .brand {
    letter-spacing: .20em;
  }

  .ticket-link {
    padding: 10px 11px;
  }

  .hero-frame {
    margin-top: 10px;
  }

  .event,
  .statement,
  .about,
  .credits,
  .cast,
  .contact {
    padding: 78px 0;
  }

  .large-detail {
    font-size: 28px;
  }

  .cast-name {
    font-size: 30px;
  }

  
.contact {
  padding: 150px 0 160px;
  border-top: 1px solid var(--line);
  background: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 96px;
  align-items: start;
}

.contact-copy {
  max-width: 560px;
  padding-top: 44px;
}

.contact-copy > p:first-child {
  margin: 0;
  color: var(--soft-ivory);
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.contact-note {
  margin: 26px 0 0;
  max-width: 520px;
  color: rgba(238,229,214,.48);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: .02em;
}

.final-ticket {
    min-height: 660px;
  }
}

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

  .scroll-cue span {
    animation: none;
  }

  * {
    transition: none !important;
  }
}



@media (max-width: 420px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    font-size: 12px;
    letter-spacing: .16em;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}
