:root {
  --red: #B11226;
  --deep-red: #4A0712;
  --black: #07070A;
  --cream: #F8F4EF;
  --gold: #D6A84F;
  --warm-gold: #D6A84F;
  --stone: #B8AFA8;
  --charcoal: #07070A;
  --white: #FFFFFF;
  --ink: #F8F4EF;
  --muted: rgba(248, 244, 239, 0.72);
  --surface: #07070A;
  --surface-soft: #16070D;
  --line: rgba(248, 244, 239, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--charcoal);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(20px, 7vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(177, 18, 38, 0.94);
  border-bottom: 1px solid rgba(201, 164, 92, 0.26);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  padding-block: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: clamp(210px, 21vw, 330px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 7px;
  background: rgba(74, 7, 18, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.site-nav a {
  border-radius: 12px;
  padding: 13px 19px;
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 24px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-nav .nav-cta {
  min-height: 54px;
  margin-left: clamp(12px, 2vw, 28px);
  padding-inline: 30px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(184, 32, 37, 0.32);
}

.button-light {
  background: rgba(7, 7, 10, 0.44);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    url("assets/patterns/hero-pattern.png"),
    var(--red);
  background-size: 340px 340px, auto;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.05), transparent 28rem),
    linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 142px 0 76px;
  text-align: center;
}

.hero-logo {
  width: min(680px, 86vw);
  margin: 0 auto;
  filter: drop-shadow(0 20px 46px rgba(67, 0, 8, 0.22));
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(34px, 5vw, 54px);
}

.intro-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  padding: 22px clamp(20px, 4vw, 56px);
  background: var(--charcoal);
  color: var(--white);
  border-block: 1px solid rgba(201, 164, 92, 0.22);
  font-weight: 900;
  text-align: center;
}

.intro-strip span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 26px;
  border-radius: 50%;
  background: var(--warm-gold);
  vertical-align: middle;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 4vw, 56px);
}

.page-main {
  padding-top: 108px;
}

.page-hero {
  padding: clamp(92px, 12vw, 150px) clamp(20px, 4vw, 56px) clamp(52px, 8vw, 90px);
  color: var(--white);
  background:
    url("assets/patterns/hero-pattern.png"),
    var(--deep-red);
  background-size: 300px 300px, auto;
}

.page-hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 38px;
  align-items: end;
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.page-nav-note {
  justify-self: end;
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(7, 7, 10, 0.22);
  backdrop-filter: blur(10px);
}

.page-nav-note h2 {
  margin: 0 0 10px;
  color: var(--warm-gold);
  font-size: 24px;
  letter-spacing: 0.02em;
}

.page-nav-note p {
  font-size: 15px !important;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.split {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: 36px;
  text-align: left;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Raleway", "Montserrat", sans-serif;
  line-height: 0.98;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(40px, 5.4vw, 82px);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
}

.events {
  background:
    radial-gradient(circle at 8% 8%, rgba(184, 32, 37, 0.22), transparent 24rem),
    radial-gradient(circle at 92% 46%, rgba(74, 7, 18, 0.38), transparent 28rem),
    var(--surface);
}

.event-band {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.event-band + .event-band {
  margin-top: 48px;
}

.event-band-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.event-band-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 52px);
}

.event-grid,
.archive-grid,
.services-grid,
.about-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.event-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 20px;
}

.event-card,
.service-card,
.archive-grid article,
.about-notes article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(184, 32, 37, 0.08), rgba(255, 255, 255, 0.012)), var(--surface-soft);
  box-shadow: var(--shadow);
}

.event-card {
  overflow: hidden;
}

.event-image {
  display: block;
  min-height: 260px;
  background:
    radial-gradient(circle at 28% 24%, rgba(230, 200, 120, 0.85), transparent 16%),
    linear-gradient(135deg, rgba(177, 18, 38, 0.9), rgba(7, 7, 10, 0.96));
}

.event-card.feature .event-image {
  min-height: 360px;
}

.event-image.starlight {
  background-image:
    linear-gradient(180deg, rgba(7, 7, 10, 0.12), rgba(7, 7, 10, 0.82)),
    url("starlight-cinema/assets/hero.png");
  background-size: cover;
  background-position: center;
}

.event-image.private {
  background:
    radial-gradient(circle at 70% 20%, rgba(248, 244, 239, 0.86), transparent 12%),
    radial-gradient(circle at 28% 80%, rgba(230, 200, 120, 0.52), transparent 18%),
    linear-gradient(145deg, #B11226 0%, #4A0712 48%, #07070A 100%);
}

.event-content {
  padding: 26px;
}

.event-kicker {
  color: var(--warm-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card p,
.service-card p,
.archive-grid p,
.about-panel p,
.about-notes p {
  color: var(--muted);
}

.event-content > a,
.event-actions > a:not(.button) {
  display: inline-flex;
  margin-top: 10px;
  color: var(--warm-gold);
  font-weight: 900;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 12px;
}

.event-actions > a:not(.button) {
  margin-top: 0;
}

.event-actions .button {
  min-height: 42px;
  padding-inline: 18px;
  color: var(--white);
  font-size: 14px;
}

.archive-grid {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--gold) rgba(248, 244, 239, 0.08);
  gap: 18px;
  padding: 2px 4px 18px;
}

.archive-grid article,
.service-card,
.about-notes article {
  padding: 26px;
}

.archive-grid article {
  flex: 0 0 min(360px, 86vw);
  scroll-snap-align: start;
}

.archive-grid span,
.card-number {
  display: block;
  margin-bottom: 38px;
  color: var(--warm-gold);
  font-weight: 900;
}

.services {
  background:
    radial-gradient(circle at 10% 12%, rgba(184, 32, 37, 0.2), transparent 22rem),
    linear-gradient(180deg, #07070A, #18070D);
}

.services-grid {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--gold) rgba(248, 244, 239, 0.08);
  gap: 18px;
  padding: 2px 4px 18px;
}

.service-card {
  flex: 0 0 min(340px, 86vw);
  min-height: 270px;
  scroll-snap-align: start;
}

.service-card:nth-child(2) {
  border-color: rgba(201, 164, 92, 0.42);
  box-shadow: 0 18px 52px rgba(201, 164, 92, 0.12);
}

.showcase {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 4vw, 56px);
  background:
    radial-gradient(circle at 88% 8%, rgba(184, 32, 37, 0.2), transparent 22rem),
    var(--charcoal);
  color: var(--white);
}

.showcase-copy {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.showcase-copy h2 {
  max-width: 820px;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--gold) rgba(248, 244, 239, 0.08);
  gap: 16px;
  padding: 2px 4px 18px;
}

.gallery-item {
  position: relative;
  flex: 0 0 min(380px, 84vw);
  height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.gallery-item.large {
  flex-basis: min(560px, 88vw);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 10, 0.74), transparent 58%);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
  font-weight: 900;
}

.glow-gold {
  background:
    radial-gradient(circle at 55% 33%, rgba(248, 244, 239, 0.9), transparent 15%),
    linear-gradient(145deg, #D6A84F, #07070A);
}

.glow-red {
  background:
    radial-gradient(circle at 36% 28%, rgba(230, 200, 120, 0.78), transparent 14%),
    linear-gradient(145deg, #B11226, #07070A);
}

.glow-black {
  background:
    radial-gradient(circle at 52% 32%, rgba(217, 166, 161, 0.78), transparent 12%),
    linear-gradient(145deg, #07070A, #4A0712);
}

.glow-cream {
  background:
    radial-gradient(circle at 42% 30%, rgba(184, 32, 37, 0.52), transparent 16%),
    linear-gradient(145deg, #4A0712, #07070A);
}

.about {
  background:
    radial-gradient(circle at 90% 16%, rgba(184, 32, 37, 0.16), transparent 20rem),
    var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.about-panel {
  border-left: 6px solid var(--gold);
  padding: clamp(32px, 5vw, 56px);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.about-notes {
  display: grid;
  gap: 16px;
}

.about-notes article {
  min-height: 150px;
}

.private-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: clamp(52px, 7vw, 84px) clamp(20px, 8vw, 104px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(177, 18, 38, 0.96), rgba(74, 7, 18, 0.94)),
    url("assets/patterns/hero-pattern.png");
  background-size: auto, 260px 260px;
}

.private-callout h2 {
  max-width: 780px;
}

.private-callout p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.private-callout .button-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 16px 34px rgba(2, 6, 13, 0.22);
}

.contact {
  background:
    radial-gradient(circle at 12% 16%, rgba(184, 32, 37, 0.18), transparent 22rem),
    var(--charcoal);
}

.contact-form {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--charcoal);
  background: rgba(248, 244, 239, 0.96);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: start;
}

.contact-card {
  width: min(980px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

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

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 34px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: var(--charcoal);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .event-grid,
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card.feature,
  .about-panel {
    grid-column: 1 / -1;
  }
  .private-callout,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(2, 6, 13, 0.36);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 12px;
    background: rgba(74, 7, 18, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .section-heading.split,
  .page-hero-inner,
  .event-grid,
  .about-grid,
  .contact-card,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .page-nav-note {
    justify-self: stretch;
  }

  .event-band-heading {
    display: block;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 116px;
  }

  .intro-strip {
    display: grid;
  }

  .intro-strip span::after {
    display: none !important;
  }
}
