/* ==========================================================================
   Nylux Events — shared stylesheet
   Palette and type from BRAND.md; layout tokens sampled from the hero film.
   ========================================================================== */

:root {
  --paper:  #FBFAF8;
  --teal:   #1F4A52;
  --cream:  #F4EBD6;
  --gold:   #D4A85A;
  --ink:    #0F1E22;
  /* Brand gold is 2.1:1 on paper and 4.4:1 on teal — lifted variant for
     small text on teal; teal itself for anything on a light background. */
  --gold-on-teal: #DDB369;

  --ink-60: rgba(15, 30, 34, .62);
  --ink-38: rgba(15, 30, 34, .38);
  --ink-14: rgba(15, 30, 34, .14);
  --cream-70: rgba(244, 235, 214, .72);
  --cream-22: rgba(244, 235, 214, .22);

  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(20px, 4.2vw, 72px);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --scroll-progress: 0;
}

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

html { background: var(--paper); color: var(--ink); font-family: var(--body); }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; }
img { max-width: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--gutter); top: -60px; z-index: 200;
  padding: 12px 18px; border-radius: 0 0 8px 8px;
  background: var(--teal); color: var(--cream); text-decoration: none;
  transition: top 200ms ease;
}
.skip-link:focus { top: 0; }

/* ---------- type ---------- */
.micro {
  font-family: var(--body);
  font-size: 10.5px; font-weight: 500; line-height: 1.5;
  letter-spacing: .16em; text-transform: uppercase;
}

.h2 {
  margin: 0;
  font-family: var(--display); font-weight: 300;
  font-size: clamp(34px, 4.6vw, 62px);
  letter-spacing: -.015em; line-height: 1.04;
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--teal); }
.band--teal .h2 em,
.page-head--teal .h2 em { color: var(--gold); }

.lede {
  max-width: 46rem; margin: 22px 0 0;
  font-size: clamp(16px, 1.2vw, 19px); color: var(--ink-60);
  text-wrap: pretty;
}
.band--teal .lede,
.page-head--teal .lede { color: var(--cream); opacity: .92; }

.eyebrow { display: block; margin: 0 0 18px; color: var(--ink-60); }
.band--teal .eyebrow,
.page-head--teal .eyebrow { color: var(--gold-on-teal); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 90;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px;
  min-height: 68px;
  padding: max(12px, env(safe-area-inset-top)) var(--gutter) 10px;
}
/* Transparent over the home film; solid everywhere else, since ink on teal
   would otherwise fall below AA. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(251, 250, 248, .94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-14);
  opacity: 0; transition: opacity 320ms ease;
}
.site-header.is-solid::before { opacity: 1; }
body.page--inner .site-header::before { opacity: 1; }

.site-header__brand {
  display: inline-flex; align-items: center; gap: 11px;
  min-height: 44px; text-decoration: none;
}
.site-header__brand img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 1px var(--ink-14);
}
.site-header__brand span { font-family: var(--display); font-size: 19px; letter-spacing: .05em; }

.site-nav { justify-self: center; display: flex; gap: 24px; }
.site-nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--ink-60); text-decoration: none;
  transition: color 220ms ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a[aria-current="page"]::after {
  content: ""; position: absolute; margin-top: 30px;
  width: 14px; height: 1px; background: var(--teal);
}

.header-cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 18px;
  border-radius: 999px; background: var(--teal); color: var(--cream);
  text-decoration: none;
  transition: transform 220ms var(--ease-out);
}
.header-cta:hover { transform: translateY(-2px); }

.nav-toggle {
  display: none; justify-self: end;
  width: 44px; height: 44px; padding: 0;
  border: 0; background: none; color: var(--ink); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- bands ---------- */
main { display: flex; flex-direction: column; }
.band { padding: clamp(76px, 10vw, 140px) var(--gutter); }
.band--paper { background: var(--paper); color: var(--ink); }
.band--cream { background: var(--cream); color: var(--ink); }
.band--teal  { background: var(--teal);  color: var(--cream); }

.page-head { padding: calc(68px + clamp(56px, 8vw, 110px)) var(--gutter) clamp(48px, 6vw, 84px); }
.page-head--teal { background: var(--teal); color: var(--cream); }
.page-head--cream { background: var(--cream); }

.wrap { max-width: 1240px; margin: 0 auto; }
.wrap--narrow { max-width: 800px; margin: 0 auto; }

.section-head {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: end; gap: 40px;
  padding-bottom: 26px; border-bottom: 1px solid var(--ink-14);
}
.band--teal .section-head, .page-head--teal .section-head { border-bottom-color: var(--cream-22); }
.section-head .lede { justify-self: end; margin-top: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 30px; min-height: 54px; padding: 0 24px;
  border-radius: 999px; border: 1px solid var(--teal);
  background: var(--teal); color: var(--cream);
  font-family: var(--body); font-size: 12px; letter-spacing: .16em;
  text-decoration: none; text-transform: uppercase;
  transition: transform 240ms var(--ease-out), background 240ms ease, color 240ms ease;
}
.btn::after { content: "↗"; font-size: 15px; }
.btn:hover { transform: translateY(-2px); background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--onteal { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--onteal:hover { background: var(--cream); border-color: var(--cream); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink-14); }

/* ---------- home: film stage ---------- */
.sequence { position: relative; height: 280vh; background: var(--paper); }
.stage {
  position: sticky; top: 0; width: 100%; height: 100svh;
  overflow: hidden; background: var(--paper); isolation: isolate;
}
#film-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }

/* The film is bright, so copy needs lift rather than shade. */
.stage__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251, 250, 248, .84) 0%, rgba(251, 250, 248, .32) 34%, transparent 58%),
    linear-gradient(0deg, rgba(251, 250, 248, .70) 0%, transparent 34%);
  opacity: var(--scrim-opacity, .72);
  transition: opacity 400ms ease;
}
.stage__wash {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 250, 248, .92) 0%, rgba(251, 250, 248, .44) 26%, transparent 46%);
  opacity: var(--wash-opacity, 0);
  transition: opacity 400ms ease;
}
.stage__grid {
  position: absolute; inset: 0 var(--gutter); z-index: 3; pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg, transparent 0, transparent calc(8.333% - 1px),
    rgba(15, 30, 34, .07) calc(8.333% - 1px), rgba(15, 30, 34, .07) 8.333%);
  mask-image: linear-gradient(180deg, transparent, black 14%, black 82%, transparent);
  opacity: .5;
}

.chapters { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.chapter {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  align-content: center; column-gap: clamp(10px, 1.2vw, 20px);
  padding: 104px var(--gutter) 96px;
  visibility: hidden;
}
.chapter.is-visible { visibility: visible; }
.chapter__copy { position: relative; align-self: center; }

.chapter__eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 20px; color: var(--ink);
}
.chapter__eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 420ms 60ms var(--ease-out);
}
.chapter.is-visible .chapter__eyebrow::before { transform: scaleX(1); }

.reveal { display: block; overflow: hidden; padding-bottom: .1em; }
.reveal > span {
  display: block; transform: translateY(112%);
  transition: transform 460ms var(--ease-out);
}
.chapter__title .reveal:nth-child(2) > span { transition-delay: 60ms; }
.chapter__copy > .reveal:nth-child(3) > span { transition-delay: 60ms; }
.chapter__copy > .reveal:nth-child(4) > span { transition-delay: 110ms; }
.chapter.is-visible .reveal > span { transform: translateY(0); }

.chapter__title {
  margin: 0;
  font-family: var(--display); font-weight: 300;
  font-size: clamp(46px, 6.4vw, 100px);
  letter-spacing: -.018em; line-height: .98;
  text-wrap: balance;
  text-shadow: 0 1px 26px rgba(251, 250, 248, .85);
}
.chapter__title em { font-style: italic; color: var(--teal); }

.chapter__deck {
  max-width: 30rem; margin: 24px 0 0;
  font-size: clamp(16px, 1.25vw, 19px); line-height: 1.5; color: var(--ink-60);
  text-wrap: pretty;
  text-shadow: 0 1px 20px rgba(251, 250, 248, .9);
}

.chapter--hero { align-content: center; }
.chapter--hero .chapter__copy { grid-column: 1 / 9; }
.chapter--hero .chapter__title { font-size: clamp(52px, 8vw, 124px); line-height: .94; }

.chapter--mid { align-content: start; padding-top: 16vh; }
.chapter--mid .chapter__copy { grid-column: 1 / 8; }

.chapter--final { align-content: start; padding-top: 15vh; }
.chapter--final .chapter__copy { grid-column: 1 / 9; }
.chapter--final .btn { pointer-events: auto; margin-top: 28px; }

/* A plain scroll-progress hairline. No counters, no labels. */
.progress {
  position: absolute; inset: auto 0 0; z-index: 8; height: 2px;
  background: var(--ink-14); pointer-events: none;
}
.progress__fill {
  display: block; height: 100%; background: var(--teal);
  transform: scaleX(var(--scroll-progress)); transform-origin: left;
  will-change: transform;
}

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-content: center; justify-items: center;
  padding: var(--gutter);
  background: var(--teal); color: var(--cream);
  transition: clip-path 620ms var(--ease-out), visibility 620ms;
  clip-path: inset(0 0 0 0);
}
.loader.is-done { clip-path: inset(0 0 100% 0); visibility: hidden; }
.loader__logo {
  width: 78px; height: 78px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(212, 168, 90, .55);
}
.loader__word {
  margin: 20px 0 0; font-family: var(--display); font-weight: 300;
  font-size: clamp(30px, 6vw, 52px); letter-spacing: .04em; line-height: 1;
}
.loader__word em { font-style: italic; color: var(--gold); }
.loader__track {
  position: relative; width: min(240px, 60vw); height: 1px; margin-top: 24px;
  overflow: hidden; background: var(--cream-22);
}
.loader__fill {
  position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; padding: 18px 0;
  border-top: 1px solid var(--ink-14); border-bottom: 1px solid var(--ink-14);
  background: var(--cream);
}
.marquee__track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.marquee__group { display: flex; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 14px; padding: 0 22px;
  font-family: var(--display); font-style: italic; font-size: clamp(17px, 1.6vw, 22px);
  color: var(--ink-60); white-space: nowrap;
}
.marquee__item::after { content: "✦"; font-size: 9px; color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- cards / grids ---------- */
.services {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px; margin-top: clamp(40px, 5vw, 68px);
  background: var(--cream-22); border: 1px solid var(--cream-22);
}
.service {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 24px; padding: 32px 28px; background: var(--teal);
  transition: background 300ms ease;
}
.service:hover { background: #24545d; }
.service__n { font-family: var(--display); font-style: italic; font-size: 15px; color: var(--gold-on-teal); }
.service h3 { margin: 10px 0 0; font-family: var(--display); font-weight: 300; font-size: 26px; letter-spacing: .01em; }
.service p { margin: 13px 0 0; font-size: 15px; line-height: 1.55; color: var(--cream-70); }
.service a {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  color: var(--gold-on-teal); text-decoration: none;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}
.service a:hover { color: var(--cream); }

/* package groups on the gallery page */
.pkg-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pkg-nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px;
  border: 1px solid var(--cream-22); border-radius: 999px;
  color: var(--cream); text-decoration: none;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.pkg-nav a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.pkg { scroll-margin-top: 90px; }
.pkg + .pkg { margin-top: clamp(72px, 9vw, 120px); }
.pkg__head {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px; align-items: end;
  padding-bottom: 20px; border-bottom: 2px solid var(--teal);
}
.pkg__title { margin: 8px 0 0; font-family: var(--display); font-weight: 300; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; }
.pkg__count { justify-self: end; color: var(--ink-60); }

.event { padding-top: clamp(40px, 5vw, 64px); }
.event + .event { margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--ink-14); }
.event__head {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px); align-items: start;
}
.event__title { margin: 10px 0 0; font-family: var(--display); font-weight: 300; font-size: clamp(26px, 3.1vw, 40px); line-height: 1.05; letter-spacing: -.01em; }
.event__sub { margin: 9px 0 0; color: var(--ink-60); }
.event__desc { margin: 0; color: var(--ink-60); font-size: 16px; line-height: 1.65; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.tags li {
  padding: 6px 13px; border: 1px solid var(--ink-14); border-radius: 999px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-60);
}

.includes { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.includes li {
  display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: baseline;
  font-size: 15px; color: var(--ink-60);
}
.includes li::before { content: "—"; color: var(--teal); }

.event__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1vw, 14px); margin-top: clamp(24px, 3vw, 42px);
}
.event__grid figure { margin: 0; overflow: hidden; background: var(--cream); }
.event__grid img, .event__grid video {
  display: block; width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 5; transition: transform 700ms var(--ease-out);
}
.event__grid figure:hover img { transform: scale(1.03); }
.event__grid .span-2 { grid-column: span 2; }
.event__grid .span-3 { grid-column: span 3; }
.event__grid .span-6 { grid-column: span 6; }
.event__grid .wide img, .event__grid .wide video { aspect-ratio: 16 / 10; }
.event__grid .span-6 img { aspect-ratio: 21 / 9; }

/* featured teaser on the home page */
.teasers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 1.8vw, 26px); margin-top: clamp(40px, 5vw, 68px);
}
.teaser { display: block; text-decoration: none; color: inherit; }
.teaser figure { margin: 0; overflow: hidden; background: var(--cream); }
.teaser img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.teaser:hover img { transform: scale(1.03); }
.teaser h3 { margin: 16px 0 0; font-family: var(--display); font-weight: 300; font-size: 24px; line-height: 1.15; }
.teaser p { margin: 7px 0 0; color: var(--ink-60); }

.quick-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 44px; }
.quick-links a {
  display: grid; place-items: center; min-height: 116px; padding: 20px;
  border: 1px solid var(--ink-14); background: var(--paper);
  font-family: var(--display); font-size: 24px; text-decoration: none;
  transition: background 240ms ease, border-color 240ms ease;
}
.quick-links a:hover { background: var(--cream); border-color: var(--teal); }

/* ---------- reviews ---------- */
.reviews { columns: 3; column-gap: clamp(14px, 1.6vw, 24px); margin-top: clamp(40px, 5vw, 68px); }
.review {
  break-inside: avoid; margin: 0 0 clamp(14px, 1.6vw, 24px);
  padding: 26px 24px; background: var(--paper); border: 1px solid var(--ink-14);
}
.review blockquote { margin: 0; font-family: var(--display); font-size: 20px; line-height: 1.4; }
.review figcaption {
  margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--ink-14);
  color: var(--ink-60); display: flex; justify-content: space-between; gap: 12px;
}

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.about__media img { display: block; width: 100%; height: auto; border: 1px solid var(--cream-22); }
.about__body p { margin: 0 0 20px; font-size: clamp(16px, 1.2vw, 19px); line-height: 1.65; color: var(--cream-70); }
.about__body p strong { color: var(--cream); font-weight: 500; }
.about__sign { font-family: var(--display); font-style: italic; font-size: 26px; color: var(--gold); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--cream-22); }
.stat b { display: block; font-family: var(--display); font-weight: 300; font-size: clamp(28px, 3vw, 40px); line-height: 1; }
.stat span { display: block; margin-top: 7px; color: var(--cream-70); }

/* ---------- policies ---------- */
.policies { display: grid; gap: 14px; margin-top: clamp(36px, 4.5vw, 60px); }
.policy {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 24px; background: var(--paper); border: 1px solid var(--ink-14);
}
.policy__n {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal); color: var(--cream); font-size: 13px;
}
.policy h3 { margin: 0; font-family: var(--display); font-weight: 400; font-size: 21px; }
.policy p { margin: 7px 0 0; color: var(--ink-60); font-size: 15px; line-height: 1.6; }

/* ---------- enquire ---------- */
.enquire { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: clamp(32px, 5vw, 68px); align-items: start; }
.contact-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 4px; }
.contact-list a, .contact-list span {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--cream); text-decoration: none; font-size: 15px;
}
.contact-list a:hover { color: var(--gold-on-teal); }

.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(244, 235, 214, .07); border: 1px solid var(--cream-22);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field span { color: var(--cream-70); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--cream-22); border-radius: 6px;
  background: rgba(251, 250, 248, .06); color: var(--cream);
  font-family: var(--body); font-size: 15px;
}
.field select option { color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(244, 235, 214, .42); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.form button {
  grid-column: 1 / -1; min-height: 54px; margin-top: 6px;
  border: 0; border-radius: 999px; background: var(--gold); color: var(--ink);
  font-family: var(--body); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer; transition: transform 240ms var(--ease-out);
}
.form button:hover { transform: translateY(-2px); }

/* ---------- footer ---------- */
.site-footer {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  padding: 38px var(--gutter) max(38px, env(safe-area-inset-bottom));
  background: var(--ink); color: rgba(244, 235, 214, .6);
}
.site-footer__brand { display: flex; align-items: center; gap: 11px; color: var(--cream); }
.site-footer__brand img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.site-footer__brand span { font-family: var(--display); font-size: 18px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.site-footer nav a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; }
.site-footer nav a:hover { color: var(--cream); }
.socials { display: flex; gap: 6px; justify-self: end; }
.socials a {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; color: rgba(244, 235, 214, .7);
  transition: color 220ms ease, background 220ms ease;
}
.socials a:hover { color: var(--ink); background: var(--gold); }
.socials svg { width: 17px; height: 17px; }
.site-footer__legal { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(244, 235, 214, .14); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr; }
  .site-nav {
    position: fixed; top: 68px; left: 0; right: 0; z-index: 89;
    /* The header is a grid; without these the panel keeps its track width. */
    width: 100vw; max-width: 100vw; justify-self: stretch;
    display: none; flex-direction: column; gap: 0;
    padding: 8px var(--gutter) 20px;
    background: rgba(251, 250, 248, .98);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ink-14);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { min-height: 52px; font-size: 13px; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .header-cta { display: none; }

  .section-head, .pkg__head { grid-template-columns: 1fr; align-items: start; }
  .section-head .lede, .pkg__count { justify-self: start; margin-top: 14px; }
  .event__head { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; }
  .enquire { grid-template-columns: 1fr; }
  .reviews { columns: 2; }
}

@media (max-width: 780px) {
  :root { --gutter: 20px; }

  .sequence { height: 230vh; }
  .stage__scrim {
    background:
      linear-gradient(180deg, rgba(251, 250, 248, .76), transparent 26%),
      linear-gradient(0deg, rgba(251, 250, 248, .86), transparent 32%);
  }
  .stage__grid { opacity: .3; }

  .chapter {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-content: end; padding: 80px var(--gutter) 92px;
  }
  .chapter__copy,
  .chapter--hero .chapter__copy,
  .chapter--mid .chapter__copy,
  .chapter--final .chapter__copy { grid-column: 1 / 7; }
  .chapter--hero { align-content: center; }
  .chapter--mid, .chapter--final { align-content: start; padding-top: 15vh; }
  .chapter__title { font-size: clamp(38px, 11vw, 58px); }
  .chapter--hero .chapter__title { font-size: clamp(44px, 13vw, 70px); }
  .chapter__deck { max-width: 24rem; margin-top: 16px; font-size: 16px; }

  .event__grid { grid-template-columns: repeat(4, 1fr); }
  .event__grid .span-3 { grid-column: span 4; }
  .event__grid .span-2 { grid-column: span 2; }
  .event__grid .span-6 { grid-column: span 4; }

  .reviews { columns: 1; }
  .form { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; gap: 20px; }
  .site-footer nav { justify-content: flex-start; }
  .socials { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .sequence { height: 100svh; }
  .chapter:not(.chapter--hero) { display: none; }
  .chapter--hero { visibility: visible; }
  .chapter--hero .reveal > span { transform: translateY(0); }
  .chapter--hero .chapter__eyebrow::before { transform: scaleX(1); }
  .progress { display: none; }
  .marquee__track { animation: none; }
  /* The still poster is the finished room, which is busy — give the copy a panel. */
  .chapter--hero .chapter__copy { grid-column: 1 / 8; }
  .stage__scrim {
    opacity: 1;
    background: linear-gradient(90deg,
      rgba(251, 250, 248, .96) 0%, rgba(251, 250, 248, .88) 36%,
      rgba(251, 250, 248, .42) 58%, transparent 78%);
  }
}

/* ---------- hire items ---------- */
.hire-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 3vw, 44px); margin-top: clamp(32px, 4vw, 56px);
}
.hire-item { display: flex; flex-direction: column; }
.hire-item__media { margin: 0; overflow: hidden; background: var(--cream); }
.hire-item__media img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 5; transition: transform 700ms var(--ease-out);
}
.hire-item:hover .hire-item__media img { transform: scale(1.03); }
.hire-item__body {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0; padding-top: 20px; border-top: 1px solid var(--ink-14); margin-top: 18px;
}
.hire-item__title {
  margin: 9px 0 0; font-family: var(--display); font-weight: 300;
  font-size: clamp(22px, 2.2vw, 28px); line-height: 1.1; letter-spacing: -.01em;
}
.hire-item__body p { margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: var(--ink-60); }
.hire-item__variants {
  list-style: none; margin: 14px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hire-item__variants li {
  border: 1px solid rgba(0,0,0,.14); border-radius: 999px;
  padding: 5px 12px; color: var(--ink-60); letter-spacing: .04em;
}
.hire-item__cta {
  display: inline-flex; align-items: center; min-height: 44px; margin-top: 12px;
  color: var(--teal); text-decoration: none;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}
.hire-item__cta:hover { color: var(--ink); }

/* ---------- hire picks on the enquiry form ---------- */
.hire-picks { border: 1px solid var(--cream-22); padding: 18px 18px 20px; margin: 0; }
.hire-picks legend { padding: 0 6px; }
.hire-picks legend span { color: var(--cream-70); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; }
.hire-picks__note { margin: 4px 0 14px; font-size: 13px; line-height: 1.6; color: var(--cream-70); }
.hire-picks__note a { color: var(--gold-on-teal); }
.hire-picks__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 8px 18px; }
.hire-picks__grid label {
  display: flex; align-items: center; gap: 10px; min-height: 40px;
  font-size: 14px; color: var(--cream); cursor: pointer;
}
.hire-picks__grid input { width: 17px; height: 17px; accent-color: var(--gold); flex: none; }
