/* ============================================================
   EMBER & ASH — Live-Fire Steakhouse
   Dark-luxury palette (playbook): near-black + warm off-white + gold/copper.
   Patterns: Mujo (restraint), Le Bernardin (prestige), Delbar (atmosphere),
   Cosme (private dining), Alinea (single-goal reserve).
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #0a0a0a;
  --bg-1:      #100e0c;
  --bg-2:      #16120d;
  --bg-3:      #1c1712;
  --line:      rgba(201,169,110,0.16);
  --line-soft: rgba(255,255,255,0.07);

  /* Ink (warm off-white, never sterile pure white) */
  --ink:       #f2ebdd;
  --ink-soft:  #cabfae;
  --ink-mute:  #8c8174;

  /* Accents */
  --gold:      #c9a96e;
  --gold-hi:   #e4c98c;
  --copper:    #b87333;
  --ember:     #e2682b;
  --ember-hot: #ff8a3d;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Film grain over the whole page — adds expensive texture to flat dark */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .035;
  mix-blend-mode: overlay;
  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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 10000;
  background: var(--gold); color: #1a1206; padding: 10px 18px; border-radius: 0 0 6px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

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

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: .005em;
  font-size: clamp(2rem, 5vw, 3.4rem);
}
.display--xl { font-size: clamp(2.4rem, 6.4vw, 4.6rem); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--ink-mute);
}
.eyebrow--gold { color: var(--gold); }

.amp { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ---------- Buttons ---------- */
.btn {
  --h: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--h); padding: 0 26px;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 2px;
  cursor: pointer; transition: all .35s var(--ease); white-space: nowrap;
}
.btn--sm { --h: 40px; padding: 0 18px; font-size: .72rem; letter-spacing: .1em; }
.btn--lg { --h: 58px; padding: 0 34px; font-size: .86rem; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  color: #1a1206;
  box-shadow: 0 0 0 0 rgba(201,169,110,.5);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(201,169,110,.7), 0 0 30px -8px rgba(226,104,43,.4);
}
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-hi); background: rgba(201,169,110,.05); }

.btn--quiet {
  background: transparent; color: var(--ink-soft);
  letter-spacing: .1em; padding: 0 4px;
  border-bottom: 1px solid var(--line); border-radius: 0; min-height: 44px;
}
.btn--quiet:hover { color: var(--gold-hi); border-color: var(--gold); }

.link-arrow {
  display: inline-block; margin-top: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
}
.link-arrow span { transition: transform .35s var(--ease); display: inline-block; }
.link-arrow:hover span { transform: translateX(6px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 84px; transition: height .4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
}
.site-header.is-stuck .header__inner { height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { color: var(--gold); display: grid; place-items: center; }
.brand__name {
  font-family: var(--serif); font-size: 1.45rem; letter-spacing: .02em; color: var(--ink);
  line-height: 1;
}
.brand__name .amp { color: var(--gold); margin: 0 1px; }
.brand__name--lg { font-size: 2rem; }

.nav { display: flex; gap: 34px; }
.nav a {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-soft); position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header__meta { display: flex; align-items: center; gap: 18px; }
.header__hours {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute);
  white-space: nowrap;
}

/* ============================================================
   HERO  (Mujo: wordmark + atmosphere + Reserve)
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 84px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background: #060504; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .66; }

/* Ember glow rising from the floor */
.hero__ember {
  position: absolute; left: 50%; bottom: -22%; transform: translateX(-50%);
  width: 130%; height: 85%;
  background:
    radial-gradient(60% 100% at 50% 100%, rgba(255,138,61,.30) 0%, rgba(226,104,43,.16) 32%, rgba(120,40,18,.10) 55%, transparent 74%),
    radial-gradient(34% 70% at 50% 100%, rgba(255,170,90,.32) 0%, transparent 70%);
  filter: blur(6px);
  animation: emberFlicker 7s ease-in-out infinite;
}
/* Drifting smoke */
.hero__smoke {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .5; mix-blend-mode: screen;
}
.hero__smoke--a {
  width: 60vw; height: 50vw; left: -10vw; bottom: -8vw;
  background: radial-gradient(circle, rgba(120,66,40,.5), transparent 65%);
  animation: drift 26s ease-in-out infinite;
}
.hero__smoke--b {
  width: 55vw; height: 45vw; right: -12vw; bottom: 4vw;
  background: radial-gradient(circle, rgba(90,58,40,.45), transparent 65%);
  animation: drift 32s ease-in-out infinite reverse;
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(75% 55% at 50% 50%, rgba(4,3,2,.52), transparent 72%),
    radial-gradient(120% 90% at 50% 18%, transparent 40%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(6,5,4,.65) 0%, transparent 28%, transparent 60%, rgba(6,5,4,.8) 100%);
}

.hero__content { position: relative; z-index: 2; text-align: center; padding-block: 8vh; }
.hero .eyebrow { margin-bottom: 28px; }
.wordmark {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.6rem, 13vw, 9.5rem);
  line-height: .92; letter-spacing: .01em; color: var(--ink);
  text-shadow: 0 2px 60px rgba(226,104,43,.18);
}
.wordmark .amp { color: var(--gold); font-style: italic; font-weight: 300; }
.hero__line {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: var(--ink-soft); margin-top: 22px; font-weight: 300;
  letter-spacing: .01em;
}
.hero__cta {
  display: flex; gap: 22px; justify-content: center; align-items: center;
  margin-top: 42px; flex-wrap: wrap;
}
.hero__meta {
  margin-top: 46px; font-size: .8rem; letter-spacing: .08em;
  color: var(--ink-mute); display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.hero__meta a:hover { color: var(--gold-hi); }
.hero__meta .dot { color: var(--gold); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 1px; height: 54px; background: linear-gradient(var(--gold), transparent);
  overflow: hidden;
}
.hero__scroll span {
  position: absolute; top: -54px; left: 0; width: 1px; height: 54px;
  background: linear-gradient(transparent, var(--gold-hi));
  animation: scrollPulse 2.6s ease-in-out infinite;
}

@keyframes emberFlicker {
  0%,100% { opacity: .92; transform: translateX(-50%) scaleY(1); }
  45%     { opacity: 1;   transform: translateX(-50%) scaleY(1.05); }
  70%     { opacity: .82; transform: translateX(-50%) scaleY(.98); }
}
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(4vw,-3vw) scale(1.08); }
}
@keyframes scrollPulse {
  0% { top: -54px; } 60%,100% { top: 54px; }
}

/* ============================================================
   PRESTIGE STRIP  (Le Bernardin)
   ============================================================ */
.prestige {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-1), var(--bg));
}
.prestige__inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: clamp(20px, 4vw, 52px); padding-block: 30px; text-align: center;
}
.prestige__item {
  display: flex; align-items: center; gap: 12px;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); line-height: 1.5;
}
.prestige__item em { color: var(--ink-mute); font-style: normal; letter-spacing: .08em; font-size: .68rem; }
.prestige__stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; }
.prestige__sep { width: 1px; height: 30px; background: var(--line); }
.prestige__rating { color: var(--ink); }
.prestige__num { font-family: var(--serif); font-size: 2.1rem; color: var(--gold-hi); line-height: 1; }
.prestige__rating span:last-child { color: var(--gold); font-size: .72rem; }
@media (max-width: 860px) { .prestige__sep { display: none; } }

/* ============================================================
   SHARED: section heads + atmosphere frames
   ============================================================ */
section { position: relative; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-sub { color: var(--ink-soft); margin-top: 18px; font-size: 1.05rem; }

/* Atmosphere frames — cinematic CSS scenes standing in for art-directed photography.
   Real photography drops straight into these aspect-locked frames. */
.frame {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  background: #0c0a08; border-radius: 3px; isolation: isolate;
}
.frame::after { /* grain + sheen inside each frame */
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.05), transparent 40%),
    radial-gradient(100% 100% at 50% 120%, rgba(0,0,0,.5), transparent 60%);
}
.frame figcaption {
  position: absolute; left: 18px; bottom: 16px; z-index: 4;
  font-family: var(--serif); font-style: italic; font-size: .95rem;
  color: var(--ink-soft); letter-spacing: .01em;
  text-shadow: 0 1px 12px rgba(0,0,0,.9);
}
/* Real photography sits over the CSS scene (which stays as a fallback), under the scrim + caption */
.frame__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; display: block;
}

/* Scene: open hearth */
.frame--hearth {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(70% 60% at 50% 88%, rgba(255,150,60,.55), transparent 62%),
    radial-gradient(40% 40% at 50% 95%, rgba(255,200,120,.6), transparent 70%),
    radial-gradient(120% 100% at 50% 100%, rgba(150,52,20,.5), transparent 70%),
    linear-gradient(180deg, #0a0807 0%, #140b06 55%, #2a1106 100%);
}
.frame--hearth::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(50% 30% at 50% 92%, rgba(255,170,70,.5), transparent 70%);
  filter: blur(8px); animation: emberFlicker 5s ease-in-out infinite;
}

/* Scene: dim dining room with warm light pools */
.frame--room {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(26% 50% at 22% 42%, rgba(226,150,70,.32), transparent 60%),
    radial-gradient(22% 44% at 70% 56%, rgba(214,130,60,.26), transparent 62%),
    radial-gradient(18% 36% at 90% 38%, rgba(201,169,110,.2), transparent 60%),
    linear-gradient(180deg, #110d09, #0a0807);
}
/* Scene: marble bar, amber backbar */
.frame--bar {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(180deg, rgba(226,140,60,.22), transparent 45%),
    repeating-linear-gradient(90deg, rgba(201,169,110,.08) 0 2px, transparent 2px 22px),
    radial-gradient(60% 50% at 50% 20%, rgba(255,170,90,.22), transparent 70%),
    linear-gradient(180deg, #15100a, #0a0807);
}

/* Scene: whiskey wall */
.frame--whiskey {
  aspect-ratio: 5 / 6;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,.45) 0 6px, transparent 6px 26px),
    linear-gradient(180deg, rgba(226,150,70,.35), rgba(120,60,30,.2) 60%, transparent),
    radial-gradient(50% 40% at 70% 70%, rgba(255,180,100,.4), transparent 60%),
    linear-gradient(180deg, #1a1109, #0a0706);
}

/* Private room scenes — candlelit */
.frame--cellar-room, .frame--hearth-room, .frame--ash-room { aspect-ratio: 3 / 2; }
.frame--cellar-room {
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,.4) 0 4px, transparent 4px 30px),
    radial-gradient(40% 50% at 50% 60%, rgba(201,169,110,.28), transparent 65%),
    linear-gradient(180deg, #140f0a, #0a0807);
}
.frame--hearth-room {
  background:
    radial-gradient(50% 60% at 78% 78%, rgba(255,150,60,.4), transparent 62%),
    radial-gradient(30% 40% at 30% 46%, rgba(226,150,70,.24), transparent 60%),
    linear-gradient(180deg, #130d08, #0a0807);
}
.frame--ash-room {
  background:
    radial-gradient(24% 40% at 20% 50%, rgba(226,150,70,.26), transparent 60%),
    radial-gradient(24% 40% at 50% 56%, rgba(214,140,70,.24), transparent 60%),
    radial-gradient(24% 40% at 80% 50%, rgba(201,169,110,.22), transparent 60%),
    linear-gradient(180deg, #110c08, #0a0807);
}

/* ============================================================
   STORY / THE HOUSE  (Delbar — atmosphere first)
   ============================================================ */
.story { padding-block: clamp(80px, 11vw, 150px); }
.story__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.story__copy h2 { margin-block: 16px 26px; }
.story__copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 52ch; }
.story__band {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(36px, 5vw, 64px);
}

/* ============================================================
   THE CUTS (menu)
   ============================================================ */
.menu {
  padding-block: clamp(80px, 11vw, 150px);
  background: linear-gradient(180deg, var(--bg), var(--bg-1) 40%, var(--bg));
  border-block: 1px solid var(--line-soft);
}
.menu__list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px) clamp(40px, 7vw, 96px);
}
.cut { padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.cut__head { display: flex; align-items: baseline; gap: 14px; }
.cut__head h3 {
  font-family: var(--serif); font-weight: 500; font-size: 1.6rem; color: var(--ink);
  letter-spacing: .01em; white-space: nowrap;
}
.cut__dots { flex: 1; border-bottom: 1px dotted rgba(201,169,110,.4); transform: translateY(-4px); }
.cut__price {
  font-family: var(--serif); font-size: 1.6rem; color: var(--gold-hi); white-space: nowrap;
}
.cut__price small { font-size: .9rem; color: var(--ink-mute); font-family: var(--sans); letter-spacing: .04em; }
.cut p { color: var(--ink-soft); font-size: .96rem; margin-top: 10px; max-width: 44ch; }

.menu__foot {
  margin-top: clamp(48px, 6vw, 72px); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.menu__note { color: var(--ink-mute); font-size: .9rem; max-width: 52ch; }

/* ============================================================
   THE CELLAR  (Wine & Whiskey)
   ============================================================ */
.cellar { padding-block: clamp(80px, 11vw, 150px); overflow: hidden; }
.cellar__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 80% at 88% 50%, rgba(184,115,51,.10), transparent 60%);
}
.cellar__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.cellar__copy h2 { margin-block: 16px 24px; }
.cellar__copy > p { color: var(--ink-soft); max-width: 50ch; }
.cellar__points { list-style: none; margin: 30px 0 26px; }
.cellar__points li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 15px 0; border-top: 1px solid var(--line-soft); color: var(--ink-soft);
  font-size: .98rem;
}
.cellar__points li:last-child { border-bottom: 1px solid var(--line-soft); }
.cellar__points span {
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold-hi);
  min-width: 86px; letter-spacing: .01em;
}

/* ============================================================
   PRIVATE DINING  (Cosme — high-margin)
   ============================================================ */
.private {
  padding-block: clamp(90px, 12vw, 160px);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(184,115,51,.08), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg));
  border-top: 1px solid var(--line);
}
.rooms {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 34px);
  margin-bottom: clamp(56px, 8vw, 96px);
}
.room {
  border: 1px solid var(--line-soft); border-radius: 3px; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.room:hover {
  transform: translateY(-6px); border-color: var(--gold);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8), 0 0 40px -20px rgba(201,169,110,.4);
}
.room .frame { border: 0; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
.room__body { padding: 26px 26px 30px; }
.room__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.room__head h3 { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; color: var(--ink); }
.room__cap {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  white-space: nowrap; padding-top: 6px;
}
.room__body p { color: var(--ink-mute); font-size: .94rem; margin-top: 12px; }

/* Inquiry funnel */
.inquiry {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 5vw, 72px);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line); border-radius: 4px;
  background: linear-gradient(160deg, rgba(28,23,18,.7), rgba(10,10,10,.6));
}
.inquiry__intro h3 { margin-bottom: 16px; font-size: clamp(1.8rem,3vw,2.4rem); }
.inquiry__intro > p { color: var(--ink-soft); }
.inquiry__assure { list-style: none; margin: 24px 0; }
.inquiry__assure li {
  position: relative; padding-left: 24px; margin-bottom: 12px; color: var(--ink-soft); font-size: .95rem;
}
.inquiry__assure li::before {
  content: ""; position: absolute; left: 0; top: .65em; width: 10px; height: 1px; background: var(--gold);
}
.inquiry__call { color: var(--ink-mute); font-size: .92rem; margin-top: 20px; }
.inquiry__call a { color: var(--gold-hi); border-bottom: 1px solid var(--line); }

.inquiry__form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-content: start; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500;
}
.field .opt { text-transform: none; letter-spacing: .02em; color: rgba(140,129,116,.7); }
.field input, .field select, .field textarea {
  background: rgba(0,0,0,.35); border: 1px solid var(--line-soft); border-radius: 2px;
  color: var(--ink); font-family: var(--sans); font-size: .95rem; padding: 13px 14px;
  transition: border-color .3s var(--ease), background .3s var(--ease); width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(0,0,0,.5);
}
.field select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23c9a96e' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer;
}
.field input[type="date"] { cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: rgba(140,129,116,.6); }
.inquiry__submit { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 4px; }
.inquiry__fineprint { color: var(--ink-mute); font-size: .82rem; }
.inquiry__success {
  grid-column: 1/-1; margin-top: 6px; padding: 16px 18px;
  border: 1px solid var(--gold); border-radius: 3px; background: rgba(201,169,110,.08);
  color: var(--gold-hi); font-family: var(--serif); font-style: italic; font-size: 1.1rem;
}

/* ============================================================
   RESERVE  (Alinea — single goal)
   ============================================================ */
.reserve {
  padding-block: clamp(100px, 14vw, 190px); text-align: center; overflow: hidden;
  border-top: 1px solid var(--line);
}
.reserve__bg { position: absolute; inset: 0; z-index: 0; background: #060504; }
.reserve__ember {
  position: absolute; left: 50%; bottom: -30%; transform: translateX(-50%);
  width: 120%; height: 80%;
  background: radial-gradient(50% 100% at 50% 100%, rgba(255,138,61,.26), rgba(150,52,20,.12) 40%, transparent 72%);
  filter: blur(10px); animation: emberFlicker 8s ease-in-out infinite;
}
.reserve__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.reserve h2 { margin-block: 16px 18px; }
.reserve__sub { color: var(--ink-soft); margin-bottom: 44px; }

.resy {
  display: flex; align-items: flex-end; gap: 14px; justify-content: center; flex-wrap: wrap;
  padding: 22px; border: 1px solid var(--line); border-radius: 4px;
  background: linear-gradient(160deg, rgba(28,23,18,.8), rgba(10,10,10,.7));
  backdrop-filter: blur(6px);
}
.resy__field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.resy__field label {
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute);
}
.resy__field input, .resy__field select {
  background: rgba(0,0,0,.4); border: 1px solid var(--line-soft); border-radius: 2px;
  color: var(--ink); font-family: var(--sans); font-size: .95rem; padding: 13px 16px; min-width: 150px;
}
.resy__field select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23c9a96e' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer;
}
.resy__field input:focus, .resy__field select:focus { outline: none; border-color: var(--gold); }
.resy__go { align-self: stretch; }
.reserve__alt { margin-top: 26px; color: var(--ink-mute); font-size: .9rem; }
.reserve__alt a { color: var(--gold-hi); border-bottom: 1px solid var(--line); }

/* ============================================================
   VISIT
   ============================================================ */
.visit { padding-block: clamp(80px, 11vw, 150px); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 96px); }
.visit__col h2 { margin-block: 14px 22px; }
.visit__address { font-style: normal; font-family: var(--serif); font-size: 1.5rem; color: var(--ink-soft); line-height: 1.5; }
.visit__links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.visit__note { color: var(--ink-mute); font-size: .88rem; margin-top: 22px; max-width: 44ch; }

.hours { width: 100%; border-collapse: collapse; }
.hours tr { border-bottom: 1px solid var(--line-soft); }
.hours th, .hours td { text-align: left; padding: 13px 0; font-weight: 400; }
.hours th { color: var(--ink-soft); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.hours td { color: var(--ink); font-family: var(--serif); font-size: 1.15rem; text-align: right; }
.hours tr.is-today { color: var(--gold-hi); }
.hours tr.is-today th { color: var(--gold); }
.hours tr.is-today td { color: var(--gold-hi); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), #060504);
  padding-top: clamp(56px, 7vw, 84px);
}
.footer__grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
}
.footer__tag { color: var(--ink-mute); margin-top: 16px; font-size: .92rem; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { color: var(--ink-soft); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.footer__nav a:hover { color: var(--gold-hi); }
.footer__contact p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 8px; }
.footer__contact a:hover { color: var(--gold-hi); }
.footer__hours { color: var(--ink-mute) !important; font-size: .85rem !important; }
.footer__social { margin-top: 16px; display: flex; gap: 10px; align-items: center; }
.footer__social a { color: var(--gold); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer__social span { color: var(--ink-mute); }
.footer__base {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-block: 26px; border-top: 1px solid var(--line-soft);
  color: var(--ink-mute); font-size: .78rem; letter-spacing: .06em;
}
.footer__legal a:hover { color: var(--gold-hi); }

/* ============================================================
   MOBILE STICKY BAR  (Strange Taco Bar)
   ============================================================ */
.mobilebar { display: none; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(22px); }   /* only hide when JS is present */
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__ember, .hero__smoke, .frame--hearth::before, .reserve__ember, .hero__scroll span { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav { display: none; }
  .story__grid, .cellar__grid, .inquiry, .visit__grid { grid-template-columns: 1fr; }
  .cellar__grid { direction: ltr; }
  .frame--whiskey { aspect-ratio: 16/10; }
  .rooms { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .inquiry__form { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .header__hours { display: none; }
  .menu__list { grid-template-columns: 1fr; }
  .story__band { grid-template-columns: 1fr; }
  .inquiry__form { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cut__head h3 { font-size: 1.4rem; }
  .resy { width: 100%; }
  .resy__field { flex: 1 1 100%; }
  .resy__field input, .resy__field select { width: 100%; }

  /* Sticky bottom action bar */
  .mobilebar {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
    background: rgba(10,10,10,.92); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
  }
  .mobilebar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    min-height: 46px; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--ink-soft); border-radius: 3px;
  }
  .mobilebar__primary {
    background: linear-gradient(180deg, var(--gold-hi), var(--gold)); color: #1a1206 !important;
    font-weight: 600; font-size: .8rem !important; letter-spacing: .12em;
  }
  main { padding-bottom: 64px; }
}

@media (max-width: 420px) {
  .hero__cta { flex-direction: column; gap: 16px; }
  .hero__cta .btn { width: 100%; }
  .prestige__inner { gap: 18px; }
}
