/* ═══ Smoke's Bistro — Ember & Char ═══ */
:root {
  --charcoal: #16130f;
  --char: #262019;
  --char-2: #2f2822;
  --smoke: #8a837c;
  --cream: #f4efe7;
  --ember: #d9591b;
  --copper: #b0763d;
  --display: "Marcellus", serif;
  --editorial: "Fraunces", serif;
  --body: "Epilogue", sans-serif;
}

* { margin: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--ember); color: var(--cream); }

.kicker {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 18px;
}
h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: .01em;
  margin-bottom: 28px;
}
h2 em { font-family: var(--editorial); font-style: italic; font-weight: 340; color: var(--copper); }

.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border: 0;
  cursor: pointer;
  transition: all .35s ease;
}
.btn-ember {
  background: var(--ember);
  color: var(--cream);
  box-shadow: 0 0 0 0 rgba(217, 89, 27, 0);
}
.btn-ember:hover { background: #e8651f; box-shadow: 0 6px 34px -6px rgba(217, 89, 27, .55); transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(244, 239, 231, .3); color: var(--cream); }
.btn-ghost:hover { border-color: var(--ember); color: var(--ember); }
.btn-ink { background: var(--charcoal); color: var(--cream); }
.btn-ink:hover { background: var(--char); color: var(--ember); transform: translateY(-1px); }

/* ═══ Entry card (Virtue's popup, politely) ═══ */
.veil[hidden] { display: none; } /* author display:grid would otherwise override the hidden attribute */
.veil {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(12, 10, 8, .72);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; transition: opacity .45s ease;
}
.veil.show { opacity: 1; }
.entry-card {
  position: relative;
  background: var(--cream);
  color: var(--charcoal);
  max-width: 470px;
  padding: 54px 46px 46px;
  text-align: center;
  transform: translateY(14px);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, .6);
}
.veil.show .entry-card { transform: translateY(0); }
.entry-card::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(22, 19, 15, .18);
  pointer-events: none;
}
.entry-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: .32em;
  text-transform: uppercase; color: var(--ember); margin-bottom: 16px;
}
.entry-card h2 { font-size: clamp(24px, 3vw, 31px); margin-bottom: 14px; }
.entry-body { font-size: 14.5px; color: #4c463f; margin-bottom: 26px; }
.entry-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.entry-actions .btn { padding: 14px 19px; font-size: 10.5px; }
.entry-close {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: none; border: none; font-size: 26px; line-height: 1;
  color: var(--charcoal); cursor: pointer; padding: 6px;
  transition: color .25s, transform .25s;
}
.entry-close:hover { color: var(--ember); transform: rotate(90deg); }

:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 2px; }
.entry-close:focus { outline: none; }
.entry-close:focus-visible { outline: 2px solid var(--ember); }

/* ═══ Opening brand reveal ═══ */
.brand-intro {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  pointer-events: none;
  animation: brand-intro-hide .01s linear 1.06s forwards;
}
.brand-intro::before,
.brand-intro::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 50.1%;
  background: var(--charcoal);
  animation-duration: .62s;
  animation-delay: .44s;
  animation-timing-function: cubic-bezier(.76, 0, .24, 1);
  animation-fill-mode: forwards;
}
.brand-intro::before { left: 0; animation-name: brand-curtain-left; }
.brand-intro::after { right: 0; animation-name: brand-curtain-right; }
.brand-intro img {
  position: relative; z-index: 1;
  width: clamp(138px, 15vw, 190px);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  opacity: 0;
  animation: brand-mark-reveal .78s cubic-bezier(.22, 1, .36, 1) forwards;
}
@keyframes brand-mark-reveal {
  0% { opacity: 0; transform: scale(.9); }
  28%, 58% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.97); }
}
@keyframes brand-curtain-left { to { transform: translateX(-101%); } }
@keyframes brand-curtain-right { to { transform: translateX(101%); } }
@keyframes brand-intro-hide { to { visibility: hidden; } }

/* ═══ Hero — Canlis mechanic ═══ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-media, .hero-media video, .hero-still, #embers, .hero-grade { position: absolute; inset: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.hero-media video.live { opacity: 1; }
.hero-still {
  background: url("../photos/hero-lamb-chops.jpg") center 55% / cover no-repeat;
  animation: kenburns 34s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.14) translateY(-2.2%); }
}
#embers { width: 100%; height: 100%; z-index: 2; }
.hero-grade {
  z-index: 3;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(217, 89, 27, .22), transparent 55%),
    linear-gradient(to bottom, rgba(22, 19, 15, .82) 0%, rgba(22, 19, 15, .42) 30%, rgba(22, 19, 15, .38) 55%, rgba(22, 19, 15, .8));
}
.hero-brand {
  position: absolute; z-index: 6; top: 24px; left: 50%; transform: translateX(-50%);
  width: clamp(96px, 9vw, 132px); background: #fff; box-shadow: 0 16px 48px rgba(0, 0, 0, .24);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-brand:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 20px 54px rgba(0, 0, 0, .3); }
.hero-brand img { display: block; width: 100%; height: auto; }

.hero-lockup { position: relative; z-index: 4; text-align: center; padding: 0 20px; }
.hero-over {
  font-size: 11px; font-weight: 500; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(244, 239, 231, .75); margin-bottom: 26px;
  opacity: 0; animation: rise 1s ease .3s forwards;
}
.wordmark {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(58px, 11vw, 150px);
  letter-spacing: .18em;
  text-indent: .18em; /* optically recenter */
  line-height: 1;
  text-shadow: 0 6px 60px rgba(0, 0, 0, .45);
  opacity: 0; animation: rise 1.1s ease .55s forwards;
}
.hero-under {
  font-size: clamp(12px, 1.4vw, 16px); font-weight: 300; letter-spacing: .9em; text-indent: .9em;
  color: rgba(244, 239, 231, .85); margin-top: 18px;
  opacity: 0; animation: rise 1s ease .85s forwards;
}
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Canlis right-rail nav */
.rail {
  position: absolute; z-index: 5;
  right: 44px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: flex-end; gap: 17px;
}
.rail a {
  font-size: 11.5px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase;
  text-decoration: none; color: rgba(244, 239, 231, .85);
  transition: color .3s, letter-spacing .3s;
  opacity: 0; animation: rise .8s ease forwards;
}
.rail a:nth-child(1) { animation-delay: .9s; }
.rail a:nth-child(2) { animation-delay: 1.0s; }
.rail a:nth-child(3) { animation-delay: 1.1s; }
.rail a:nth-child(4) { animation-delay: 1.2s; }
.rail a:nth-child(5) { animation-delay: 1.3s; }
.rail a:nth-child(6) { animation-delay: 1.4s; }
.rail a:hover { color: var(--ember); letter-spacing: .32em; }
.rail a:first-child { color: var(--cream); border-bottom: 1px solid var(--ember); padding-bottom: 3px; }
.rail a:first-child:hover { color: var(--ember); }

.scroll-cue {
  position: absolute; z-index: 5; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px; overflow: hidden;
}
.scroll-cue span {
  display: block; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--cream));
  animation: drop 2.2s ease-in-out infinite;
}
@keyframes drop { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* Persistent reserve pill */
.reserve-pill {
  position: fixed; z-index: 50; top: 26px; right: 26px;
  font-size: 11px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  text-decoration: none; color: var(--cream);
  background: rgba(22, 19, 15, .72); backdrop-filter: blur(8px);
  border: 1px solid rgba(217, 89, 27, .6);
  padding: 13px 24px; border-radius: 999px;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .4s, transform .4s, background .3s;
}
.reserve-pill.on { opacity: 1; transform: none; pointer-events: auto; }
.reserve-pill:hover { background: var(--ember); border-color: var(--ember); }
.mobile-actions { display: none; }

/* ═══ Sections ═══ */
section { padding: 120px clamp(24px, 6vw, 90px); max-width: 1360px; margin: 0 auto; }

/* Story */
.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.story-text p:not(.kicker) { color: #c9c2b8; max-width: 46ch; margin-bottom: 20px; font-size: 15.5px; }
.story-text .btn { margin-top: 14px; }
.story-text .story-link { font-size: clamp(21px, 2vw, 28px); line-height: 1.2; }
.story-media { position: relative; }
.story-photo.main {
  width: 88%; aspect-ratio: 3 / 3.6; object-fit: cover;
  filter: saturate(.9) brightness(.92);
}
.story-photo.tuck {
  position: absolute; right: -2%; bottom: -9%;
  width: 46%; aspect-ratio: 1; object-fit: cover;
  border: 6px solid var(--charcoal);
  filter: saturate(.95);
}

/* Kitchen gallery */
.food-gallery { padding-top: 76px; }
.food-gallery-heading {
  display: flex; align-items: end; justify-content: space-between; gap: 40px;
  margin-bottom: 44px;
}
.food-gallery-heading h2 { margin-bottom: 0; }
.food-gallery-note { max-width: 36ch; color: #c9c2b8; font-size: 14px; }
.food-gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: start;
}
.food-gallery-card {
  aspect-ratio: 3 / 4; overflow: hidden; background: var(--char);
}
.food-gallery-card:nth-child(even) { margin-top: 38px; }
.food-gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.96) contrast(1.02) brightness(.94);
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .5s;
}
.food-gallery-card:nth-child(3) img { object-position: 50% 42%; }
.food-gallery-card:hover img {
  transform: scale(1.035); filter: saturate(1.04) contrast(1.03) brightness(1);
}

/* Order & catering */
.ways { border-top: 1px solid rgba(244, 239, 231, .08); }
.ways-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.way-card {
  min-height: 360px; padding: clamp(30px, 4vw, 52px);
  background: var(--char); border: 1px solid rgba(244, 239, 231, .08);
  display: flex; flex-direction: column; align-items: flex-start;
}
.way-card:nth-child(2) { background: linear-gradient(145deg, var(--char), #38251b); }
.way-number { font-family: var(--editorial); font-style: italic; color: var(--ember); margin-bottom: auto; }
.way-card h3 { font-family: var(--display); font-size: clamp(27px, 3vw, 38px); font-weight: 400; margin: 38px 0 12px; }
.way-card > p:not(.way-number) { color: #c9c2b8; max-width: 48ch; margin-bottom: 28px; }

.catering {
  max-width: none; display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(42px, 7vw, 110px); align-items: start;
  padding-left: max(24px, calc((100vw - 1360px) / 2 + 6vw));
  padding-right: max(24px, calc((100vw - 1360px) / 2 + 6vw));
  background: var(--char);
}
.catering-copy > p:not(.kicker, .catering-note) { color: #c9c2b8; max-width: 46ch; margin-bottom: 24px; }
.catering-note { color: var(--smoke); font-size: 12.5px; max-width: 48ch; padding-top: 22px; border-top: 1px solid rgba(244, 239, 231, .12); }
.catering-copy .phone { margin-top: 24px; }
.catering-journey {
  padding: clamp(30px, 4vw, 48px); background: var(--cream); color: var(--charcoal);
  box-shadow: 0 28px 70px -44px rgba(0, 0, 0, .9);
}
.journey-kicker { color: var(--ember); font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 24px; }
.journey-steps { list-style: none; padding: 0; margin: 0 0 30px; display: grid; }
.journey-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: center; padding: 18px 0; border-top: 1px solid rgba(22, 19, 15, .12); }
.journey-steps li:last-child { border-bottom: 1px solid rgba(22, 19, 15, .12); }
.journey-steps li > span { font-family: var(--editorial); font-style: italic; color: var(--ember); }
.journey-steps strong, .journey-steps small { display: block; }
.journey-steps strong { font-family: var(--display); font-size: 19px; font-weight: 400; }
.journey-steps small { color: #71685f; font-size: 12px; margin-top: 2px; }
.journey-note { color: #71685f; font-size: 11.5px; line-height: 1.65; margin-top: 20px; max-width: 55ch; }

/* Catering wizard — adapted from the Perfect Perfections booking flow */
body.catering-open { overflow: hidden; }
.catering-modal[hidden] { display: none; }
.catering-modal {
  position: fixed; inset: 0; z-index: 400; display: grid; place-items: center;
  padding: 20px; background: rgba(10, 8, 6, .78); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .25s ease;
}
.catering-modal.open { opacity: 1; }
.catering-dialog {
  width: min(760px, 100%); max-height: min(92svh, 900px); overflow-y: auto;
  background: var(--cream); color: var(--charcoal); border-radius: 18px;
  box-shadow: 0 42px 100px -28px rgba(0, 0, 0, .86);
  transform: translateY(18px) scale(.985); transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}
.catering-modal.open .catering-dialog { transform: none; }
.wizard-header {
  position: sticky; top: 0; z-index: 4; display: grid; grid-template-columns: 42px 1fr 42px; gap: 14px; align-items: center;
  padding: 22px clamp(20px, 4vw, 34px); background: rgba(244, 239, 231, .96); border-bottom: 1px solid rgba(22, 19, 15, .1); backdrop-filter: blur(10px);
}
.wizard-header h2 { font-size: clamp(20px, 3vw, 27px); line-height: 1.15; margin: 2px 0 0; }
.wizard-count { color: var(--ember); font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.wizard-icon { width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(22, 19, 15, .07); color: var(--charcoal); cursor: pointer; font-size: 23px; transition: background .2s, color .2s; }
.wizard-icon:hover { background: var(--charcoal); color: var(--cream); }
.wizard-back[hidden] { visibility: hidden; display: block; }
.wizard-progress { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; padding: 13px clamp(24px, 5vw, 42px) 0; }
.wizard-progress span { height: 3px; border-radius: 999px; background: rgba(22, 19, 15, .14); transition: background .25s; }
.wizard-progress span.active { background: var(--ember); }
.wizard-step { padding: clamp(26px, 5vw, 42px); }
.wizard-step[hidden] { display: none; }
.wizard-fieldset { border: 0; padding: 0; margin: 0 0 28px; }
.wizard-fieldset legend, .wizard-field {
  display: grid; gap: 8px; width: 100%; color: #665d55;
  font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}
.wizard-fieldset legend { color: var(--charcoal); font-family: var(--display); font-size: 18px; font-weight: 400; letter-spacing: .02em; text-transform: none; margin-bottom: 14px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card span {
  min-height: 58px; display: flex; align-items: center; padding: 14px 16px;
  border: 1px solid rgba(22, 19, 15, .18); background: #fffdf9; color: #4c463f;
  font-size: 12px; line-height: 1.35; transition: border .2s, background .2s, color .2s, transform .2s;
}
.choice-card:hover span { border-color: var(--copper); transform: translateY(-1px); }
.choice-card input:checked + span { border-color: var(--charcoal); background: var(--charcoal); color: var(--cream); }
.choice-card input:focus-visible + span { outline: 2px solid var(--ember); outline-offset: 2px; }
.priced-choice > span { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
.priced-choice strong { font-weight: 600; }
.priced-choice small { color: var(--copper); font-size: 9.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.priced-choice input:checked + span small { color: #e7b889; }
.wizard-help { color: #81776e; font-size: 11px; margin-top: 10px; }
.catering-menu-intro { margin: -5px 0 20px; max-width: 62ch; line-height: 1.55; }
.catering-menu-group + .catering-menu-group { margin-top: 24px; }
.catering-menu-group h3 {
  margin-bottom: 10px; color: #6e6258; font-size: 9.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
}
.menu-choices .choice-card span { min-height: 62px; }
.menu-choice { display: grid; align-content: start; gap: 7px; }
.menu-quantity {
  display: grid; grid-template-columns: 36px 1fr 36px; align-items: center;
  border: 1px solid rgba(22, 19, 15, .18); background: #fffdf9;
}
.menu-quantity[hidden] { display: none; }
.menu-quantity button { height: 34px; border: 0; background: transparent; color: var(--charcoal); cursor: pointer; font-size: 16px; }
.menu-quantity button:hover { background: rgba(22, 19, 15, .06); }
.menu-quantity input { width: 100%; min-width: 0; height: 34px; border: 0; border-inline: 1px solid rgba(22, 19, 15, .12); background: transparent; text-align: center; appearance: textfield; }
.menu-quantity input::-webkit-inner-spin-button { appearance: none; }
.wizard-group-error { min-height: 1.4em; color: #9b2f18; font-size: 11px; margin-top: 8px; }
.wizard-fields { display: grid; gap: 16px; margin-bottom: 26px; }
.wizard-fields.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wizard-fields.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wizard-field input, .wizard-field select, .wizard-field textarea {
  width: 100%; border: 1px solid rgba(22, 19, 15, .22); border-radius: 0;
  background: #fffdf9; color: var(--charcoal); font: 400 15px/1.45 var(--body);
  padding: 13px 14px; letter-spacing: 0; text-transform: none;
}
.wizard-field textarea { resize: vertical; min-height: 110px; }
.wizard-field input:focus, .wizard-field select:focus, .wizard-field textarea:focus { outline: 2px solid var(--ember); outline-offset: 1px; border-color: var(--ember); }
.guest-control { display: grid; grid-template-columns: 40px 1fr 40px; border: 1px solid rgba(22, 19, 15, .22); background: #fffdf9; }
.guest-control input { border: 0; padding-inline: 4px; text-align: center; appearance: textfield; }
.guest-control input::-webkit-inner-spin-button { appearance: none; }
.guest-control button { border: 0; background: transparent; color: var(--charcoal); cursor: pointer; font-size: 18px; }
.guest-control button:hover { background: rgba(22, 19, 15, .06); }
.wizard-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 30px; }
.wizard-actions .btn:last-child { margin-left: auto; }
.catering-dialog .btn-ghost { border-color: rgba(22, 19, 15, .22); color: var(--charcoal); }
.catering-dialog .btn-ghost:hover { border-color: var(--ember); color: var(--ember); }
.wizard-review { padding: 24px; background: var(--charcoal); color: var(--cream); margin: 8px 0 18px; }
.wizard-review-kicker { color: var(--ember); font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.wizard-review h3 { font-family: var(--display); font-size: 23px; font-weight: 400; margin: 4px 0 17px; }
.wizard-review dl { display: grid; grid-template-columns: 130px 1fr; gap: 8px 14px; font-size: 12px; }
.wizard-review dt { color: #a89f96; }
.wizard-review dd { margin: 0; }
.quote-review { margin-top: 0; }
.quote-lines { display: grid; gap: 11px; padding-bottom: 18px; border-bottom: 1px solid rgba(244, 239, 231, .16); }
.quote-line { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: baseline; font-size: 12px; }
.quote-line span:first-child { color: #d7cec4; }
.quote-line small { display: block; margin-top: 3px; color: #8f867e; font-size: 9px; }
.quote-totals { margin-top: 16px; }
.quote-totals .quote-total-label, .quote-totals .quote-total-value { padding-top: 9px; border-top: 1px solid rgba(244, 239, 231, .16); color: var(--cream); font-size: 16px; }
.quote-deposit {
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
  margin: 0 0 18px; padding: 20px; background: rgba(47, 107, 79, .1); color: #2d5c45;
}
.quote-deposit span { display: grid; gap: 4px; }
.quote-deposit small { color: #54705f; font-size: 10px; }
.quote-deposit > strong { font-family: var(--editorial); font-size: 25px; font-style: italic; }
.quote-event-review { background: #2a251f; }
.deposit-checkout-heading { text-align: center; padding: 24px 0 28px; }
.deposit-checkout-heading h2 { margin: 8px 0; font-family: var(--editorial); font-size: clamp(42px, 8vw, 66px); font-style: italic; }
.deposit-checkout-heading > p:last-child { color: #665d55; font-size: 12px; }
.square-checkout-card { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding: 20px; border: 1px solid rgba(22, 19, 15, .16); background: #fffdf9; }
.square-checkout-card p { margin-top: 4px; color: #746a61; font-size: 10.5px; line-height: 1.5; }
.square-lock { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--charcoal); color: var(--cream); }
.checkout-button { display: flex; justify-content: center; margin-top: 18px; text-align: center; }
.checkout-button[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.deposit-note { padding: 16px 18px; border-left: 3px solid var(--ember); background: rgba(217, 89, 27, .08); color: #5f554c; font-size: 11.5px; line-height: 1.65; }
.wizard-consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin-top: 20px; color: #665d55; font-size: 10.5px; line-height: 1.55; }
.wizard-consent input { width: 16px; height: 16px; margin-top: 1px; accent-color: var(--ember); }
.form-status { min-height: 1.4em; color: #665d55; font-size: 12.5px; text-transform: none; letter-spacing: 0; }
.form-status.error { color: #9b2f18; }
.form-status.success { color: #356438; }
.wizard-success { min-height: 520px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.wizard-success[hidden] { display: none; }
.success-mark { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; background: var(--ember); color: var(--cream); font-size: 32px; margin-bottom: 24px; }
.wizard-success h2 { font-size: clamp(34px, 6vw, 52px); }
.wizard-success > p:not(.kicker) { max-width: 54ch; color: #665d55; }
.wizard-success .btn { margin: 26px 0 14px; }
.wizard-success .phone { color: var(--charcoal); font-size: 12px; }

/* Menu */
.menu { text-align: center; }
.menu-note { color: var(--smoke); font-size: 13.5px; letter-spacing: .04em; margin-bottom: 10px; }
.menu-grid {
  margin-top: 56px; text-align: left;
  columns: 2; column-gap: clamp(48px, 6vw, 110px);
}

/* Instagram */
.instagram { border-top: 1px solid rgba(244, 239, 231, .08); }
.instagram-heading { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 48px; }
.instagram-heading h2 { margin-bottom: 0; }
.instagram-feed {
  min-height: 280px; display: grid; place-items: center;
  background: var(--char); border: 1px solid rgba(244, 239, 231, .08); padding: 24px;
}
.instagram-feed:has([class*="elfsight-app-"]) { display: block; background: transparent; border: 0; padding: 0; }
.instagram-feed a { color: var(--copper); }
.menu-section { break-inside: avoid; margin-bottom: 54px; }
.menu-section h3 {
  font-family: var(--display); font-weight: 400; font-size: 15px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--copper);
  border-bottom: 1px solid rgba(176, 118, 61, .25);
  padding-bottom: 12px; margin-bottom: 22px;
}
.mi { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.mi-name { font-family: var(--body); font-weight: 400; font-size: 15px; letter-spacing: .02em; white-space: nowrap; }
.mi-name .star { color: var(--ember); margin-left: 5px; }
.mi-dots { flex: 1; border-bottom: 1px dotted rgba(138, 131, 124, .4); transform: translateY(-3px); }
.mi-price { font-family: var(--editorial); font-style: italic; font-size: 15.5px; color: var(--copper); }
.mi-price::before { content: "$"; font-size: .7em; vertical-align: super; opacity: .8; }
.mi-desc { font-size: 12.5px; color: var(--smoke); margin: -12px 0 16px; max-width: 42ch; }

/* Visit */
.visit {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 100px); align-items: center;
}
.visit-photo img { aspect-ratio: 4 / 4.4; object-fit: cover; filter: saturate(.9) brightness(.9) sepia(.08); }
address { font-style: normal; margin-bottom: 30px; }
.visit-line { display: block; text-decoration: none; font-size: 16px; color: #c9c2b8; margin-bottom: 6px; transition: color .3s; }
.visit-line:hover { color: var(--ember); }
.visit-line.phone { font-family: var(--editorial); font-style: italic; font-size: 26px; color: var(--cream); }
.hours { border-collapse: collapse; margin-bottom: 36px; }
.hours th {
  font-weight: 500; font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--smoke); text-align: left; padding: 7px 34px 7px 0;
}
.hours td { font-size: 14.5px; color: #c9c2b8; padding: 7px 0; }
.hours td.closed { font-family: var(--editorial); font-style: italic; color: var(--ember); }

/* Footer */
footer {
  border-top: 1px solid rgba(244, 239, 231, .08);
  text-align: center; padding: 70px 24px 60px;
}
.foot-mark { font-family: var(--display); font-size: 26px; letter-spacing: .3em; text-indent: .3em; margin-bottom: 14px; }
.foot-line { font-size: 12.5px; letter-spacing: .12em; color: var(--smoke); margin-bottom: 8px; }
.foot-fine { font-size: 11px; letter-spacing: .08em; color: #57504a; }
.foot-social { display: flex; justify-content: center; gap: 18px; margin: 22px 0 16px; }
.foot-social a {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid rgba(244, 239, 231, .18); border-radius: 999px;
  color: var(--cream); transition: border-color .3s, color .3s, transform .3s;
}
.foot-social a:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-2px); }
.foot-social svg { width: 17px; height: 17px; fill: currentColor; }

/* Follow bar (story page) */
.follow-bar { text-align: center; padding-top: 0; }
.follow-bar .handle {
  font-family: var(--editorial); font-style: italic; font-size: clamp(20px, 2.4vw, 27px);
  color: var(--cream); margin-bottom: 24px;
}
.follow-bar .handle a { color: var(--copper); text-decoration: none; transition: color .3s; }
.follow-bar .handle a:hover { color: var(--ember); }

/* Reveals */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease var(--d, 0s), transform .9s ease var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ═══ Responsive ═══ */
@media (max-width: 900px) {
  .rail { right: 20px; gap: 13px; }
  .food-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .food-gallery-card:nth-child(even) { margin-top: 28px; }
  .story, .visit { grid-template-columns: 1fr; }
  .catering { grid-template-columns: 1fr; }
  .menu-grid { columns: 1; }
  .story-media { max-width: 480px; }
}
@media (max-width: 600px) {
  .rail { display: none; }
  .hero-brand { top: 16px; left: 50%; width: 84px; }
  .hero-still { background-position: center 62%; }
  .reserve-pill { opacity: 1; transform: none; pointer-events: auto; } /* phone: always reachable */
  section { padding: 80px 22px; }
  .food-gallery { padding-top: 56px; }
  .food-gallery-heading { align-items: flex-start; flex-direction: column; gap: 4px; margin-bottom: 30px; }
  .food-gallery-note { font-size: 13px; }
  .food-gallery-grid { gap: 9px; }
  .food-gallery-card:nth-child(even) { margin-top: 20px; }
  .ways-grid, .field-row { grid-template-columns: 1fr; }
  .way-card { min-height: 320px; }
  .instagram-heading { align-items: flex-start; flex-direction: column; }
  .entry-card { padding: 50px 24px 34px; }
  .entry-actions { display: grid; }
  body { padding-bottom: 58px; }
  body.catering-open { padding-bottom: 0; }
  .catering-modal { padding: 0; place-items: end center; }
  .catering-dialog { width: 100%; max-height: 96svh; border-radius: 24px 24px 0 0; }
  .wizard-header { grid-template-columns: 38px 1fr 38px; gap: 10px; padding: 17px 16px; }
  .wizard-header h2 { font-size: 20px; }
  .wizard-icon { width: 38px; height: 38px; }
  .wizard-progress { padding-inline: 18px; }
  .wizard-step { padding: 24px 18px 30px; }
  .choice-grid, .wizard-fields.two-up, .wizard-fields.three-up { grid-template-columns: 1fr; }
  .wizard-actions { position: sticky; bottom: 0; z-index: 2; padding-top: 13px; background: var(--cream); }
  .wizard-actions .btn { padding: 14px 16px; font-size: 10px; }
  .wizard-review { padding: 20px; }
  .wizard-review dl { grid-template-columns: 1fr; gap: 2px; }
  .wizard-review dd { margin-bottom: 8px; }
  .wizard-success { min-height: 480px; }
  .mobile-actions {
    position: fixed; z-index: 55; left: 0; right: 0; bottom: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    background: rgba(22, 19, 15, .96); border-top: 1px solid rgba(244, 239, 231, .16);
    backdrop-filter: blur(10px);
  }
  .mobile-actions a {
    padding: 17px 10px; text-align: center; text-decoration: none;
    font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  }
  .mobile-actions a:first-child { background: var(--ember); }
  .mobile-actions a + a { border-left: 1px solid rgba(244, 239, 231, .14); }
}

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  .brand-intro { display: none; }
  .hero-still { animation: none; }
  .scroll-cue { display: none; }
  #embers { display: none; }
  .reveal, .hero-over, .wordmark, .hero-under, .rail a { animation: none; opacity: 1; transform: none; transition: none; }
}
