/* =========================================================================
   CHASEN'S — SITE STYLES
   Hollywood, Reimagined. A modern steakhouse in Channelside, Tampa.
   Palette: Black / Brand Gold / Deep Gold / Warm Ivory / Walnut
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Tokens ---------------------------------------------------- */
:root {
  --black:       #0A0A0A;
  --black-soft:  #141210;
  --gold:        #C9A961;
  --gold-deep:   #8B6F2F;
  --gold-bright: #E0C078;
  --ivory:       #F5F0E6;
  --ivory-warm:  #ECE3D2;
  --charcoal:    #2A2520;
  --walnut:      #3D2B1F;
  --bronze:      #6B4F2F;
  --taupe:       #9A8868;
  --line:        rgba(201, 169, 97, 0.22);
  --line-strong: rgba(201, 169, 97, 0.45);

  --serif: 'Cormorant Garamond', 'Garamond', 'Times New Roman', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

  --max:    1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.2,.6,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ivory);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-bright); }

::selection { background: var(--gold); color: var(--black); }

/* ---------- Typography ------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 0 0 .5em;
  color: var(--ivory);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.05; font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1;  font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h4 { font-size: 1.15rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2em;
  display: inline-block;
}
.eyebrow::before { content: "—  "; color: var(--gold-deep); }

.italic   { font-style: italic; color: var(--bronze); }
.muted    { color: var(--taupe); }
.center   { text-align: center; }

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

.divider {
  width: 80px; height: 1px; background: var(--gold-deep);
  margin: 2.4rem auto; opacity: .8;
  position: relative;
}
.divider::after {
  content: ""; width: 6px; height: 6px; background: var(--gold);
  position: absolute; top: -3px; left: 50%; transform: translateX(-50%) rotate(45deg);
}

/* ---------- Layout ---------------------------------------------------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(64px, 9vw, 128px) 0; }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons --------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-solid { background: var(--gold); color: var(--black); }
.btn-solid:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--black); }
.btn-ghost { border-color: rgba(245,240,230,0.3); color: var(--ivory); }
.btn-ghost:hover { background: var(--ivory); color: var(--black); border-color: var(--ivory); }
.btn-sm { padding: 12px 22px; font-size: 0.7rem; }

/* ---------- Header / Nav --------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.85), rgba(10,10,10,0));
  transition: background .3s var(--ease), padding .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.94);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo img { height: 56px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  color: var(--ivory); padding: 8px 0;
  position: relative; transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; color: var(--ivory);
  font-size: 22px; cursor: pointer; padding: 8px;
}

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 320px; max-width: 84vw; height: 100vh;
    background: var(--black); flex-direction: column;
    align-items: flex-start; justify-content: center;
    gap: 24px; padding: 80px 40px;
    border-left: 1px solid var(--line);
    transition: right .35s var(--ease);
    z-index: 60;
  }
  .nav-links.open { right: 0; }
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ------------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px var(--gutter) 80px;
  isolation: isolate;
}
.hero::before {
  /* Cinematic atmospheric backdrop — deep walnut + amber candle pools.
     Replace this with a real hero image by setting --hero-img. */
  content: "";
  position: absolute; inset: 0;
  background:
    var(--hero-img, none),
    radial-gradient(ellipse 60% 50% at 30% 35%, rgba(201,169,97,0.12), transparent 65%),
    radial-gradient(ellipse 50% 40% at 75% 70%, rgba(180,120,60,0.10), transparent 70%),
    radial-gradient(ellipse 90% 80% at 50% 110%, rgba(0,0,0,0.85), transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #1a130a 55%, #0a0a0a 100%);
  background-size: cover, auto, auto, auto, auto;
  background-position: center;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.85) 100%);
  z-index: -1;
}
.hero-logo { max-width: 480px; width: 70%; margin: 0 auto 36px; }
.hero h1 { font-style: italic; font-weight: 300; color: var(--ivory); }
.hero .tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: var(--gold); letter-spacing: 0.18em; margin: 0 0 8px;
  text-transform: uppercase;
}
.hero .sub {
  font-family: var(--serif); font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--taupe); max-width: 560px; margin: 24px auto 36px;
}
.hero .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* compact hero for sub-pages */
.hero-sm {
  min-height: 52vh;
  padding-top: 160px; padding-bottom: 80px;
}
.hero-sm h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); }

/* scroll indicator */
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: .8;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.4s var(--ease) infinite;
}
@keyframes scroll-pulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Sections ------------------------------------------------- */
.section-light { background: var(--ivory); color: var(--charcoal); }
.section-light h1, .section-light h2, .section-light h3 { color: var(--charcoal); }
.section-light .italic { color: var(--bronze); }
.section-light .muted  { color: var(--bronze); }
.section-light .eyebrow { color: var(--gold-deep); }

.section-walnut {
  background: linear-gradient(180deg, var(--black) 0%, #18130d 50%, var(--black) 100%);
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head p { color: var(--taupe); font-size: 1.15rem; }
.section-light .section-head p { color: var(--bronze); }

/* ---------- Cards ---------------------------------------------------- */
.card {
  background: rgba(20,18,16,0.6);
  border: 1px solid var(--line);
  padding: 36px 32px;
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
  background: rgba(28,22,14,0.7);
}
.card .card-img {
  height: 240px;
  margin: -36px -32px 28px;
  background: linear-gradient(135deg, #1a130a 0%, #2a1d10 50%, #1a130a 100%);
  position: relative;
  overflow: hidden;
}
.card .card-img::after {
  content: attr(data-label);
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.card h3 { color: var(--gold); margin-bottom: 12px; }
.card p { color: var(--taupe); margin: 0 0 20px; }
.card a.more {
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 4px;
}

/* feature card with image bg */
.feat {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  background: var(--black-soft);
}
.feat .feat-img {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #100a04 0%, #2a1d10 60%, #1a130a 100%);
  transition: transform 1.2s var(--ease);
}
.feat:hover .feat-img { transform: scale(1.05); }
.feat::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
}
.feat-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 36px;
  z-index: 2;
}
.feat-body .eyebrow { color: var(--gold); margin-bottom: 8px; }
.feat-body h3 { color: var(--ivory); margin-bottom: 8px; font-size: 1.8rem; }
.feat-body p { color: var(--ivory-warm); margin: 0 0 12px; max-width: 32ch; }

/* ---------- Menu page styles ----------------------------------------- */
.menu-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.menu-section:first-of-type { border-top: 0; }
.menu-section h2 {
  text-align: center; color: var(--gold);
  font-style: italic; font-weight: 400;
  margin-bottom: 8px;
}
.menu-section .menu-sub {
  text-align: center; color: var(--bronze);
  font-style: italic; margin-bottom: 48px;
  font-family: var(--serif); font-size: 1.05rem;
}
.menu-list {
  max-width: 820px; margin: 0 auto;
  list-style: none; padding: 0;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .name {
  font-family: var(--serif); font-size: 1.35rem;
  color: var(--ivory); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.menu-item .name .star {
  color: var(--gold); font-size: 0.9em;
}
.menu-item .desc {
  font-family: var(--serif); font-style: italic;
  color: var(--bronze); font-size: 1rem; margin-top: 4px;
  font-weight: 400;
}
.menu-item .price {
  font-family: var(--serif); color: var(--gold);
  font-size: 1.2rem; white-space: nowrap;
  letter-spacing: 0.04em;
}
.menu-item.signature {
  background: linear-gradient(90deg, rgba(201,169,97,0.06) 0%, transparent 100%);
  margin: 0 -16px; padding-left: 16px; padding-right: 16px;
  border-left: 2px solid var(--gold);
}

.menu-note {
  font-family: var(--serif); font-style: italic;
  color: var(--bronze); text-align: center;
  font-size: 1rem; margin: 24px auto 0; max-width: 720px;
}

.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0; margin: 0 0 8px;
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase;
}
.menu-tabs a {
  padding: 8px 18px; color: var(--taupe);
  border: 0; transition: color .25s var(--ease);
}
.menu-tabs a:hover, .menu-tabs a.active { color: var(--gold); }

/* ---------- Forms ---------------------------------------------------- */
.form-card {
  max-width: 640px; margin: 0 auto;
  padding: 48px 40px;
  border: 1px solid var(--line);
  background: rgba(20,18,16,0.6);
}
.field { margin-bottom: 22px; }
.field label {
  display: block; margin-bottom: 8px;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(0,0,0,0.45);
  border: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--serif); font-size: 1.05rem;
  transition: border-color .25s var(--ease);
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold);
}
.field textarea { min-height: 130px; resize: vertical; font-family: var(--serif); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.form-success {
  background: rgba(201,169,97,0.1);
  border: 1px solid var(--gold);
  padding: 24px; text-align: center; color: var(--gold);
  font-family: var(--serif); font-style: italic; font-size: 1.2rem;
}

/* inline waitlist (footer / hero) */
.waitlist-inline {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
  border: 1px solid var(--line);
}
.waitlist-inline input {
  flex: 1; padding: 14px 18px; background: transparent; border: 0;
  color: var(--ivory); font-family: var(--serif); font-size: 1rem;
}
.waitlist-inline input:focus { outline: 0; }
.waitlist-inline button {
  padding: 14px 24px; background: var(--gold); color: var(--black);
  border: 0; font-family: var(--sans); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  cursor: pointer; transition: background .25s var(--ease);
}
.waitlist-inline button:hover { background: var(--gold-bright); }

/* ---------- Footer --------------------------------------------------- */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  font-family: var(--serif);
  color: var(--taupe);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid a { color: var(--taupe); }
.footer-grid a:hover { color: var(--gold); }
.footer-grid img.footer-logo { max-width: 220px; margin-bottom: 24px; }
.footer-grid p { margin: 0 0 8px; }
.footer-bottom {
  padding-top: 32px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bronze);
}
.footer-bottom a { color: var(--bronze); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Misc ----------------------------------------------------- */
.tag {
  display: inline-block;
  font-family: var(--sans); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--gold-deep);
  color: var(--gold); margin-right: 6px;
}

.quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--ivory);
  text-align: center; max-width: 800px; margin: 0 auto;
  line-height: 1.5;
}
.quote::before, .quote::after {
  content: "\201C"; color: var(--gold); font-size: 1.5em; line-height: 0;
  display: inline-block; transform: translateY(.25em);
}
.quote::after { content: "\201D"; }
.quote-attr {
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep); text-align: center;
  margin-top: 28px;
}

.signature-stripe {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0; text-align: center;
}
.signature-stripe img { max-width: 180px; margin: 0 auto; opacity: .9; }

/* Reveal-on-scroll (handled by js) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Image slot styles -------------------------------------- */
/* Each [data-photo] slot points to a JPG in /images/. The fallback is the
   atmospheric gradient — so if an image is missing, the box still looks
   intentional rather than broken. */
.img-slot {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(201,169,97,0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 75% 70%, rgba(180,120,60,0.14), transparent 70%),
    linear-gradient(135deg, #100a04 0%, #2a1d10 55%, #100a04 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Subtle film-grain overlay only on slots that fall back to gradient.
   When a real photo is loaded the grain is suppressed (per-slot) so the
   photo reads cleanly. */
.img-slot::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 3px);
  pointer-events: none;
  opacity: 0;
}

/* ---- Real photo bindings (drop the JPGs into /images/ to activate) -- */
.img-slot[data-photo="dining-room"]      { background-image: url('../images/dining-room.jpg'); }
.img-slot[data-photo="bar"]              { background-image: url('../images/cocktails.jpg'); }
.img-slot[data-photo="patio"]            { background-image: url('../images/brunch-patio.jpg'); }
.img-slot[data-photo="piano"]            { background-image: url('../images/piano.jpg'); }
.img-slot[data-photo="private-dining"]   { background-image: url('../images/private-dining.jpg'); }
.img-slot[data-photo="upstairs-lounge"]  { background-image: url('../images/upstairs-lounge.jpg'); }
.img-slot[data-photo="raw-bar"]          { background-image: url('../images/raw-bar.jpg'); }
.img-slot[data-photo="dry-aged"]         { background-image: url('../images/dry-aged.jpg'); }
.img-slot[data-photo="dessert-cart"]     { background-image: url('../images/dessert-cart.jpg'); }
.img-slot[data-photo="cocktails"]        { background-image: url('../images/cocktails.jpg'); }
.img-slot[data-photo="reserve"]          { background-image: url('../images/reserve.jpg'); }
.img-slot[data-photo="kids"]             { background-image: url('../images/kids.jpg'); }
.img-slot[data-photo="couple-banquette"] { background-image: url('../images/couple-banquette.jpg'); }
.img-slot[data-photo="brunch-patio"]     { background-image: url('../images/brunch-patio.jpg'); }
.img-slot[data-photo="sunday-social"]    { background-image: url('../images/sunday-social.jpg'); }
.img-slot[data-photo="saturday-soiree"]  { background-image: url('../images/saturday-soiree.jpg'); }
.img-slot[data-photo="fashion-night"]    { background-image: url('../images/fashion-night.jpg'); }
.img-slot[data-photo="hero"]             { background-image: url('../images/dining-room.jpg'); }

/* Photo-less menu cards (menus.html) — centered, luxe, generous. */
.card.menu-card {
  text-align: center;
  padding: 56px 36px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}
.card.menu-card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.card.menu-card .eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 18px;
}
.card.menu-card h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  margin: 0 0 18px;
}
.card.menu-card p {
  max-width: 32ch;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Card-photo overrides — show the full photo, no top/bottom cropping. */
.img-slot[data-photo="cocktails"],
.img-slot[data-photo="dry-aged"],
.img-slot[data-photo="raw-bar"] {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #100a04;
}

/* Note for /images/ subpath consumers (root-level pages already use
   ../images/ above which resolves correctly from /css/ to /images/).
   The hero ::before on the home page reads --hero-img directly, see
   index.html for the inline style. */

/* ---------- Utility -------------------------------------------------- */
.mt-0 { margin-top: 0 !important; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; } .mt-5 { margin-top: 64px; }
.mb-0 { margin-bottom: 0 !important; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 40px; } .mb-5 { margin-bottom: 64px; }
.text-center { text-align: center; }
.max-narrow { max-width: 720px; margin: 0 auto; }

/* ---------- Print ---------------------------------------------------- */
@media print {
  .site-header, .site-footer, .scroll-cue { display: none; }
  body { background: white; color: black; }
}
