/* reset.css - minimal modern reset. */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html, body { height: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ══════════════════════════════════════════════════════════════════
   Put On Events — Aurochs Design System v4.0 mood: "marquee"
   Built on the 4.0 token spine. This file OVERRIDES the base values;
   it inherits the 4.0 architecture, scales, motion, grain, and a11y.
   Source of truth for the build: copy to site-v2/styles/tokens.css.
   Reference: MCP Workspace/Aurochs/docs/design-system-v4.0.html
   ══════════════════════════════════════════════════════════════════ */

:root,
[data-mood="marquee"] {

  /* ── Grounds (4.0 --bg family; PO = plum-shifted warm-dark) ── */
  --bg:        #241826;   /* the stage (agency au: #0A0908) */
  --bg-warm:   #2F2036;   /* lifted panel: proof blocks, cards, form ground */
  --bg-deep:   #160F19;   /* house-dark: footer, hero scrims, CTA label (PO extension) */

  /* ── Foreground (4.0 --fg family; warm chalk on plum) ── */
  --fg:        #FBF6EA;   /* primary text / marquee fill  (~15:1 AAA) */
  --fg-dim:    #C2B2BE;   /* secondary text               (~9:1 AAA) */
  --fg-faint:  #9A8A96;   /* metadata / captions floor    (~5.2:1 AA) */

  /* ── Gold accent (4.0 --gold; PO = brighter, playful stagelight) ── */
  --gold:      #FFBF5E;   /* THE signature (agency au: #C8963E)  (~10:1) */
  --gold-soft: #FFF0BF;   /* glow: CTA hover, large highlights, numerals (PO extension) */
  --gold-dim:  rgba(255,191,94,0.24);
  --gold-glow: rgba(255,191,94,0.10);
  --cta-primary: #FFBF5E;

  /* ── Borders (4.0) ── */
  --border-subtle: rgba(194,178,190,0.30);
  --border-faint:  rgba(194,178,190,0.18);

  /* ── PO brand accents (blue is a CO-PRIMARY per the original brand; the rest extend base 4.0) ── */
  --blue:      #26B0F8;   /* CO-PRIMARY: the brand energy / wordmark color (~7:1 AA) */
  --electric:  #26B0F8;   /* alias of --blue, for links / interactive text */
  --navy:      #1E3A82;   /* deep brand blue: alt dark ground / deep accent (original style sheet) */
  --punch:     #F28E72;   /* the rare punchline, one per page (~6.5:1 AA) */

  /* ── Status (4.0 --score-*) ── */
  --score-high: #4ADE80;
  --score-mid:  #FBBF24;
  --score-low:  #F43F5E;

  /* ── Type bands (4.0 --font-*; PO overrides display + ui + body) ── */
  --font-display: 'Poppins', system-ui, sans-serif; /* Poppins Heavy (800/900) UPPERCASE = the brand marquee, per the 2020 style sheet + live site (agency au: IvyPresto Display) */
  --font-ui:      'Poppins', system-ui, sans-serif;   /* nav, CTAs, labels (agency au: Halyard Display) */
  --font-body:    'Poppins', system-ui, sans-serif;   /* body (agency au: Halyard Text) */
  --font-mono:    'JetBrains Mono', 'SF Mono', Consolas, monospace; /* spec / credits texture (inherited) */

  /* ── Inherited from 4.0, unchanged ── */
  --space-4:4px;  --space-8:8px;  --space-12:12px; --space-16:16px; --space-20:20px;
  --space-24:24px; --space-32:32px; --space-40:40px; --space-48:48px; --space-64:64px;
  --space-80:80px; --space-120:120px;

  --radius-sm:2px; --radius-md:3px; --radius-lg:4px; --radius-full:9999px;

  --shadow-sm:0 1px 3px rgba(0,0,0,.14);
  --shadow-md:0 2px 12px rgba(0,0,0,.20);
  --shadow-lg:0 8px 32px rgba(0,0,0,.45);

  --ease-out:    cubic-bezier(0.33, 1, 0.68, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --duration-fast:120ms; --duration-base:200ms; --duration-slow:350ms;

  --container-max:1100px;
  --container-padding:80px;
}

/* ── Grain overlay (4.0 signature; warm-theatrical texture) ── */
body::after {
  content:''; position:fixed; inset:0; z-index:9999; pointer-events:none;
  opacity:0.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:256px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

/* global.css - Put On Events site-wide base + layout + shared components.
   Built on tokens.css (Aurochs 4.0 mood: marquee). Component-specific styles
   live in comp-*.css; page-specific in pages-*.css. */

/* ---------- Base ---------- */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.98;
}
h2 { font-weight: 800; }
h1 { font-size: clamp(34px, 6vw, 64px); }
h2 { font-size: clamp(26px, 4vw, 42px); }
h3 { font-size: clamp(20px, 2.6vw, 30px); }

a { color: var(--blue); }
a:hover { text-decoration: underline; text-underline-offset: 0.18em; }

strong { font-weight: 700; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.container-narrow { max-width: 760px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--deep { background: var(--bg-deep); }
.section--raise { background: var(--bg-warm); }
.section--navy { background: var(--navy); }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead { font-size: clamp(19px, 2.2vw, 22px); line-height: 1.5; max-width: 60ch; }
.muted { color: var(--fg-dim); }
.faint { color: var(--fg-faint); }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Buttons (brand pills) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn[disabled], .btn:disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }

.btn--gold { background: var(--gold); color: var(--bg-deep); }
.btn--gold:hover { background: var(--gold-soft); box-shadow: 0 6px 26px rgba(255,191,94,0.32); }
.btn--gold-o { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn--gold-o:hover { background: var(--gold); color: var(--bg-deep); }
.btn--blue { background: var(--blue); color: var(--bg-deep); }
.btn--blue:hover { filter: brightness(1.08); }
.btn--ghost { background: transparent; border-color: var(--border-subtle); color: var(--fg-dim); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { font-size: 13px; padding: 9px 20px; }
.btn--lg { font-size: 17px; padding: 18px 40px; }

/* ---------- Floating-label field (Aurochs pattern) ---------- */
.field { position: relative; flex: 1 1 240px; min-width: 0; margin-bottom: 16px; }
.field__input {
  width: 100%;
  padding: 20px 14px 8px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: var(--fg);
  background: var(--bg-deep);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.18s ease;
}
.field__input::placeholder { color: transparent; }
.field__input:focus { border-color: var(--gold); }
.field__input[aria-invalid="true"] { border-color: var(--punch); }
.field__label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 4px;
  font-size: 15px;
  color: var(--fg-faint);
  background: var(--bg-deep);
  pointer-events: none;
  transition: transform 0.18s ease, font-size 0.18s ease, color 0.18s ease, top 0.18s ease;
}
.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label { top: 0; font-size: 12px; color: var(--gold); }
.field__input:not(:focus):not(:placeholder-shown) + .field__label { color: var(--fg-dim); }
textarea.field__input { min-height: 96px; resize: vertical; padding-top: 22px; }
.field-note { font-size: 13px; color: var(--fg-faint); margin-top: 4px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: -10000px; top: 0; background: var(--gold); color: var(--bg-deep); padding: 12px 16px; z-index: 200; font-weight: 700; }
.skip-link:focus { left: 0; }
.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; }

/* ---------- SpotlightCard (ReactBits port): pointer-tracked gold glow ---------- */
@media (hover: hover) {
  .night-card, .event-type, .host-card, .testimonial { position: relative; overflow: hidden; }
  .night-card::before, .event-type::before, .host-card::before, .testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    background: radial-gradient(
      420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255,191,94,0.08),
      transparent 70%
    );
    pointer-events: none;
    z-index: 0;
  }
  .night-card:hover::before, .event-type:hover::before,
  .host-card:hover::before, .testimonial:hover::before { opacity: 1; }
  .night-card > *, .event-type > *, .host-card > *, .testimonial > * { position: relative; z-index: 1; }
}

/* ---------- Motion: scroll reveal (lights up) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out); }
.reveal.is-revealed { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Staggered child reveals inside revealed sections (card grids) */
.reveal :is(.nights__grid, .testimonials__grid, .event-grid, .host-grid, .gallery) > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}
.reveal.is-revealed :is(.nights__grid, .testimonials__grid, .event-grid, .host-grid, .gallery) > * { opacity: 1; transform: none; }
.reveal :is(.nights__grid, .testimonials__grid, .event-grid, .host-grid, .gallery) > *:nth-child(2) { transition-delay: 90ms; }
.reveal :is(.nights__grid, .testimonials__grid, .event-grid, .host-grid, .gallery) > *:nth-child(3) { transition-delay: 180ms; }
.reveal :is(.nights__grid, .testimonials__grid, .event-grid, .host-grid, .gallery) > *:nth-child(4) { transition-delay: 270ms; }
.reveal :is(.nights__grid, .testimonials__grid, .event-grid, .host-grid, .gallery) > *:nth-child(5) { transition-delay: 360ms; }
.reveal :is(.nights__grid, .testimonials__grid, .event-grid, .host-grid, .gallery) > *:nth-child(6) { transition-delay: 450ms; }
.no-js .reveal :is(.nights__grid, .testimonials__grid, .event-grid, .host-grid, .gallery) > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal :is(.nights__grid, .testimonials__grid, .event-grid, .host-grid, .gallery) > * { opacity: 1 !important; transform: none !important; }
}

/* comp-footer.css - marquee footer. */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-faint);
  padding-block: 48px 24px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.site-footer__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--blue);
}
.site-footer__wordmark span { color: var(--gold); }
.site-footer__tag { color: var(--fg-dim); font-size: 14px; margin-top: 10px; max-width: 34ch; line-height: 1.5; }
.site-footer__nav { display: flex; flex-direction: column; gap: 9px; }
.site-footer__nav a { color: var(--fg-dim); font-size: 14px; }
.site-footer__nav a:hover { color: var(--gold); text-decoration: none; }
.site-footer__contact { display: flex; flex-direction: column; gap: 9px; }
.site-footer__contact a, .site-footer__place { color: var(--fg-dim); font-size: 14px; }
.site-footer__contact a:hover { color: var(--gold); text-decoration: none; }
.site-footer__legal {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-faint);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--fg-faint);
  font-size: 13px;
}
.site-footer__legal a { color: var(--gold); }
/* House lockup [Aurochs]: brackets hold the legal text color, the name takes the link color. */
.site-footer__legal .fbr { color: var(--fg-faint); }
@media (max-width: 700px) { .site-footer__inner { grid-template-columns: 1fr; gap: 24px; } }

/* comp-header.css - marquee header + mobile drawer. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg-deep) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-faint);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; padding-block: 14px; }
.site-header__brand {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--blue);
  line-height: 1;
}
.site-header__brand .on { color: var(--gold); }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 26px; }
.site-nav a { color: var(--fg-dim); font-size: 14px; font-weight: 500; }
.site-nav a:hover, .site-nav a.is-current { color: var(--gold); text-decoration: none; }
.site-header__cta { flex-shrink: 0; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.menu-toggle span { width: 24px; height: 2px; background: var(--fg); display: block; border-radius: 1px; }

.mobile-nav { display: none; }
.mobile-nav:not([hidden]) {
  display: block;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-faint);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; padding-block: 12px 24px; }
.mobile-nav a { display: block; padding: 12px 0; color: var(--fg); font-size: 17px; font-weight: 500; }
.mobile-nav a:hover { color: var(--gold); text-decoration: none; }
.mobile-nav a.btn { display: inline-flex; margin-top: 12px; color: var(--bg-deep); }

@media (max-width: 860px) {
  .site-nav, .site-header__cta { display: none; }
  .menu-toggle { display: flex; }
}

/* pages-home.css - Put On Events home. */

/* ---------- Hero ---------- */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
  background: var(--bg-deep);
  overflow: hidden;
}
.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/images/stage-hero.jpg") center 32% / cover no-repeat;
}
.home-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22,15,25,0.95) 0%, rgba(22,15,25,0.72) 46%, rgba(36,24,38,0.28) 100%),
    radial-gradient(85% 80% at 16% 30%, rgba(255,191,94,0.30), rgba(255,191,94,0) 55%);
}
.home-hero__inner { position: relative; z-index: 2; }
.home-hero__eyebrow { color: var(--gold-soft); }
.home-hero__title {
  font-size: clamp(38px, 6.5vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  margin-top: 14px;
  max-width: 13ch;
  text-wrap: balance;
}
.home-hero__title .hl { color: var(--gold); text-shadow: 0 0 38px rgba(255,191,94,0.42); }
.home-hero__sub { font-size: clamp(17px, 2.1vw, 21px); line-height: 1.5; margin: 20px 0 28px; max-width: 46ch; }

/* ---------- Hero entrance (lights warming up; armed by JS, no-js unaffected) ---------- */
.home-hero .fx-word { display: inline-block; }
.home-hero.fx-armed .home-hero__eyebrow,
.home-hero.fx-armed .home-hero__sub,
.home-hero.fx-armed .cta-row {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.home-hero.fx-armed .home-hero__eyebrow { transition-delay: 40ms; }
.home-hero.fx-armed .home-hero__sub { transition-delay: 640ms; }
.home-hero.fx-armed .cta-row { transition-delay: 790ms; }
.home-hero.fx-armed .fx-word {
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.home-hero.fx-play .home-hero__eyebrow,
.home-hero.fx-play .home-hero__sub,
.home-hero.fx-play .cta-row,
.home-hero.fx-play .fx-word { opacity: 1; transform: none; }

/* ---------- Spotlight drift (slow warm sweep over the room) ---------- */
.home-hero__scrim::after {
  content: '';
  position: absolute;
  inset: -22%;
  background: radial-gradient(38% 32% at 24% 34%, rgba(255,191,94,0.17), transparent 62%);
  mix-blend-mode: screen;
  animation: spotlight-drift 17s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes spotlight-drift {
  from { transform: translate3d(-3%, -2%, 0) scale(1); }
  to   { transform: translate3d(4%, 3%, 0) scale(1.1); }
}

/* ---------- Proof stripe ---------- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-bar b { display: block; font-family: var(--font-display); font-weight: 900; color: var(--gold); font-size: clamp(34px, 4.5vw, 54px); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-bar span { display: block; margin-top: 6px; font-size: 13px; color: var(--fg-dim); }
.client-logos { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; justify-content: center; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); }
.client-logos__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.client-logo { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 16px; letter-spacing: 0.02em; color: rgba(255,255,255,0.78); }

/* ---------- The nights ---------- */
.nights h2 { margin-top: 6px; margin-bottom: 30px; }
.nights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.night-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform var(--duration-base) var(--ease-out), border-color var(--duration-base);
}
.night-card:hover { transform: translateY(-3px); border-color: var(--border-subtle); }
.night-card__title { font-size: 22px; }
.night-card p { margin-top: 10px; color: var(--fg-dim); font-size: 15px; line-height: 1.55; }
.night-card__tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.night-card__tags li { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-dim); border-radius: var(--radius-sm); padding: 4px 11px; }
.nights__cta { margin-top: 30px; }

/* ---------- Testimonials ---------- */
.testimonials h2 { margin: 6px 0 30px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial { background: var(--bg); border: 1px solid var(--border-faint); border-radius: var(--radius-lg); padding: 28px 26px; margin: 0; }
.testimonial__q { font-size: clamp(18px, 2vw, 21px); line-height: 1.4; color: var(--fg); font-weight: 500; }
.testimonial__c { margin-top: 16px; font-size: 14px; color: var(--fg-dim); }
.testimonial__c b { color: var(--gold); font-weight: 600; }

/* ---------- The crew ---------- */
.crew__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.crew__text h2 { margin: 6px 0 16px; }
.crew__text .btn { margin-top: 20px; }
.crew__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.crew__photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); aspect-ratio: 3 / 4; }
.crew__photos .crew__photo:last-child { aspect-ratio: 3 / 2; align-self: center; }

/* ---------- Closing (stage-light WebGL backdrop; static plum without it) ---------- */
.closing { position: relative; isolation: isolate; overflow: hidden; }
.closing__shader { position: absolute; inset: 0; z-index: 0; display: block; width: 100%; height: 100%; }
.closing__shader[data-state="off"] { display: none; }
.closing__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(72% 88% at 50% 55%, rgba(22,15,25,0.6), rgba(22,15,25,0.16));
}
.closing > .container { position: relative; z-index: 2; }
.closing__title { font-size: clamp(28px, 4.5vw, 48px); margin: 8px auto 16px; }
.closing__lead { margin-inline: auto; }
.closing__cta { justify-content: center; margin-top: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nights__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .crew__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* pages-inner.css - shared inner-page patterns (events, hosts, about, contact, our-work). */

/* ---------- Inner hero ---------- */
.inner-hero {
  background: var(--bg-deep);
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border-faint);
}
.inner-hero h1 { font-size: clamp(34px, 6vw, 62px); margin-top: 12px; }
.inner-hero__sub { font-size: clamp(17px, 2.1vw, 21px); line-height: 1.5; color: var(--fg-dim); max-width: 56ch; margin-top: 16px; }

/* ---------- Events ---------- */
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.event-type { background: var(--bg-warm); border: 1px solid var(--border-faint); border-radius: var(--radius-lg); padding: 26px; }
.event-type__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.event-type__name { font-size: 24px; }
.event-type__len { font-family: var(--font-mono); font-size: 12px; color: var(--gold); white-space: nowrap; }
.event-type p { margin-top: 8px; color: var(--fg-dim); font-size: 15px; line-height: 1.55; }

/* ---------- Hosts ---------- */
.host-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.host-card { background: var(--bg-warm); border: 1px solid var(--border-faint); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.host-card__photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.host-card__photo--pending {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-deep), var(--bg-warm));
  color: var(--fg-faint); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border-faint);
}
.host-card__body { padding: 22px 24px; }
.host-card__name { font-size: 24px; margin-top: 4px; }
.host-card__body p:last-child { margin-top: 8px; color: var(--fg-dim); font-size: 15px; line-height: 1.55; }
.roster { margin-top: 40px; }
.roster__list { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 12px; }
.roster__list li { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 15px; color: var(--fg-dim); }

/* ---------- Booking form ---------- */
.booking-form { max-width: 640px; }
.booking-form .btn { margin-top: 8px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }
.gallery figure { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-warm); min-height: 180px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery .gallery__big { grid-row: span 2; }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* ---------- Prose ---------- */
.prose h2 { margin-top: 1.6em; font-size: clamp(22px, 3vw, 32px); }
.prose p + p { margin-top: 1.1em; }

@media (max-width: 700px) { .event-grid, .host-grid { grid-template-columns: 1fr; } }


