/* =================================================================
   EMBER & ASH — Redesign concept
   Design system + components
   ================================================================= */

:root {
  /* Palette — warm charcoal & ember */
  --bg:        #15100c;
  --bg-2:      #0e0a07;
  --surface:   #1d1610;
  --surface-2: #251c14;
  --line:      rgba(244, 236, 221, 0.12);
  --line-soft: rgba(244, 236, 221, 0.07);

  --ember:        #e8631a;
  --ember-bright: #ff8b3d;
  --ember-deep:   #b8430e;
  --gold:         #d8a24a;

  --cream:     #f4ecdd;
  --cream-dim: #cabca7;
  --muted:     #9b8b79;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-display: clamp(2.8rem, 9vw, 7.5rem);
  --fs-h2:      clamp(2.1rem, 4.6vw, 3.6rem);
  --fs-h3:      clamp(1.4rem, 2.4vw, 1.9rem);
  --fs-lede:    clamp(1.05rem, 1.7vw, 1.3rem);

  /* Layout */
  --container: 1240px;
  --narrow:    760px;
  --radius:    6px;
  --radius-lg: 14px;
  --header-h:  74px;
  --ticker-h:  38px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }

/* Subtle film-grain texture overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--narrow); }

.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); position: relative; }
.section--dark { background: var(--bg-2); }

section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--ember);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { justify-content: center; }
.section-title { font-family: var(--serif); font-size: var(--fs-h2); font-optical-sizing: auto; }
.section-sub { color: var(--cream-dim); margin-top: 1rem; font-size: var(--fs-lede); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--ember); color: #fff; padding: 0.7rem 1.2rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(135deg, var(--ember), var(--ember-deep));
  color: #fff;
  box-shadow: 0 8px 30px -10px rgba(232, 99, 26, 0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px -10px rgba(255, 139, 61, 0.75); }
.btn--ghost {
  border-color: rgba(244, 236, 221, 0.4);
  color: var(--cream);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--cream); background: rgba(244, 236, 221, 0.08); transform: translateY(-2px); }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.85rem; }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--ember-bright); font-weight: 600; font-size: 0.95rem;
  padding: 0; transition: gap 0.3s var(--ease), color 0.3s;
}
.link-arrow:hover { gap: 0.85rem; color: var(--gold); }

.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
  vertical-align: middle;
  color: var(--gold);
  border: 1px solid rgba(216, 162, 74, 0.45);
  border-radius: 3px;
  padding: 0.12em 0.4em;
  margin-left: 0.25em;
  position: relative; top: -1px;
}

/* ---------- Reveal animation (progressive enhancement) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Ticker ---------- */
.ticker {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--ticker-h);
  background: var(--ember-deep);
  color: #fff;
  display: flex; align-items: center;
  overflow: hidden;
  transition: transform 0.45s var(--ease);
}
.ticker__track { display: inline-flex; align-items: center; gap: 1.5rem; white-space: nowrap; animation: ticker 38s linear infinite; padding-left: 1.5rem; }
.ticker__item { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; }
.ticker__dot { color: rgba(255,255,255,0.6); font-size: 0.6rem; }
@keyframes ticker { to { transform: translateX(-50%); } }
body.is-scrolled .ticker { transform: translateY(-100%); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: var(--ticker-h); left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: top 0.45s var(--ease), background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
body.is-scrolled .site-header {
  top: 0;
  background: rgba(14, 10, 7, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.brand__logo { height: 40px; width: auto; }
.nav { display: flex; gap: 2rem; }
.nav a {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em; color: var(--cream);
  position: relative; padding: 0.3rem 0; opacity: 0.9; transition: opacity 0.25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--ember); transition: width 0.3s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after, .nav a.is-current::after { width: 100%; }
.site-header__actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); transition: transform 0.3s var(--ease), opacity 0.3s; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(14, 10, 7, 0.97);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem clamp(1.5rem, 6vw, 3rem);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__nav a { font-family: var(--serif); font-size: 2rem; padding: 0.5rem 0; }
.mobile-menu__nav .btn { font-family: var(--sans); font-size: 1rem; margin-top: 1.5rem; align-self: flex-start; }
.mobile-menu__foot { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.4rem; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 4rem) 1.5rem 5rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(125% 85% at 50% 16%, rgba(232, 99, 26, 0.22), transparent 58%),
    radial-gradient(80% 55% at 50% 58%, rgba(10,7,5,0.55), transparent 70%),
    linear-gradient(180deg, rgba(12,8,5,0.80) 0%, rgba(12,8,5,0.60) 42%, rgba(12,8,5,0.94) 100%);
}
.hero__content { max-width: 880px; }
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: var(--fs-display); line-height: 0.98; letter-spacing: -0.02em;
  font-optical-sizing: auto;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero__title em { font-style: italic; color: var(--ember-bright); font-weight: 500; }
.hero__lede { font-size: var(--fs-lede); color: #ece4d6; max-width: 620px; margin: 1.6rem auto 0; text-shadow: 0 1px 18px rgba(0,0,0,0.55); }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.hero__meta { margin-top: 2rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid rgba(244,236,221,0.4); border-radius: 14px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px; background: var(--cream); transform: translateX(-50%); animation: scroll-cue 1.8s var(--ease) infinite; }
@keyframes scroll-cue { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 14px); } 100% { opacity: 0; } }

/* ---------- Story ---------- */
.story__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.story__title { font-family: var(--serif); font-size: var(--fs-h2); font-optical-sizing: auto; }
.story__body p { color: var(--cream-dim); font-size: var(--fs-lede); }
.story__body p + p { margin-top: 1.2rem; }
.story__stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.story__stats div { display: flex; flex-direction: column; }
.story__stat-num { font-family: var(--serif); font-size: 2.4rem; color: var(--ember-bright); line-height: 1; }
.story__stat-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

/* ---------- Venues ---------- */
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.venue-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.venue-card:hover { transform: translateY(-6px); border-color: rgba(232,99,26,0.4); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.8); }
.venue-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.venue-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.venue-card:hover .venue-card__media img { transform: scale(1.06); }
.venue-card__body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.venue-card__name { font-family: var(--serif); font-size: var(--fs-h3); }
.venue-card__tag { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.04em; margin-top: 0.3rem; }
.venue-card__desc { color: var(--cream-dim); margin-top: 0.9rem; font-size: 0.97rem; }
.venue-card__meta { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.6rem; border-top: 1px solid var(--line-soft); padding-top: 1.3rem; }
.venue-card__meta div { display: flex; flex-direction: column; }
.venue-card__meta dt { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.venue-card__meta dd { font-size: 0.95rem; margin-top: 0.1rem; }
.venue-card .link-arrow { margin-top: 1.5rem; }

/* ---------- Menus ---------- */
.menu-controls {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: center;
  margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.tabs { display: inline-flex; gap: 0.4rem; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 999px; padding: 0.35rem; }
.tab {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  padding: 0.55rem 1.4rem; border-radius: 999px; color: var(--cream-dim);
  transition: background 0.35s var(--ease), color 0.35s;
}
.tab.is-active { background: linear-gradient(135deg, var(--ember), var(--ember-deep)); color: #fff; box-shadow: 0 6px 20px -8px rgba(232,99,26,0.7); }
.tab:not(.is-active):hover { color: var(--cream); }

.filters { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.filters__label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-right: 0.25rem; }
.chip {
  font-size: 0.82rem; font-weight: 500; padding: 0.4rem 0.95rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--cream-dim);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.chip:hover { color: var(--cream); border-color: rgba(244,236,221,0.35); }
.chip.is-active { background: rgba(216,162,74,0.14); border-color: var(--gold); color: var(--gold); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fade-in 0.5s var(--ease); }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.menu-intro { font-family: var(--serif); font-style: italic; font-size: var(--fs-lede); color: var(--cream-dim); max-width: 640px; margin: 0 auto 3rem; text-align: center; }

.menu-columns { columns: 2; column-gap: clamp(2.5rem, 6vw, 5rem); }
.menu-group { break-inside: avoid; margin-bottom: 3rem; }
.menu-group--feature { background: var(--surface); border: 1px solid rgba(216,162,74,0.25); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; }
.menu-group__title {
  font-family: var(--serif); font-size: 1.5rem; color: var(--ember-bright);
  padding-bottom: 0.7rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 0.6rem;
}
.menu-group__note { color: var(--muted); font-style: italic; font-size: 0.92rem; margin: -0.6rem 0 1.2rem; }
.menu-list { display: flex; flex-direction: column; gap: 1.15rem; }
.menu-item { transition: opacity 0.3s; }
.menu-item__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.menu-item__name { font-size: 1.02rem; font-weight: 600; line-height: 1.3; letter-spacing: 0; flex: 1; }
.menu-item__price { color: var(--gold); font-weight: 600; font-size: 1rem; line-height: 1.3; white-space: nowrap; }
.menu-item__desc { color: var(--muted); font-size: 0.92rem; line-height: 1.55; margin-top: 0.3rem; max-width: 95%; }
.menu-panel.filtering .menu-item:not(.match) { display: none; }
.menu-panel.filtering .menu-group:not(.has-match) { display: none; }

.menu-legend { text-align: center; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.04em; margin-top: 1rem; }
.menu-legend strong { color: var(--gold); font-weight: 700; }
.menu-cta { text-align: center; margin-top: 2.5rem; }

/* ---------- What's On ---------- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.event-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 1.8rem; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s;
  position: relative; overflow: hidden;
}
.event-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(232,99,26,0.16), transparent 60%);
  transition: opacity 0.4s;
}
.event-card:hover { transform: translateY(-5px); border-color: rgba(232,99,26,0.35); }
.event-card:hover::before { opacity: 1; }
.event-card__day {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ember); border: 1px solid rgba(232,99,26,0.4); border-radius: 999px;
  padding: 0.3rem 0.8rem; margin-bottom: 1.1rem;
}
.event-card__name { font-family: var(--serif); font-size: 1.45rem; }
.event-card__desc { color: var(--cream-dim); font-size: 0.95rem; margin-top: 0.6rem; flex: 1; }
.event-card__meta { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-top: 1.1rem; letter-spacing: 0.03em; }
.event-card--cta { background: linear-gradient(150deg, rgba(232,99,26,0.14), var(--surface)); border-color: rgba(232,99,26,0.3); justify-content: center; }
.event-card--cta .link-arrow { margin-top: 1rem; }

/* ---------- Functions ---------- */
.functions__lead { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.functions__blurb { color: var(--cream-dim); font-size: var(--fs-lede); }
.spaces-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.space-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 2rem; transition: border-color 0.4s, transform 0.4s var(--ease);
}
.space-card:hover { border-color: rgba(216,162,74,0.4); transform: translateY(-4px); }
.space-card__name { font-family: var(--serif); font-size: var(--fs-h3); color: var(--cream); }
.space-card__desc { color: var(--cream-dim); margin-top: 0.8rem; font-size: 0.97rem; }

.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.4rem; }
.packages__item { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; background: rgba(0,0,0,0.15); }
.packages__item h4 { color: var(--gold); font-size: 1.05rem; font-family: var(--serif); }
.packages__item p { color: var(--muted); font-size: 0.9rem; margin-top: 0.4rem; }

.functions__cta { margin-top: clamp(2.5rem, 5vw, 3.5rem); text-align: center; padding: clamp(2rem, 5vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(120% 120% at 50% 0%, rgba(232,99,26,0.1), transparent 60%); }
.functions__cta p { font-family: var(--serif); font-size: var(--fs-h3); margin-bottom: 1.5rem; }
.functions__cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); }
.visit__info { display: flex; flex-direction: column; gap: 1.2rem; }
.location-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; background: var(--surface); }
.location-card__name { font-family: var(--serif); font-size: 1.4rem; }
.location-card__addr { color: var(--cream-dim); margin-top: 0.5rem; }
.location-card__hours { color: var(--muted); font-size: 0.92rem; margin-top: 0.3rem; }
.contact-line { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; padding-top: 0.4rem; }
.contact-line a { color: var(--cream); font-weight: 500; border-bottom: 1px solid var(--ember); padding-bottom: 2px; transition: color 0.3s; }
.contact-line a:hover { color: var(--ember-bright); }
.socials { display: flex; gap: 1.2rem; }
.socials a { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.socials a:hover { color: var(--gold); }

.visit__booking { display: flex; flex-direction: column; gap: 1.4rem; }
.map { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: 260px; background: linear-gradient(135deg, #241b14, #15100c); }
.map__placeholder {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  color: var(--cream-dim); font-size: 0.92rem; letter-spacing: 0.02em; text-align: center; padding: 1rem;
  background:
    repeating-linear-gradient(0deg, transparent 0 37px, rgba(244,236,221,0.045) 37px 38px),
    repeating-linear-gradient(90deg, transparent 0 37px, rgba(244,236,221,0.045) 37px 38px),
    radial-gradient(circle at 50% 42%, rgba(232,99,26,0.14), transparent 62%);
}
.map__pin { width: 34px; height: 34px; color: var(--ember); }
.map iframe { position: relative; z-index: 1; width: 100%; height: 100%; border: 0; filter: grayscale(0.25) contrast(1.05) brightness(0.9); }
.map__directions { position: absolute; right: 12px; bottom: 12px; z-index: 2; background: var(--ember); color: #fff; font-weight: 600; font-size: 0.85rem; padding: 0.5rem 1.05rem; border-radius: 999px; box-shadow: 0 6px 18px -6px rgba(0,0,0,0.6); transition: background 0.3s, transform 0.3s var(--ease); }
.map__directions:hover { background: var(--ember-bright); transform: translateY(-2px); }
.booking-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.2rem); }
.booking-form__title { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1.2rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.45rem; }
.field input, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--cream); padding: 0.8rem 1rem; font: inherit; font-size: 0.95rem; resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(232,99,26,0.18); }
.booking-form__or { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 1rem; }
.booking-form__or a { color: var(--ember-bright); font-weight: 600; }

/* ---------- FAQ ---------- */
.accordion { display: flex; flex-direction: column; }
.acc { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none; cursor: pointer; padding: 1.4rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--cream);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-family: var(--sans); font-size: 1.5rem; color: var(--ember); transition: transform 0.35s var(--ease); line-height: 1; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc__body { padding-bottom: 1.4rem; }
.acc__body p { color: var(--cream-dim); max-width: 62ch; }

/* ---------- Closing CTA band ---------- */
.cta-band { position: relative; padding: clamp(5rem, 12vw, 9rem) 1.5rem; text-align: center; overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__scrim { position: absolute; inset: 0; z-index: -1; background: radial-gradient(68% 70% at 50% 42%, rgba(10,7,5,0.66) 0%, rgba(10,7,5,0.30) 60%, transparent 80%), linear-gradient(180deg, rgba(14,10,7,0.40) 0%, rgba(14,10,7,0.38) 45%, rgba(14,10,7,0.82) 100%); }
.cta-band__content { text-shadow: 0 2px 22px rgba(0,0,0,0.6); }
.cta-band__title { font-family: var(--serif); font-size: var(--fs-h2); }
.cta-band__content p { color: #ece4d6; font-size: var(--fs-lede); margin: 0.8rem 0 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 5rem); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.site-footer__brand img { height: 44px; width: auto; margin-bottom: 1.2rem; }
.site-footer__brand p { color: var(--muted); font-size: 0.92rem; max-width: 30ch; }
.site-footer__col h4 { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.site-footer__col a, .site-footer__col p { display: block; color: var(--cream-dim); font-size: 0.92rem; margin-bottom: 0.6rem; transition: color 0.3s; }
.site-footer__col a:hover { color: var(--ember-bright); }
.site-footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.6rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.site-footer__bar p { color: var(--muted); font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header__actions .btn--primary { display: none; }
  .story__grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .functions__lead { grid-template-columns: 1fr; align-items: start; }
  .spaces-grid { grid-template-columns: 1fr 1fr; }
  .packages { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding-block: clamp(3.25rem, 9vw, 4.75rem); }
  .menu-columns { columns: 1; }
  .venue-grid, .events-grid, .spaces-grid { grid-template-columns: 1fr; }
  .menu-controls { flex-direction: column; align-items: stretch; }
  .tabs { justify-content: center; }
  .filters { justify-content: center; }
  .story__stats { gap: 1.25rem 2rem; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding-top: calc(var(--header-h) + 2rem); padding-bottom: 3.5rem; }
  .hero__lede { font-size: 1rem; line-height: 1.55; margin-top: 1.1rem; }
  .hero__meta { margin-top: 1.4rem; }
  .hero__cta { flex-direction: column; align-items: stretch; margin-top: 1.8rem; }
  .hero__cta .btn { width: 100%; }
  .section-sub { font-size: 1.05rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}
