/* ==========================================================================
   Sunrise Lounge — Austell, GA
   Palette taken from the venue itself: the black room, the gold sun in the
   logo, and the red of the sign on Maxham Road.
   ========================================================================== */

:root {
  --black:     #0B0A09;
  --room:      #131110;   /* the dark room */
  --room-2:    #1A1716;
  --line:      #2C2724;
  --line-soft: #221E1C;

  --bone:      #F2ECE2;
  --bone-dim:  #B8AFA3;
  --mute:      #8A8177;

  --gold:      #C9A227;
  --gold-lit:  #E9C96B;
  --gold-deep: #8A6E15;
  --ember:     #B4372A;   /* the sign */

  --f-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-body:    Jost, ui-sans-serif, system-ui, -apple-system, sans-serif;

  --shell: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--f-display); font-weight: 600; margin: 0; line-height: 1.06; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--gold); color: var(--black); padding: 12px 18px; font-weight: 500;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--gold-lit); outline-offset: 3px; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--mute);
  margin: 0 0 18px;
}
.eyebrow--gold { color: var(--gold); }

.sec { margin-bottom: 56px; max-width: 40ch; }
.sec--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec__h { font-size: clamp(2.4rem, 5.2vw, 4rem); letter-spacing: -.01em; }
.sec__lede { margin-top: 20px; color: var(--bone-dim); font-size: 1.08rem; max-width: 52ch; }
.sec--center .sec__lede { margin-left: auto; margin-right: auto; }
.note-sm { margin-top: 16px; font-size: 13.5px; color: var(--mute); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: 2px; text-decoration: none;
  font-family: var(--f-body); font-size: 12.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-lit); transform: translateY(-2px); }
.btn--line { border-color: rgba(242,236,226,.28); color: var(--bone); }
.btn--line:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--sm { padding: 11px 20px; font-size: 11px; }
.btn--full { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(11,10,9,.9); backdrop-filter: blur(16px);
  border-bottom-color: var(--line-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 20px 28px; }

.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__sun {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 50% 55%, var(--gold-lit) 0%, var(--gold) 42%, var(--gold-deep) 78%, transparent 80%);
  box-shadow: 0 0 18px rgba(201,162,39,.5);
}
.nav__name {
  font-family: var(--f-display); font-size: 1.32rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1;
}
.nav__name span { color: var(--gold); font-weight: 400; margin-left: .35em; }

.nav__links { display: flex; gap: 32px; }
.nav__links a {
  text-decoration: none; font-size: 12px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase; color: var(--bone-dim);
  transition: color .25s var(--ease);
}
.nav__links a:hover { color: var(--gold); }

.nav__act { display: flex; align-items: center; gap: 14px; }
.nav__burger {
  display: none; width: 42px; height: 42px; background: none; cursor: pointer;
  border: 1px solid var(--line); border-radius: 2px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__burger span { display: block; width: 17px; height: 1.5px; background: var(--bone); transition: transform .3s var(--ease); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 78px 0 auto 0; z-index: 99;
  background: rgba(11,10,9,.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; padding: 12px 28px 24px;
}
/* `display` beats the UA's [hidden] rule, so restore it explicitly. */
.drawer[hidden] { display: none; }
.drawer a {
  padding: 15px 0; text-decoration: none; color: var(--bone-dim);
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
}
.drawer a:last-child { border-bottom: none; color: var(--gold); }

/* ==========================================================================
   HERO — no photography yet. The sunrise is drawn in CSS so the section
   reads as finished rather than as a gap waiting for an image.
   ========================================================================== */
/* The wrapper's height is the scrub distance: 100 frames over 500vh is about
   one frame per 40px of scroll, which reads smooth without dragging. */
.hero-scroll { position: relative; height: 500vh; padding: 0; background: var(--black); }

.hero {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden; background: var(--black);
}
.hero__canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; display: block;
}
/* Scrim keeps the type legible over the bright orbital and sparkler frames. */
.hero__haze {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(11,10,9,.82) 0%, rgba(11,10,9,.45) 38%, transparent 66%),
    linear-gradient(180deg, rgba(11,10,9,.7) 0%, transparent 26%, transparent 62%, rgba(11,10,9,.88) 100%);
}

.hero__body, .hero__land {
  position: absolute; z-index: 2; left: 0; right: 0;
  top: 50%; transform: translateY(calc(-50% + var(--drift, 0px)));
  will-change: opacity, transform;
}
.hero__land { opacity: 0; pointer-events: none; }
.hero__land-h {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.4rem, 6.5vw, 5rem); letter-spacing: -.015em;
  margin-bottom: 32px;
}
.hero__land-h em { font-style: italic; color: var(--gold-lit); font-weight: 400; }
.hero__cue {
  margin-top: 44px; font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--mute);
}
.hero__noscript { padding: 30vh 0; text-align: center; }

/* Short viewports (landscape phones, small laptop windows): the centred copy
   block can grow past the nav. Scale the type down against viewport height so
   it stays clear of it. */
@media (max-height: 620px) {
  .hero__title { font-size: clamp(2rem, 7.5vh, 3.4rem); }
  .hero__lede { font-size: .98rem; margin-top: 18px; }
  .hero__cue { margin-top: 24px; }
  .hero__land-h { font-size: clamp(1.8rem, 7vh, 3rem); margin-bottom: 22px; }
  .hero__body, .hero__land { top: 54%; }
}
/* Very short viewports (landscape phones): drop the supporting copy so the
   headline alone never runs up under the fixed nav. */
@media (max-height: 470px) {
  .hero__lede, .hero__cue { display: none; }
  .hero__title { font-size: clamp(1.7rem, 9vh, 2.6rem); }
  .hero__body, .hero__land { top: 58%; }
}

/* The info strip now sits below the pinned hero rather than inside it. */
.hero__foot-band { background: var(--black); border-top: 1px solid var(--line-soft); }
.hero__title {
  font-size: clamp(3rem, 9vw, 6.6rem);
  letter-spacing: -.02em; font-weight: 600;
}
.hero__title em { font-style: italic; color: var(--gold-lit); font-weight: 400; }
.hero__lede { margin-top: 28px; max-width: 46ch; color: var(--bone-dim); font-size: 1.12rem; }
.hero__act { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero__foot {
  position: relative; z-index: 2; padding-top: 44px; padding-bottom: 44px;
  display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}
/* Without min-width:0 a grid child's min-content width can exceed its track
   and push the row past the viewport — body's overflow-x:hidden would then
   clip it silently rather than reveal the overflow. */
.hero__foot > div { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.hero__foot .k { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--mute); }
.hero__foot .v { font-family: var(--f-display); font-size: 1.24rem; color: var(--bone); }
.hero__foot a { text-decoration: none; }
.hero__foot a:hover { color: var(--gold); }

/* ---------- Bands ---------- */
.band { padding: 120px 0; background: var(--black); position: relative; }
.band--dark { background: var(--room); }
.band--ember {
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(180,55,42,.16) 0%, transparent 62%),
    var(--black);
}
.band--nest {
  background:
    radial-gradient(80% 100% at 82% 20%, rgba(201,162,39,.11) 0%, transparent 60%),
    var(--room);
}

/* ---------- Story ---------- */
.story { max-width: 940px; }
.story__quote {
  margin: 0; font-family: var(--f-display); font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.34; color: var(--bone);
  border-left: 2px solid var(--gold); padding-left: 32px;
}
.story__facts {
  margin-top: 64px; display: grid; gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.story__facts b {
  display: block; font-family: var(--f-display); font-size: 1.4rem;
  font-weight: 600; color: var(--gold); margin-bottom: 8px;
}
.story__facts span { color: var(--bone-dim); font-size: 15.5px; }

/* ---------- Tabs ---------- */
.tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.tab {
  background: none; border: none; cursor: pointer; color: var(--mute);
  font-family: var(--f-body); font-size: 12px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 20px; border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.tab:hover { color: var(--bone); }
.tab.is-on { color: var(--gold); border-bottom-color: var(--gold); }

.panel__note {
  margin-bottom: 32px; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}

/* ---------- Menu lists ---------- */
.cols { display: grid; gap: 56px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; }

.menu__h {
  font-size: 1.75rem; color: var(--bone); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.menu__h--gap { margin-top: 44px; }

.items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.items--tight { gap: 11px; }

.items li { display: flex; align-items: baseline; gap: 14px; }
.items .i { display: flex; flex-direction: column; gap: 3px; flex: 1 1 auto; min-width: 0; }
.items b { font-weight: 400; font-size: 16px; color: var(--bone); }
.items em {
  font-style: normal; font-size: 13.5px; color: var(--mute);
  line-height: 1.45; font-weight: 300;
}
.items .p {
  flex: none; font-family: var(--f-display); font-size: 1.18rem; font-weight: 600;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
/* Leader dots tie item to price without a heavy rule. Baseline alignment
   keeps them on the item's first line even when a description wraps below. */
.items li::before {
  content: ""; order: 1; flex: 1 1 auto;
  align-self: baseline; min-width: 18px;
  border-bottom: 1px dotted var(--line);
}
.items .p { order: 2; }

/* ---------- Hookah ---------- */
.price-pair {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px;
}
.price-pair > div {
  border: 1px solid var(--line); border-radius: 2px; padding: 32px 44px;
  text-align: center; background: rgba(19,17,16,.6); min-width: 240px;
}
.price-pair b {
  display: block; font-family: var(--f-display); font-size: 3.4rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.price-pair span {
  display: block; margin-top: 10px; font-size: 11.5px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--bone-dim);
}

.flavors {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 2px; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  background: var(--line-soft); border: 1px solid var(--line-soft);
}
.flavors li {
  background: var(--black); padding: 17px 20px;
  font-size: 15px; color: var(--bone-dim);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.flavors li:hover { background: var(--room-2); color: var(--gold-lit); }

/* ---------- Sports ---------- */
.band--sport {
  background:
    radial-gradient(85% 110% at 12% 10%, rgba(201,162,39,.10) 0%, transparent 58%),
    var(--room);
}
.sports {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 2px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: var(--line-soft); border: 1px solid var(--line-soft);
}
.sports li {
  background: var(--black); padding: 32px 28px;
  transition: background .25s var(--ease);
}
.sports li:hover { background: var(--room-2); }
.sports b {
  display: block; font-family: var(--f-display); font-size: 1.5rem;
  font-weight: 600; color: var(--gold); margin-bottom: 8px;
}
.sports span { color: var(--bone-dim); font-size: 15px; }
.sports__note { margin-top: 36px; color: var(--bone-dim); font-size: 15.5px; }
.sports__note a { color: var(--gold); }

/* ---------- Delivery chips ---------- */
.delivery { margin-top: 44px; }
.delivery__row { display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; text-decoration: none;
  font-size: 12.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--bone);
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex: none;
}
.chip--dd::before { background: #FF3008; }
.chip--gh::before { background: #F63440; }
.chip:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- Social badges ---------- */
.foot__badges { padding: 40px 28px; border-bottom: 1px solid var(--line); }
.badges {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.badges a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; color: var(--bone-dim);
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.badges svg {
  width: 18px; height: 18px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
/* Solid shapes inside otherwise-stroked marks. */
.badges svg .fill, .badges svg .dot { fill: currentColor; stroke: none; }
.badges a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.foot__order { display: flex; flex-direction: column; align-items: flex-start; }

/* ---------- Falcon's Nest ---------- */
.nest { display: grid; gap: 64px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .nest { grid-template-columns: 1fr 1fr; align-items: center; } }
.nest__intro .btn { margin-top: 32px; }
.nest__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.nest__list li { padding: 28px 0; border-top: 1px solid var(--line); }
.nest__list li:last-child { border-bottom: 1px solid var(--line); }
.nest__list b {
  display: block; font-family: var(--f-display); font-size: 1.5rem;
  font-weight: 600; color: var(--gold); margin-bottom: 8px;
}
.nest__list span { color: var(--bone-dim); font-size: 15.5px; }

/* ---------- Spaces ---------- */
.spaces { display: grid; gap: 2px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); background: var(--line-soft); border: 1px solid var(--line-soft); }
.space { background: var(--black); padding: 40px 32px; }
.space h3 { font-size: 1.7rem; color: var(--gold); margin-bottom: 14px; }
.space p { color: var(--bone-dim); font-size: 15.5px; }
.space__meta {
  margin-top: 20px; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mute);
}

/* ---------- Booking form ---------- */
.book { display: grid; gap: 64px; grid-template-columns: 1fr; }
@media (min-width: 940px) { .book { grid-template-columns: 1fr 1fr; align-items: start; } }
.book__alt { margin-top: 24px; color: var(--bone-dim); font-size: 15px; }
.book__alt a { color: var(--gold); }

.form { display: flex; flex-direction: column; gap: 18px; }
.row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field > span {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute);
}
.field input, .field select, .field textarea {
  background: var(--black); border: 1px solid var(--line); border-radius: 2px;
  color: var(--bone); font-family: var(--f-body); font-size: 16px; font-weight: 300;
  padding: 14px 16px; width: 100%;
  transition: border-color .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field textarea { resize: vertical; }
.form__status { font-size: 14px; color: var(--gold); min-height: 1.4em; }
.form__status[data-err] { color: var(--ember); }

/* ---------- Visit ---------- */
.visit { display: grid; gap: 64px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .visit { grid-template-columns: 1.05fr .95fr; align-items: center; } }
.visit__act { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

.hours { width: 100%; border-collapse: collapse; }
.hours caption { text-align: left; margin-bottom: 20px; }
.hours th, .hours td { padding: 15px 0; border-bottom: 1px solid var(--line); font-weight: 300; }
.hours th { text-align: left; color: var(--bone-dim); font-size: 15.5px; }
.hours td { text-align: right; font-family: var(--f-display); font-size: 1.12rem; color: var(--bone); font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold); }

/* ---------- Careers ---------- */
.careers { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .careers { grid-template-columns: 1.3fr .7fr; align-items: center; } }
.careers__act { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }

/* ==========================================================================
   Interior pages (Events, Falcon's Nest)
   ========================================================================== */
.page-head {
  padding: 200px 0 96px;
  background:
    radial-gradient(80% 100% at 20% 0%, rgba(201,162,39,.14) 0%, transparent 62%),
    linear-gradient(180deg, var(--room) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--line-soft);
}
.page-head--nest {
  background:
    radial-gradient(70% 100% at 78% 8%, rgba(201,162,39,.18) 0%, transparent 60%),
    radial-gradient(60% 90% at 12% 40%, rgba(180,55,42,.12) 0%, transparent 62%),
    linear-gradient(180deg, var(--room) 0%, var(--black) 100%);
}
.page-head__h {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 5.6rem); letter-spacing: -.02em;
}
.page-head__lede {
  margin-top: 22px; max-width: 54ch; color: var(--bone-dim); font-size: 1.12rem;
}
.page-head__act { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.tag {
  display: inline-block; font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 2px;
  border: 1px solid var(--line); color: var(--bone-dim);
}
.tag--gold { background: var(--gold); border-color: var(--gold); color: var(--black); }

.link-gold {
  color: var(--gold); text-decoration: none; font-size: 14px;
  letter-spacing: .04em; border-bottom: 1px solid transparent;
}
.link-gold:hover { border-bottom-color: var(--gold); }

.cta-row { margin-top: 48px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Events ---------- */
.events { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 940px) { .events { grid-template-columns: 1.15fr .85fr; align-items: start; } }

.event {
  background: var(--room); border: 1px solid var(--line);
  border-radius: 3px; padding: 36px 32px;
}
.event--feature {
  background:
    radial-gradient(90% 120% at 10% 0%, rgba(201,162,39,.12) 0%, transparent 60%),
    var(--room);
  border-color: var(--gold-deep);
}
.event__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.event__kind {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute);
}
.event__h {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3rem); margin-bottom: 18px;
}
.event__h em { font-style: italic; color: var(--gold-lit); font-weight: 400; }
.event__h--sm { font-size: 1.6rem; margin: 12px 0 10px; }
.event__copy { color: var(--bone-dim); font-size: 15.5px; }
.event__copy b { color: var(--bone); font-weight: 400; }

.event__facts {
  list-style: none; margin: 28px 0; padding: 0;
  display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding-top: 22px; padding-bottom: 22px;
}
.event__facts li { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.event__facts span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.event__facts b { font-family: var(--f-display); font-size: 1.1rem; font-weight: 600; color: var(--bone); }

.events__side { display: flex; flex-direction: column; gap: 24px; }
.events__side .event { padding: 28px 26px; }
.events__note { margin-top: 40px; color: var(--mute); font-size: 15px; }
.events__note a { color: var(--gold); }

.perk { max-width: 640px; text-align: center; margin: 0 auto; }
.perk .btn { margin-top: 32px; }
.perk .sec__lede { margin-left: auto; margin-right: auto; }
.perk b { color: var(--gold); font-weight: 400; }

/* ---------- Membership tiers ---------- */
.tiers { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: start; }
.tier {
  background: var(--room); border: 1px solid var(--line); border-radius: 3px;
  padding: 36px 30px; display: flex; flex-direction: column; height: 100%;
}
.tier--feature {
  border-color: var(--gold);
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(201,162,39,.14) 0%, transparent 62%),
    var(--room);
}
.tier--black {
  background:
    linear-gradient(180deg, rgba(0,0,0,.6) 0%, transparent 40%),
    var(--room-2);
}
.tier .tag { align-self: flex-start; margin-bottom: 18px; }
.tier__name {
  font-family: var(--f-display); font-size: 1.9rem; font-weight: 600;
  color: var(--gold); margin-bottom: 6px;
}
.tier__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.tier__price b {
  font-family: var(--f-display); font-size: 3rem; font-weight: 700;
  color: var(--bone); line-height: 1; font-variant-numeric: tabular-nums;
}
.tier__price span { font-size: 13px; color: var(--mute); letter-spacing: .08em; }
.tier__inherit {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 16px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.tier__list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.tier__list li {
  position: relative; padding-left: 22px; color: var(--bone-dim); font-size: 15px;
}
.tier__list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-deep);
}
.tier__terms { font-size: 13px; color: var(--mute); margin-bottom: 20px; }
.tier .btn { margin-top: auto; }

/* ---------- Apply ---------- */
.apply { display: grid; gap: 56px; grid-template-columns: 1fr; }
@media (min-width: 940px) { .apply { grid-template-columns: 1.2fr .8fr; align-items: start; } }
.apply__act { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.terms {
  border: 1px solid var(--line); border-radius: 3px;
  padding: 30px 28px; background: var(--black);
}
.terms ul { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.terms li { color: var(--bone-dim); font-size: 14.5px; line-height: 1.6; }
.terms b { color: var(--bone); font-weight: 500; }

/* ---------- Footer ---------- */
.foot { background: var(--room); border-top: 1px solid var(--line); padding: 80px 0 40px; }
.foot__inner {
  display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
.foot__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.foot__brand p { margin-top: 8px; color: var(--mute); font-size: 15px; line-height: 1.8; }
.foot__brand a { text-decoration: none; }
.foot__brand a:hover { color: var(--gold); }

.foot__nav, .foot__social { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.foot__nav a, .foot__social a {
  text-decoration: none; color: var(--bone-dim); font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase;
}
.foot__nav a:hover, .foot__social a:hover { color: var(--gold); }

.foot__legal {
  padding-top: 28px; display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; color: var(--mute); font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .shell { padding: 0 20px; }
  /* Brand + Book + burger must all fit a 360px viewport without clipping. */
  .nav__inner { padding: 14px 20px; gap: 12px; }
  .nav__name { font-size: 1.02rem; letter-spacing: .02em; }
  .nav__name span { margin-left: .3em; }
  .nav__sun { width: 17px; height: 17px; }
  .nav__brand { gap: 9px; min-width: 0; }
  .nav__act { gap: 9px; flex: none; }
  .btn--sm { padding: 10px 13px; font-size: 10px; letter-spacing: .1em; }
  .nav__burger { width: 38px; height: 38px; }
  .drawer { inset: 66px 0 auto 0; padding: 8px 20px 20px; }
  .band { padding: 84px 0; }
  /* Portrait crops the frame so the brightest part of the sunrise sits directly
     behind the copy. The desktop scrim is weighted left, which does nothing
     here — darken top-to-bottom across the full width instead. */
  .hero__haze {
    background: linear-gradient(180deg,
      rgba(11,10,9,.90) 0%, rgba(11,10,9,.66) 26%,
      rgba(11,10,9,.48) 52%, rgba(11,10,9,.62) 78%, rgba(11,10,9,.92) 100%);
  }
  .hero__title { text-shadow: 0 2px 26px rgba(0,0,0,.9); }
  .hero__lede { text-shadow: 0 2px 16px rgba(0,0,0,.95); }
  .hero__body .eyebrow--gold { text-shadow: 0 2px 12px rgba(0,0,0,.95); }
  .hero__foot { padding-top: 40px; gap: 18px; }
  .sec { margin-bottom: 40px; }
  .cols { gap: 44px; }
  .story__quote { padding-left: 20px; }
  .row { grid-template-columns: 1fr; }
  .price-pair > div { padding: 26px 32px; min-width: 0; flex: 1 1 100%; }
  .foot__legal { flex-direction: column; gap: 8px; }
}

/* Reduced motion: unpin the hero, hold frame 0, stack both copy layers. */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .btn:hover { transform: none; }
  .hero-scroll { height: auto; }
  .hero {
    position: relative; height: auto; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 22vh 0 10vh;
  }
  .hero__body, .hero__land {
    position: relative; top: auto;
    transform: none !important; opacity: 1 !important; pointer-events: auto !important;
  }
  .hero__land { margin-top: 56px; }
  .hero__cue { display: none; }
}
