/* ============================================================
   Havelock Fair — "Heritage Noir" design system
   Source of truth: design-handoff/README.md (approved spec).
   Loaded site-wide: index.html and (with css/heritage-pages.css)
   every /pages/*.html. Namespaced (--hf-* tokens, hf-* classes)
   so it cannot collide with css/style.css, which registration.html
   still loads. Square corners throughout — no border-radius (spec).
   ============================================================ */

:root {
  /* Color (spec table) */
  --hf-espresso: #1B1611;
  --hf-charcoal: #221C15;
  --hf-footer-black: #16130E;
  --hf-bronze: #8A6B3E;
  --hf-gold: #C6A15B;
  --hf-gold-bright: #D8BB78;
  --hf-gold-warm: #E8D3A0;
  --hf-ivory: #F1E8D6;
  --hf-ivory-bright: #F5ECD8;
  --hf-body-on-dark: rgba(241, 232, 214, 0.74);
  --hf-body-on-ivory: #5c5240;
  --hf-frame: rgba(198, 161, 91, 0.32);
  --hf-rule: rgba(198, 161, 91, 0.16);
  --hf-rule-ivory: rgba(34, 28, 21, 0.2);

  /* Type */
  --hf-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --hf-body-serif: 'Spectral', Georgia, serif;
  --hf-sans: 'Manrope', -apple-system, 'Segoe UI', sans-serif;

  /* Rhythm */
  --hf-pad-section: clamp(96px, 15vh, 190px);
  --hf-gutter: clamp(34px, 6vw, 96px);
  --hf-max: 1240px;
  --hf-max-wide: 1320px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--hf-espresso);
  color: var(--hf-ivory);
  font-family: var(--hf-sans);
  font-weight: 300;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; }
::selection { background: var(--hf-gold); color: var(--hf-espresso); }
:focus-visible { outline: 2px solid var(--hf-gold-bright); outline-offset: 3px; }

/* ---------- shared primitives ---------- */
.hf-container { max-width: var(--hf-max); margin: 0 auto; }
.hf-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--hf-gold);
}
.hf-eyebrow--bright { color: var(--hf-gold-bright); letter-spacing: 0.34em; }
.hf-eyebrow--bronze { color: var(--hf-bronze); letter-spacing: 0.28em; }
.hf-h2 {
  font-family: var(--hf-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 1;
  margin: 0;
  color: var(--hf-ivory-bright);
  text-wrap: balance;
}
.hf-link-line {
  color: var(--hf-gold-bright);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--hf-bronze);
  padding-bottom: 5px;
}
.hf-btn-gold {
  display: inline-block;
  background: var(--hf-gold);
  color: var(--hf-espresso);
  padding: 17px 42px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: background 0.25s ease;
}
.hf-btn-gold:hover { background: var(--hf-gold-bright); }

/* ============================================================
   HEADER / NAV (transparent over hero; collapses ≤1200px)
   ============================================================ */
.hf-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(24px, 5vw, 74px);
}
.hf-brand {
  font-family: var(--hf-serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--hf-gold-warm);
  white-space: nowrap;
}
.hf-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(241, 232, 214, 0.82);
}
.hf-nav a { transition: color 0.2s ease; white-space: nowrap; }
.hf-nav a:hover, .hf-nav a.active { color: var(--hf-gold-bright); }
.hf-nav-side { display: flex; align-items: center; gap: 20px; }
.hf-tickets {
  border: 1px solid var(--hf-gold);
  color: var(--hf-gold-warm);
  padding: 9px 22px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.hf-tickets:hover { background: var(--hf-gold); color: var(--hf-espresso); }

/* language switcher (markup shared with i18n.js: .lang-btn.active) */
.hf-lang { display: flex; gap: 4px; }
.hf-lang .lang-btn {
  background: none;
  border: 0;
  padding: 4px 5px;
  font-family: var(--hf-sans);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--hf-ivory);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.hf-lang .lang-btn:hover { opacity: 0.8; }
.hf-lang .lang-btn.active { opacity: 1; color: var(--hf-gold-bright); }

/* mobile menu */
.hf-menu-btn {
  display: none;
  align-items: center;
  gap: 9px;
  background: none;
  border: 1px solid rgba(198, 161, 91, 0.5);
  color: var(--hf-gold-warm);
  padding: 9px 16px;
  font-family: var(--hf-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.hf-mobile-menu {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  flex-direction: column;
  background: var(--hf-footer-black);
  border-bottom: 1px solid rgba(198, 161, 91, 0.3);
  padding: 26px clamp(24px, 5vw, 74px) 34px;
}
.hf-mobile-menu.open { display: flex; }
.hf-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.hf-mobile-close {
  background: none;
  border: none;
  color: var(--hf-gold-warm);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.hf-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(241, 232, 214, 0.86);
}
.hf-mobile-nav a { padding: 13px 0; border-top: 1px solid var(--hf-rule); }
.hf-mobile-nav a:last-child { border-bottom: 1px solid var(--hf-rule); }
.hf-mobile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.hf-mobile-foot .hf-lang .lang-btn { font-size: 13px; }
@media (max-width: 1200px) {
  .hf-nav, .hf-nav-side { display: none; }
  .hf-menu-btn { display: flex; }
}

/* ============================================================
   HERO — full-bleed Ken Burns, headline bottom-left
   ============================================================ */
.hf-hero {
  position: relative;
  height: 100vh;
  min-height: 780px;
  overflow: hidden;
}
.hf-hero-media { position: absolute; inset: 0; }
.hf-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hfKen 22s ease-out forwards;
}
@keyframes hfKen {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.14) translate(-1.5%, -1.5%); }
}
.hf-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(27, 22, 17, 0.62) 0%,
    rgba(27, 22, 17, 0.28) 34%,
    rgba(27, 22, 17, 0.72) 78%,
    rgba(27, 22, 17, 0.96) 100%);
}
.hf-frame {
  position: absolute;
  inset: 22px;
  border: 1px solid var(--hf-frame);
  pointer-events: none;
}
.hf-hero-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  max-width: 1100px;
  padding: 0 clamp(34px, 5vw, 74px) clamp(64px, 9vh, 110px);
}
.hf-hero-copy .hf-eyebrow--bright { margin-bottom: 26px; }
.hf-h1 {
  font-family: var(--hf-serif);
  font-weight: 400;
  font-size: clamp(66px, 11vw, 170px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--hf-ivory-bright);
  text-wrap: balance;
}
.hf-h1 em { font-style: italic; font-weight: 300; }
.hf-hero-sub {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hf-hero-lede {
  font-size: 19px;
  line-height: 1.55;
  font-weight: 300;
  max-width: 440px;
  margin: 0;
  color: rgba(245, 236, 216, 0.9);
}
.hf-hero-date {
  font-family: var(--hf-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--hf-gold-bright);
  padding-bottom: 2px;
}
.hf-hero-edition {
  position: absolute;
  right: clamp(34px, 5vw, 74px);
  bottom: clamp(64px, 9vh, 110px);
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(216, 187, 120, 0.85);
  z-index: 4;
}
.hf-hero-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: var(--hf-gold-bright);
  font-size: 20px;
  animation: hfCue 2.4s ease-in-out infinite;
  z-index: 4;
}
@keyframes hfCue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50%      { transform: translate(-50%, 9px); opacity: 1; }
}
@media (max-width: 700px) {
  .hf-hero { min-height: 640px; }
  .hf-hero-edition { display: none; }
}

/* ============================================================
   COUNTDOWN BAND (reuses countdown.js DOM contract)
   ============================================================ */
.hf-countdown {
  background: var(--hf-espresso);
  border-bottom: 1px solid var(--hf-rule);
  padding: clamp(40px, 6vh, 64px) var(--hf-gutter);
  text-align: center;
}
.hf-countdown .countdown-title {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--hf-gold);
  margin-bottom: 24px;
}
.hf-countdown .countdown-numbers {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
}
.hf-countdown .countdown-unit { display: flex; flex-direction: column; gap: 8px; }
.hf-countdown .countdown-num {
  font-family: var(--hf-serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--hf-ivory-bright);
  font-variant-numeric: tabular-nums;
}
.hf-countdown .countdown-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hf-bronze);
  font-weight: 600;
}
.hf-countdown .countdown-sep {
  font-family: var(--hf-serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--hf-bronze);
  align-self: flex-start;
  padding-top: 6px;
}
.hf-countdown .countdown-live-msg {
  font-family: var(--hf-serif);
  font-style: italic;
  font-size: clamp(26px, 4vw, 44px);
  color: var(--hf-gold-bright);
}

/* ============================================================
   CHAPTER ONE (ivory interlude)
   ============================================================ */
.hf-chapter {
  background: var(--hf-ivory);
  color: var(--hf-charcoal);
  padding: var(--hf-pad-section) var(--hf-gutter);
}
.hf-chapter-grid {
  max-width: var(--hf-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.62fr 1.55fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
}
.hf-chapter-label .hf-eyebrow--bronze { margin-bottom: 16px; }
.hf-chapter-name {
  font-family: var(--hf-serif);
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  color: #3a2f22;
  line-height: 1.2;
}
.hf-chapter-rule { width: 44px; height: 1px; background: var(--hf-bronze); margin-top: 26px; }
.hf-chapter-lead {
  font-family: var(--hf-body-serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.42;
  font-weight: 400;
  color: #2a2318;
  margin: 0;
  text-wrap: pretty;
}
.hf-dropcap {
  float: left;
  font-family: var(--hf-serif);
  font-size: 112px;
  line-height: 0.72;
  font-weight: 400;
  padding: 12px 18px 0 0;
  color: var(--hf-bronze);
}
.hf-chapter-body {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  color: var(--hf-body-on-ivory);
  margin: 36px 0 0;
  max-width: 620px;
}
@media (max-width: 820px) {
  .hf-chapter-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   A LIVING HERITAGE (espresso, giant outlined 1871)
   ============================================================ */
.hf-heritage {
  position: relative;
  background: var(--hf-espresso);
  padding: clamp(110px, 16vh, 210px) var(--hf-gutter);
  overflow: hidden;
}
.hf-heritage-numeral {
  position: absolute;
  top: clamp(40px, 8vh, 120px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--hf-serif);
  font-weight: 300;
  font-size: clamp(200px, 34vw, 520px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--hf-rule);
  pointer-events: none;
  user-select: none;
}
.hf-heritage-grid {
  position: relative;
  max-width: var(--hf-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.hf-heritage-photos { position: relative; height: clamp(420px, 52vw, 620px); }
.hf-heritage-photo-back {
  position: absolute;
  top: 0; left: 0;
  width: 74%; height: 74%;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.hf-heritage-photo-back img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.28) saturate(0.85) contrast(1.02);
}
.hf-heritage-photo-front {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 58%;
  overflow: hidden;
  border: 6px solid var(--hf-ivory);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.hf-heritage-photo-front img { width: 100%; height: 100%; object-fit: cover; }
.hf-heritage-copy .hf-eyebrow { margin-bottom: 24px; }
.hf-heritage-title {
  font-family: var(--hf-serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.04;
  margin: 0 0 26px;
  color: var(--hf-ivory-bright);
}
.hf-heritage-title em { font-style: italic; color: var(--hf-gold-bright); }
.hf-heritage-body {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--hf-body-on-dark);
  max-width: 460px;
  margin: 0 0 34px;
}
@media (max-width: 820px) {
  .hf-heritage-grid { grid-template-columns: 1fr; }
  .hf-heritage-photos { height: clamp(320px, 80vw, 480px); }
}

/* ============================================================
   CINEMATIC BREAK (full-bleed, parallax, pull-line)
   ============================================================ */
.hf-break {
  position: relative;
  height: clamp(500px, 86vh, 860px);
  overflow: hidden;
}
.hf-break img, .hf-finale > img {
  position: absolute;
  top: -12%; left: 0;
  width: 100%; height: 124%;
  object-fit: cover;
}
.hf-break-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(27, 22, 17, 0.72),
    rgba(27, 22, 17, 0.2) 60%,
    rgba(27, 22, 17, 0.35));
}
.hf-break-line {
  position: absolute;
  left: var(--hf-gutter);
  bottom: clamp(60px, 10vh, 130px);
  max-width: 640px;
}
.hf-break-line p {
  font-family: var(--hf-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.18;
  color: var(--hf-ivory-bright);
  margin: 0;
}

/* ============================================================
   WHAT AWAITS YOU — spotlight cards (6, modal on click)
   ============================================================ */
.hf-fair {
  background: var(--hf-espresso);
  padding: clamp(100px, 15vh, 200px) var(--hf-gutter);
}
.hf-fair-head { text-align: center; margin-bottom: clamp(60px, 10vh, 110px); }
.hf-fair-head .hf-eyebrow { letter-spacing: 0.32em; margin-bottom: 18px; }
.hf-cards {
  max-width: var(--hf-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hf-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--hf-rule);
  background: var(--hf-charcoal);
  min-height: 300px;
  padding: 26px 24px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  color: var(--hf-ivory);
  font-family: var(--hf-sans);
  transition: border-color 0.35s ease;
}
.hf-card-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.9s ease;
  filter: saturate(0.94);
}
.hf-card-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(27, 22, 17, 0.12) 0%,
    rgba(27, 22, 17, 0.42) 52%,
    rgba(27, 22, 17, 0.88) 100%);
}
.hf-card:hover { border-color: var(--hf-gold); }
.hf-card:hover .hf-card-bg { opacity: 0.92; transform: scale(1.1); }
.hf-card-num {
  font-family: var(--hf-serif);
  font-weight: 300;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.9;
  color: var(--hf-bronze);
  margin-bottom: auto;
}
.hf-card h3 {
  font-family: var(--hf-serif);
  font-weight: 500;
  font-size: clamp(24px, 2.2vw, 30px);
  margin: 14px 0 0;
  color: var(--hf-ivory-bright);
}
.hf-card p {
  margin: 0;
  color: var(--hf-body-on-dark);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 300;
}
.hf-card-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hf-gold-bright);
  font-weight: 600;
}
.hf-card-open::after { content: "\2192"; transition: transform 0.3s ease; }
.hf-card:hover .hf-card-open::after { transform: translateX(4px); }
@media (max-width: 980px) { .hf-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hf-cards { grid-template-columns: 1fr; } }

/* ---------- spotlight modal ---------- */
.hf-spot {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  background: rgba(15, 12, 8, 0.88);
  padding: clamp(10px, 3vw, 34px);
  overflow: auto;
}
.hf-spot.open { display: grid; place-items: center; animation: hfFade 0.3s ease; }
@keyframes hfFade { from { opacity: 0; } to { opacity: 1; } }
.hf-spot-panel {
  width: min(1000px, 100%);
  background: var(--hf-ivory);
  color: var(--hf-charcoal);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border: 1px solid var(--hf-frame);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  animation: hfRise 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes hfRise {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.hf-spot-stage {
  position: relative;
  background: #0e0b07;
  min-height: 360px;
  overflow: hidden;
}
.hf-spot-stage img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hf-spot-stage img.on { opacity: 1; animation: hfKenSlow 13s ease-out both; }
@keyframes hfKenSlow {
  from { transform: scale(1.02); }
  to   { transform: scale(1.13) translate(-1.5%, -1.5%); }
}
.hf-spot-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 36px 18px 14px;
  color: var(--hf-ivory);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, transparent, rgba(14, 11, 7, 0.85));
}
.hf-spot-arrows {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.hf-spot-arrows button {
  pointer-events: auto;
  margin: 0 10px;
  width: 38px; height: 38px;
  border: 1px solid rgba(241, 232, 214, 0.4);
  background: rgba(14, 11, 7, 0.45);
  color: var(--hf-ivory);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.hf-spot-arrows button:hover { background: rgba(14, 11, 7, 0.85); }
.hf-spot-dots {
  position: absolute;
  z-index: 4;
  left: 0; right: 0;
  bottom: 52px;
  display: flex;
  gap: 7px;
  justify-content: center;
}
.hf-spot-dots button {
  width: 7px; height: 7px;
  border: 0;
  background: rgba(241, 232, 214, 0.45);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.hf-spot-dots button.on { background: var(--hf-gold-bright); width: 20px; }
.hf-spot-info {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hf-spot-num {
  font-family: var(--hf-serif);
  font-weight: 300;
  font-size: 56px;
  line-height: 0.9;
  color: var(--hf-bronze);
}
.hf-spot-kicker {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--hf-bronze);
  font-weight: 600;
}
.hf-spot-info h2 {
  font-family: var(--hf-serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  margin: 0;
  color: var(--hf-charcoal);
  text-wrap: balance;
}
.hf-spot-lead {
  margin: 0;
  color: var(--hf-body-on-ivory);
  line-height: 1.7;
  font-size: 15.5px;
  font-weight: 400;
}
.hf-spot-facts {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hf-spot-facts li {
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--hf-charcoal);
  border: 1px solid rgba(138, 107, 62, 0.45);
  padding: 6px 12px;
}
.hf-spot-cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  background: var(--hf-gold);
  color: var(--hf-espresso);
  padding: 13px 26px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.25s ease;
}
.hf-spot-cta:hover { background: var(--hf-gold-bright); }
.hf-spot-nav {
  grid-column: 1 / -1;
  border-top: 1px solid var(--hf-rule-ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: #e9dfc9;
  font-size: 12px;
}
.hf-spot-nav button {
  background: none;
  border: 0;
  color: var(--hf-charcoal);
  font-family: var(--hf-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.2s ease;
}
.hf-spot-nav button:hover { color: var(--hf-bronze); }
.hf-spot-count {
  color: var(--hf-body-on-ivory);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
.hf-spot-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 65;
  width: 42px; height: 42px;
  border: 1px solid rgba(241, 232, 214, 0.35);
  background: rgba(14, 11, 7, 0.5);
  color: var(--hf-ivory);
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.hf-spot-close:hover { background: rgba(14, 11, 7, 0.9); }
@media (max-width: 760px) {
  .hf-spot-panel { grid-template-columns: 1fr; }
  .hf-spot-stage { min-height: 0; aspect-ratio: 4 / 3; }
}

/* ============================================================
   PULL QUOTE (warm charcoal)
   ============================================================ */
.hf-quote {
  background: var(--hf-charcoal);
  padding: clamp(110px, 18vh, 220px) clamp(34px, 8vw, 140px);
  text-align: center;
}
.hf-quote-mark {
  font-family: var(--hf-serif);
  font-size: 60px;
  color: var(--hf-bronze);
  line-height: 0;
}
.hf-quote p {
  font-family: var(--hf-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.34;
  color: var(--hf-ivory-bright);
  max-width: 1000px;
  margin: 24px auto 0;
  text-wrap: balance;
}
.hf-quote .hf-eyebrow { letter-spacing: 0.26em; margin-top: 36px; display: block; }

/* ============================================================
   GALLERY MOSAIC (espresso)
   ============================================================ */
.hf-gallery {
  background: var(--hf-espresso);
  padding: clamp(90px, 13vh, 170px) var(--hf-gutter);
}
.hf-gallery-inner { max-width: var(--hf-max-wide); margin: 0 auto; }
.hf-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(36px, 6vh, 64px);
  flex-wrap: wrap;
  gap: 20px;
}
.hf-gallery-head .hf-eyebrow { margin-bottom: 16px; display: block; }
.hf-gallery-title {
  font-family: var(--hf-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px);
  margin: 0;
  color: var(--hf-ivory-bright);
}
.hf-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 17vw, 230px);
  gap: 14px;
}
.hf-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.hf-mosaic .span2x2 { grid-column: span 2; grid-row: span 2; }
.hf-mosaic .span2w { grid-column: span 2; }
@media (max-width: 640px) {
  .hf-mosaic { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PLAN YOUR VISIT (ivory, hairline info table)
   ============================================================ */
.hf-visit {
  background: var(--hf-ivory);
  color: var(--hf-charcoal);
  padding: var(--hf-pad-section) var(--hf-gutter);
}
.hf-visit-inner { max-width: var(--hf-max); margin: 0 auto; }
.hf-visit-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(50px, 8vh, 90px);
}
.hf-visit-head .hf-eyebrow--bronze { margin-bottom: 20px; display: block; }
.hf-visit-date {
  font-family: var(--hf-serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.96;
  margin: 0;
  color: var(--hf-charcoal);
}
.hf-visit-date em { font-style: italic; color: var(--hf-bronze); }
.hf-visit-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--hf-body-on-ivory);
  margin: 0;
}
.hf-visit-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hf-visit-cell {
  padding: 34px 30px;
  border-top: 1px solid var(--hf-rule-ivory);
}
.hf-visit-cell:first-child { padding-left: 0; }
.hf-visit-cell:last-child { padding-right: 0; }
.hf-visit-cell + .hf-visit-cell { border-left: 1px solid rgba(34, 28, 21, 0.14); }
.hf-visit-cell-title {
  font-family: var(--hf-serif);
  font-size: 26px;
  color: var(--hf-bronze);
  margin-bottom: 10px;
}
.hf-visit-price {
  font-family: var(--hf-serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--hf-charcoal);
  margin-bottom: 10px;
}
.hf-visit-cell p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--hf-body-on-ivory);
  margin: 0;
}
@media (max-width: 900px) {
  .hf-visit-head { grid-template-columns: 1fr; align-items: start; }
  .hf-visit-table { grid-template-columns: 1fr 1fr; }
  .hf-visit-cell { padding: 26px 20px; }
  .hf-visit-cell:nth-child(odd) { padding-left: 0; border-left: 0; }
}
@media (max-width: 480px) {
  .hf-visit-table { grid-template-columns: 1fr; }
  .hf-visit-cell { padding-left: 0; padding-right: 0; border-left: 0 !important; }
}

/* ============================================================
   FINALE CTA (full-bleed, parallax, framed)
   ============================================================ */
.hf-finale {
  position: relative;
  height: clamp(500px, 80vh, 760px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hf-finale-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 22, 17, 0.66), rgba(27, 22, 17, 0.86));
}
.hf-finale-copy { position: relative; padding: 0 40px; max-width: 760px; z-index: 2; }
.hf-finale-copy .hf-eyebrow--bright { margin-bottom: 26px; display: block; }
.hf-finale-title {
  font-family: var(--hf-serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  margin: 0 0 26px;
  color: var(--hf-ivory-bright);
}
.hf-finale-title em { font-style: italic; }
.hf-finale-lede {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 236, 216, 0.86);
  max-width: 520px;
  margin: 0 auto 38px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.hf-footer {
  background: var(--hf-footer-black);
  color: rgba(241, 232, 214, 0.66);
  padding: clamp(60px, 9vh, 90px) var(--hf-gutter) 44px;
}
.hf-footer-grid {
  max-width: var(--hf-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(198, 161, 91, 0.2);
  padding-bottom: 48px;
}
.hf-footer-brand {
  font-family: var(--hf-serif);
  font-size: 28px;
  color: var(--hf-gold-warm);
  margin-bottom: 14px;
}
.hf-footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  max-width: 320px;
  margin: 0;
}
.hf-footer-h {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hf-gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.hf-footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
  font-weight: 300;
}
.hf-footer-links a:hover { color: var(--hf-gold-bright); }
.hf-footer-contact { font-size: 14px; line-height: 1.7; font-weight: 300; margin: 0; }
.hf-footer-legal {
  max-width: var(--hf-max);
  margin: 24px auto 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(241, 232, 214, 0.45);
}
@media (max-width: 760px) {
  .hf-footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   MOTION SAFETY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hf-hero-media img,
  .hf-spot-stage img.on { animation: none !important; }
  .hf-hero-cue { animation: none; }
  .hf-spot.open, .hf-spot-panel { animation: none; }
}
