/* EVENT LANDING DESIGN LOCK - 2026-06-18
   One shared stylesheet controls all event candidates in this pack.
   Do not change page-level fonts, type sizes, photo sockets, or button colors
   inside individual HTML files. Add copy only inside the existing content slots.
*/

:root {
  /* Locked fonts */
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: Inter, Arial, Helvetica, sans-serif;

  /* Locked palette */
  --color-ink: #241b16;
  --color-muted: #6c5b4c;
  --color-paper: #fff8ec;
  --color-sand: #f2e2c9;
  --color-forest: #183d33;
  --color-forest-hover: #102c25;
  --color-gold: #c8904d;
  --color-gold-soft: #e5bd78;
  --color-hero-bg: #15120f;
  --color-hero-text: #fff9ed;
  --color-hero-title: #ffe5ad;
  --color-line: rgba(64, 48, 36, 0.16);
  --color-glass-line: rgba(255, 249, 237, 0.22);
  --color-glass-fill: rgba(255, 249, 237, 0.1);
  --color-secondary-fill: rgba(255, 249, 237, 0.12);
  --color-secondary-line: rgba(255, 249, 237, 0.48);

  /* Locked type scale */
  --text-nav: 0.82rem;
  --text-root: 16px;
  --text-brand: 0.72rem;
  --text-eyebrow: 0.78rem;
  --text-detail-label: 0.68rem;
  --text-note: 0.94rem;
  --text-pill: 0.8rem;
  --text-body: 1.08rem;
  --text-lead-min: 1.1rem;
  --text-lead-fluid: 2.2vw;
  --text-lead-max: 1.45rem;
  --text-h1-min: 3.5rem;
  --text-h1-fluid: 12vw;
  --text-h1-max: 8.8rem;
  --text-h2-min: 2.35rem;
  --text-h2-fluid: 6vw;
  --text-h2-max: 5.2rem;
  --text-h3-min: 1.65rem;
  --text-h3-fluid: 3.2vw;
  --text-h3-max: 2.5rem;

  /* Locked layout */
  --page-pad-x-min: 18px;
  --page-pad-x-fluid: 5vw;
  --page-pad-x-max: 72px;
  --nav-pad-x-fluid: 4vw;
  --nav-pad-x-max: 52px;
  --anchor-offset: 88px;
  --screen-pad-top: 96px;
  --screen-pad-bottom: 64px;
  --hero-copy-max: 760px;
  --body-copy-max: 720px;
  --detail-strip-max: 760px;
  --grid-gap-min: 24px;
  --grid-gap-fluid: 5vw;
  --grid-gap-max: 72px;

  /* Locked photo sockets */
  --photo-radius: 18px;
  --hero-photo-position: center center;
  --overview-photo-main-ratio: 4 / 5.6;
  --overview-photo-side-ratio: 1 / 1.18;
  --bio-photo-ratio: 4 / 5;
  --overview-photo-main-min-h: 440px;
  --overview-photo-main-max-h: 720px;
  --overview-photo-side-min-h: 320px;
  --overview-photo-side-max-h: 560px;
  --bio-photo-min-h: 520px;
  --bio-photo-max-h: 760px;

  /* Locked buttons */
  --button-bg: var(--color-forest);
  --button-bg-hover: var(--color-forest-hover);
  --button-text: var(--color-hero-text);
  --button-border: var(--color-forest);
  --button-secondary-bg: var(--color-secondary-fill);
  --button-secondary-border: var(--color-secondary-line);
  --button-secondary-text: var(--color-hero-text);
  --button-height: 48px;
  --button-pad-y: 14px;
  --button-pad-x: 21px;
  --button-radius: 999px;

  --shadow: 0 28px 70px rgba(32, 24, 18, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: var(--text-root);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(var(--page-pad-x-min), var(--nav-pad-x-fluid), var(--nav-pad-x-max));
  color: var(--color-hero-text);
  background: linear-gradient(180deg, rgba(23, 21, 18, 0.72), rgba(23, 21, 18, 0));
}

.brand {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--text-brand);
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: var(--text-nav);
}

.nav-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: currentColor;
}

.screen {
  min-height: 100svh;
  display: grid;
  align-items: center;
  scroll-margin-top: var(--anchor-offset);
  padding: var(--screen-pad-top) clamp(var(--page-pad-x-min), var(--page-pad-x-fluid), var(--page-pad-x-max)) var(--screen-pad-bottom);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--color-hero-text);
  background: var(--color-hero-bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.82), rgba(18, 15, 12, 0.44), rgba(18, 15, 12, 0.64)),
    linear-gradient(0deg, rgba(18, 15, 12, 0.78), rgba(18, 15, 12, 0.04) 58%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background: var(--color-hero-bg);
}

.hero-media img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: var(--hero-photo-position);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: var(--hero-copy-max);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--text-eyebrow);
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 780px;
  color: var(--color-hero-title);
  font-size: clamp(var(--text-h1-min), var(--text-h1-fluid), var(--text-h1-max));
}

h2 {
  margin: 0 0 18px;
  color: var(--color-forest);
  font-size: clamp(var(--text-h2-min), var(--text-h2-fluid), var(--text-h2-max));
}

h3 {
  margin: 0 0 10px;
  color: var(--color-forest);
  font-size: clamp(var(--text-h3-min), var(--text-h3-fluid), var(--text-h3-max));
}

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 249, 237, 0.88);
  font-size: clamp(var(--text-lead-min), var(--text-lead-fluid), var(--text-lead-max));
  line-height: 1.5;
}

.detail-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: var(--detail-strip-max);
  margin: 28px 0;
}

.detail-strip span {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--color-glass-line);
  background: var(--color-glass-fill);
  backdrop-filter: blur(14px);
}

.detail-strip small {
  color: rgba(255, 249, 237, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--text-detail-label);
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: var(--button-pad-y) var(--button-pad-x);
  border-radius: var(--button-radius);
  border: 1px solid var(--button-border);
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--button-bg-hover);
  border-color: var(--button-bg-hover);
}

.button:focus-visible {
  outline: 3px solid rgba(229, 189, 120, 0.68);
  outline-offset: 3px;
}

.button.secondary {
  background: var(--button-secondary-bg);
  border-color: var(--button-secondary-border);
  color: var(--button-secondary-text);
}

.button.secondary:hover {
  background: rgba(255, 249, 237, 0.2);
  border-color: rgba(255, 249, 237, 0.72);
}

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

.button.light:hover {
  background: rgba(24, 61, 51, 0.08);
  border-color: var(--color-forest);
}

.ticket-note {
  margin: 14px 0 0;
  color: rgba(255, 249, 237, 0.72);
  font-size: var(--text-note);
}

.overview {
  background: var(--color-paper);
}

.overview-grid,
.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(var(--grid-gap-min), var(--grid-gap-fluid), var(--grid-gap-max));
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 14px;
  align-items: end;
  width: min(100%, 760px);
}

.image-stack img,
.bio-photo img {
  border-radius: var(--photo-radius);
  box-shadow: var(--shadow);
  aspect-ratio: var(--bio-photo-ratio);
  object-fit: cover;
  object-position: center center;
}

.image-stack img:first-child {
  aspect-ratio: var(--overview-photo-main-ratio);
  height: clamp(var(--overview-photo-main-min-h), 46vw, var(--overview-photo-main-max-h));
  min-height: var(--overview-photo-main-min-h);
  max-height: var(--overview-photo-main-max-h);
}

.image-stack img:last-child {
  aspect-ratio: var(--overview-photo-side-ratio);
  height: clamp(var(--overview-photo-side-min-h), 34vw, var(--overview-photo-side-max-h));
  min-height: var(--overview-photo-side-min-h);
  max-height: var(--overview-photo-side-max-h);
  transform: translateY(26px);
}

.body-copy {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-body);
  line-height: 1.72;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.copy-box {
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.copy-box ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--color-muted);
  line-height: 1.62;
}

.bio-grid {
  background: var(--color-sand);
}

.bio-copy {
  max-width: var(--body-copy-max);
}

.bio-photo {
  display: grid;
  gap: 18px;
  width: min(100%, 680px);
}

.bio-photo img {
  height: clamp(var(--bio-photo-min-h), 50vw, var(--bio-photo-max-h));
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24, 61, 51, 0.1);
  color: var(--color-forest);
  font-size: var(--text-pill);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.final-details {
  margin: 24px 0;
  padding: 20px;
  border-left: 3px solid var(--color-gold);
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: none;
  min-width: min(92vw, 340px);
  box-shadow: 0 18px 50px rgba(24, 61, 51, 0.34);
}

@media (max-width: 820px) {
  :root {
    --text-h1-min: 3.1rem;
    --text-h1-fluid: 18vw;
    --text-h1-max: 5.4rem;
    --text-lead-min: 1.05rem;
    --text-lead-fluid: 1.05rem;
    --text-lead-max: 1.05rem;
    --overview-photo-main-min-h: 300px;
    --overview-photo-main-max-h: 420px;
    --overview-photo-side-min-h: 260px;
    --overview-photo-side-max-h: 360px;
    --bio-photo-min-h: 360px;
    --bio-photo-max-h: 520px;
  }

  .site-nav {
    padding: 14px 16px;
  }

  .nav-links {
    display: none;
  }

  .screen {
    min-height: auto;
    padding: 82px 18px 56px;
  }

  .hero {
    min-height: 100svh;
  }

  .detail-strip,
  .overview-grid,
  .bio-grid,
  .copy-grid {
    grid-template-columns: 1fr;
  }

  .detail-strip span {
    min-height: 64px;
  }

  .image-stack {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .image-stack img:last-child {
    transform: translateY(0);
  }

  .image-stack img:first-child,
  .image-stack img:last-child,
  .bio-photo img {
    width: 100%;
    object-fit: cover;
  }

  .sticky-cta {
    display: inline-flex;
  }
}
