/* ==========================================================================
   Springfield Cafe — styles.css
   "Velvet Brew" inspired dark premium theme
   ========================================================================== */

/* ---------------------------------- Tokens ------------------------------- */
:root{
  /* dark theme */
  --bg:#17100B;            /* near-black espresso page bg */
  --bg-2:#1E150D;          /* alt section bg */
  --bg-3:#241A10;          /* raised dark panels / promo card */
  --bg-footer:#120C07;     /* darkest footer */
  --surface:#FBF6EC;       /* cream card */
  --surface-2:#F3E9D6;     /* secondary cream */
  --gold:#C89B4B;          /* primary accent */
  --gold-soft:#DBBD82;     /* lighter gold for large text */
  --gold-deep:#A97C34;     /* gold hover / borders */
  --red:#B5462F;           /* deep red for OFF badge */
  --text:#F2E7D5;          /* cream text on dark */
  --text-muted:#B7A488;    /* muted text on dark */
  --text-dark:#2A1C10;     /* text on cream cards */
  --text-dark-muted:#6F5D49;
  --border:rgba(200,155,75,0.20);   /* subtle gold border on dark */
  --border-cream:#E7D9C0;
  --shadow-dark:0 20px 50px rgba(0,0,0,0.45);
  --shadow-card:0 16px 40px rgba(0,0,0,0.30);

  --font-display:"Playfair Display", ui-serif, Georgia, serif;
  --font-body:"DM Sans", ui-sans-serif, system-ui, sans-serif;

  --radius-sm:12px;
  --radius-lg:20px;
  --radius-xl:26px;
  --radius-pill:999px;

  --space-1:8px; --space-2:16px; --space-3:24px; --space-4:32px;
  --space-5:48px; --space-6:64px; --space-7:96px; --space-8:160px;

  --section-pad-y: 100px;
  --ease-soft: cubic-bezier(0.16,1,0.3,1);
}

@media (min-width:1000px){
  :root{ --section-pad-y: 160px; }
}

/* ---------------------------------- Reset -------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; background:var(--bg); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:1.0625rem;
  line-height:1.7;
  color:var(--text-muted);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }
input,textarea,select{ font-family:inherit; font-size:1rem; }

/* Focus states */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible,[tabindex]:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
  border-radius:4px;
}

/* Skip link */
.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  background:var(--gold);
  color:#20140A;
  padding:14px 24px;
  z-index:1000;
  border-radius:0 0 8px 0;
  font-weight:700;
}
.skip-link:focus{ left:0; }

/* ---------------------------------- Type --------------------------------- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--text);
  margin:0;
  font-weight:700;
}
h1{
  font-size:clamp(2.75rem,6vw,5rem);
  line-height:1.05;
  letter-spacing:-0.01em;
}
h2{
  font-size:clamp(2.1rem,4.2vw,3.25rem);
  line-height:1.12;
  letter-spacing:-0.01em;
}
h3{ font-size:clamp(1.4rem,2.4vw,1.7rem); line-height:1.25; }
p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }

.line{ display:block; }
.gold-italic{
  font-style:italic;
  color:var(--gold-soft);
  font-weight:600;
}
h2 .gold-italic, h1 .gold-italic{ font-weight:600; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:0.78rem;
  /* Small text on dark bg: gold-soft reads more clearly than mid-gold at
     this size — #C89B4B is reserved for large headings/accents/buttons. */
  color:var(--gold-soft);
  margin-bottom:var(--space-2);
}
.eyebrow::before{
  content:"";
  display:inline-block;
  width:22px;
  height:1px;
  background:var(--gold);
}
.eyebrow--center{ justify-content:center; }
.eyebrow--dark{ color:var(--gold-deep); }

.lede{
  font-size:1.125rem;
  line-height:1.75;
  color:var(--text-muted);
  max-width:56ch;
}

/* ---------------------------------- Layout ------------------------------- */
.container{
  width:100%;
  max-width:1240px;
  margin-inline:auto;
  padding-inline:var(--space-3);
}
.section{
  padding-block:var(--section-pad-y);
  position:relative;
}
.section--bg{ background:var(--bg); }
.section--alt{ background:var(--bg-2); }
.section--surface{ background:var(--surface); color:var(--text-dark-muted); }
.section--surface h2, .section--surface h3{ color:var(--text-dark); }

.section-head{
  max-width:640px;
  margin-bottom:var(--space-6);
}
.section-head.center{
  margin-inline:auto;
  text-align:center;
}

/* ---------------------------------- Buttons ------------------------------ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:16px 32px;
  border-radius:var(--radius-pill);
  font-weight:700;
  font-size:0.98rem;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .25s var(--ease-soft), box-shadow .25s var(--ease-soft), background-color .25s var(--ease-soft), color .25s var(--ease-soft), border-color .25s var(--ease-soft);
  white-space:nowrap;
}
.btn-primary{
  background:var(--gold);
  color:#20140A;
  box-shadow:var(--shadow-card);
}
.btn-primary:hover{
  background:var(--gold-soft);
  transform:translateY(-2px);
  box-shadow:var(--shadow-dark);
}
.btn-secondary{
  background:transparent;
  color:var(--gold-soft);
  border-color:var(--gold-deep);
}
.btn-secondary:hover{
  background:var(--gold);
  color:#20140A;
  border-color:var(--gold);
  transform:translateY(-2px);
}
/* Secondary button on cream surfaces needs darker text */
.section--surface .btn-secondary{ color:var(--gold-deep); border-color:var(--gold-deep); }
.section--surface .btn-secondary:hover{ color:#20140A; }

.btn-block{ width:100%; }
.btn-sm{ padding:10px 20px; font-size:0.85rem; }

/* ---------------------------------- Badges/Tags -------------------------- */
.badge{
  display:inline-flex;
  align-items:center;
  padding:5px 14px;
  border-radius:var(--radius-pill);
  background:var(--gold);
  color:#20140A;
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
}
.badge-new{ background:#3E4E5E; color:#EAF1F7; }
.badge-off{ background:var(--red); color:#FBF2EA; }
.badge-chef{ background:transparent; color:var(--gold-soft); border:1px solid var(--gold-deep); }

/* ---------------------------------- Header / Nav -------------------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(23,16,11,0);
  border-bottom:1px solid transparent;
  transition:background-color .4s var(--ease-soft), border-color .4s var(--ease-soft), backdrop-filter .4s var(--ease-soft);
}
.site-header.is-scrolled{
  background:rgba(23,16,11,0.94);
  backdrop-filter:blur(8px);
  border-bottom-color:var(--border);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--space-3);
  padding-block:16px;
}
.logo-link{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo-img{
  height:44px;
  width:auto;
  display:block;
}
@media (max-width:899px){
  .logo-img{ height:36px; }
}
.main-nav{ display:none; }
.main-nav ul{
  display:flex;
  align-items:center;
  gap:var(--space-4);
}
.main-nav a{
  font-weight:600;
  font-size:0.92rem;
  color:var(--text);
  position:relative;
  padding:6px 2px;
  letter-spacing:0.01em;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:1.5px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s var(--ease-soft);
}
.main-nav a:hover, .main-nav a:focus-visible{ color:var(--gold-soft); }
.main-nav a:hover::after, .main-nav a:focus-visible::after{ transform:scaleX(1); }
.main-nav a.is-active{ color:var(--gold-soft); }
.main-nav a.is-active::after{ transform:scaleX(1); }

.header-cta{ display:none; }

.nav-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  cursor:pointer;
}
.nav-toggle svg{ width:22px; height:22px; }
.nav-toggle .icon-close{ display:none; }
.nav-toggle[aria-expanded="true"] .icon-open{ display:none; }
.nav-toggle[aria-expanded="true"] .icon-close{ display:block; }

.mobile-nav{
  display:none;
  position:fixed;
  inset:0;
  top:79px;
  z-index:99;
  background:var(--bg);
  padding:var(--space-4) var(--space-3);
  overflow-y:auto;
}
.mobile-nav.is-open{ display:block; }
.mobile-nav ul{
  display:flex;
  flex-direction:column;
  gap:var(--space-2);
}
.mobile-nav a{
  display:block;
  font-family:var(--font-display);
  font-size:1.4rem;
  font-weight:600;
  color:var(--text);
  padding:var(--space-1) 0;
  border-bottom:1px solid var(--border);
}
.mobile-nav .btn{ margin-top:var(--space-3); }
.mobile-nav a.is-active{ color:var(--gold-soft); border-color:var(--gold-deep); }

@media (min-width:900px){
  .main-nav{ display:block; }
  .header-cta{ display:inline-flex; }
  .nav-toggle{ display:none; }
  .mobile-nav{ display:none !important; }
}

/* ---------------------------------- Mobile action bar --------------------- */
.mobile-action-bar{
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:90;
  display:flex;
  background:var(--bg-footer);
  border-top:1px solid var(--border);
  box-shadow:0 -4px 20px rgba(0,0,0,.4);
  padding-bottom:env(safe-area-inset-bottom);
}
.mobile-action-bar a{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  padding:12px 4px;
  color:var(--text-muted);
  font-size:0.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.03em;
}
.mobile-action-bar a:not(:last-child){ border-right:1px solid var(--border); }
.mobile-action-bar svg{ width:20px; height:20px; }
.mobile-action-bar .action-book{ color:var(--gold-soft); }
body{ padding-bottom:64px; }

@media (min-width:768px){
  .mobile-action-bar{ display:none; }
  body{ padding-bottom:0; }
}

/* ---------------------------------- Hero ---------------------------------- */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    radial-gradient(ellipse 60% 50% at 80% 15%, rgba(200,155,75,0.14) 0%, transparent 60%),
    var(--bg);
  padding-block:var(--space-6);
}
.hero-grid{
  display:grid;
  gap:var(--space-6);
  align-items:center;
}
@media (min-width:960px){
  .hero-grid{ grid-template-columns:1.05fr 1fr; gap:var(--space-7); }
}
.hero-copy h1{ margin-bottom:var(--space-3); }
.hero-copy .lede{ margin-bottom:var(--space-4); }
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:var(--space-2);
}
.hero-visual{
  position:relative;
}
.hero-frame{
  position:relative;
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-dark);
  border:1px solid var(--border);
  aspect-ratio:4/5;
}
.hero-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-frame::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(23,16,11,0) 55%, rgba(23,16,11,0.55) 100%);
  pointer-events:none;
}
.hero-glow{
  position:absolute;
  inset:-15%;
  z-index:-1;
  background:radial-gradient(circle, rgba(200,155,75,0.28) 0%, transparent 65%);
  filter:blur(10px);
}
.hero-steam{
  position:absolute;
  top:8%;
  right:14%;
  width:60px;
  height:120px;
  pointer-events:none;
  opacity:0.55;
}
.hero-steam span{
  position:absolute;
  bottom:0;
  width:6px;
  height:60px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(242,231,213,0) 0%, rgba(242,231,213,0.5) 100%);
  opacity:0;
}
/* Steam animates ONLY transform + opacity (cheap, GPU-composited) — never
   pair a continuously-animating layer with filter:blur, and only run it
   for users who haven't asked for reduced motion. */
@media (prefers-reduced-motion: no-preference){
  .hero-steam span{
    animation:steamRise 4s ease-in-out infinite;
    will-change:transform, opacity;
  }
  .hero-steam span:nth-child(1){ left:10px; animation-delay:0s; }
  .hero-steam span:nth-child(2){ left:28px; animation-delay:1.3s; }
  .hero-steam span:nth-child(3){ left:46px; animation-delay:2.6s; }
}
@keyframes steamRise{
  0%{ transform:translateY(0) scaleY(1); opacity:0; }
  20%{ opacity:0.6; }
  100%{ transform:translateY(-70px) scaleY(1.4); opacity:0; }
}

/* Page hero (interior pages) */
.page-hero{
  padding-block:calc(var(--section-pad-y) * 0.55) var(--space-6);
  background:
    radial-gradient(ellipse 60% 60% at 85% 0%, rgba(200,155,75,0.12) 0%, transparent 60%),
    var(--bg);
  text-align:center;
}
.page-hero .lede{ margin-inline:auto; }

/* ---------------------------------- Reveal animation ----------------------- */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s var(--ease-soft), transform .7s var(--ease-soft);
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ---------------------------------- Story / About ---------------------------- */
.story-grid{
  display:grid;
  gap:var(--space-5);
  align-items:center;
}
.story-media{ position:relative; }
.story-frame{
  position:relative;
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-dark);
  border:1px solid var(--border);
}
.story-frame img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/3.2; }
.story-badge{
  position:absolute;
  bottom:-18px;
  left:-18px;
  background:var(--gold);
  color:#20140A;
  padding:16px 22px;
  border-radius:var(--radius-lg);
  font-family:var(--font-display);
  font-weight:700;
  font-size:1rem;
  box-shadow:var(--shadow-card);
}
.story-badge span{
  display:block;
  font-family:var(--font-body);
  font-weight:600;
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  margin-top:2px;
}
.story-copy p{ font-size:1.02rem; }

.feature-chip-row{
  display:grid;
  gap:var(--space-3);
  margin:var(--space-4) 0;
}
@media (min-width:600px){
  .feature-chip-row{ grid-template-columns:1fr 1fr 1fr; }
}
.feature-chip{ display:flex; flex-direction:column; gap:8px; }
.feature-chip-icon{
  width:42px; height:42px;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold);
}
.feature-chip-icon svg{ width:22px; height:22px; }
.feature-chip h4{
  font-family:var(--font-display);
  font-size:1.02rem;
  color:var(--text);
  font-weight:600;
  margin:0;
}
.feature-chip p{ font-size:0.9rem; color:var(--text-muted); margin:0; }

@media (min-width:900px){
  .story-grid{ grid-template-columns:1fr 1.05fr; }
  .story-grid.reverse .story-media{ order:2; }
}

/* ---------------------------------- Card grid ------------------------------ */
.card-grid{
  display:grid;
  gap:var(--space-3);
  grid-template-columns:1fr;
}
@media (min-width:640px){
  .card-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (min-width:1000px){
  .card-grid--4{ grid-template-columns:repeat(4,1fr); }
  .card-grid--3{ grid-template-columns:repeat(3,1fr); }
}

/* ---------------------------------- Drink / dish cards (cream on dark) ----- */
.drink-card{
  background:var(--surface);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
  display:flex;
  flex-direction:column;
  border:1px solid var(--border-cream);
}
.drink-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-dark); }
.drink-card-media{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.drink-card-media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease-soft); }
.drink-card:hover .drink-card-media img{ transform:scale(1.06); }
.drink-card-media .badge{ position:absolute; top:12px; left:12px; }
.drink-card-body{ padding:var(--space-3); flex:1; display:flex; flex-direction:column; position:relative; }
.drink-card-body h3{ font-size:1.15rem; margin-bottom:4px; color:var(--text-dark); }
.drink-card-body p{ color:var(--text-dark-muted); font-size:0.92rem; margin-bottom:var(--space-2); }
.drink-card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  padding-top:var(--space-2);
  border-top:1px dashed var(--border-cream);
}
.drink-price{
  font-family:var(--font-display);
  font-weight:600;
  color:var(--gold-deep);
  font-size:1.15rem;
}
.drink-add{
  width:36px; height:36px;
  border-radius:50%;
  background:var(--gold);
  color:#20140A;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem;
  font-weight:700;
  border:none;
  cursor:pointer;
  transition:transform .25s var(--ease-soft), background-color .25s;
  flex-shrink:0;
}
.drink-add:hover{ background:var(--gold-soft); transform:scale(1.08); }
.drink-add.is-added,
.teaser-add.is-added{ background:var(--gold); color:#20140A; border-color:var(--gold); }

/* ---------------------------------- Menu teaser (home) ---------------------- */
.menu-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:var(--space-5);
}
.menu-tab{
  padding:10px 20px;
  border-radius:var(--radius-pill);
  border:1px solid var(--border);
  background:transparent;
  color:var(--text-muted);
  font-weight:700;
  font-size:0.85rem;
  cursor:pointer;
  transition:background-color .25s, color .25s, border-color .25s;
}
.menu-tab:hover{ border-color:var(--gold-deep); color:var(--text); }
.menu-tab.is-active{
  background:var(--gold);
  color:#20140A;
  border-color:var(--gold);
}

.menu-teaser-wrap{
  display:grid;
  gap:var(--space-4);
}
@media (min-width:960px){
  .menu-teaser-wrap{ grid-template-columns:0.85fr 1.4fr; align-items:start; }
}

.promo-card{
  background:var(--bg-3);
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  padding:var(--space-5) var(--space-4);
  display:flex;
  flex-direction:column;
  gap:var(--space-3);
  height:100%;
}
.promo-card .eyebrow{ margin-bottom:0; }
.promo-card h3{
  font-size:clamp(1.6rem,2.6vw,2rem);
  color:var(--text);
}
.promo-card p{ color:var(--text-muted); }
.promo-card .btn{ align-self:flex-start; margin-top:var(--space-2); }

.teaser-list{
  display:grid;
  gap:var(--space-2);
}
@media (min-width:720px){
  .teaser-list{ grid-template-columns:1fr 1fr; gap:var(--space-2) var(--space-4); }
}
.teaser-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding-block:var(--space-2);
  border-bottom:1px solid var(--border);
}
.teaser-item:last-child{ border-bottom:none; }
.teaser-thumb{
  width:56px; height:56px;
  border-radius:var(--radius-sm);
  overflow:hidden;
  flex-shrink:0;
  border:1px solid var(--border);
}
.teaser-thumb img{ width:100%; height:100%; object-fit:cover; }
.teaser-info{ flex:1; min-width:0; }
.teaser-info h4{
  font-family:var(--font-display);
  font-size:1rem;
  font-weight:600;
  color:var(--text);
  margin:0 0 2px;
}
.teaser-info p{
  font-size:0.85rem;
  color:var(--text-muted);
  margin:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.teaser-price{
  font-family:var(--font-display);
  font-weight:600;
  color:var(--gold-soft);
  font-size:0.98rem;
  white-space:nowrap;
  margin-left:auto;
  margin-right:10px;
}
.teaser-add{
  width:30px; height:30px;
  border-radius:50%;
  border:1px solid var(--gold-deep);
  background:transparent;
  color:var(--gold-soft);
  font-weight:700;
  cursor:pointer;
  flex-shrink:0;
  transition:background-color .25s, color .25s;
}
.teaser-add:hover{ background:var(--gold); color:#20140A; }

/* ---------------------------------- Full menu page --------------------------- */
.menu-jumpnav{
  position:sticky;
  top:79px;
  z-index:50;
  /* Sticky + always-on while scrolling the menu page: use a near-solid
     background instead of backdrop-filter so the compositor isn't
     forced to repaint a blurred layer on every scroll frame. */
  background:rgba(23,16,11,0.98);
  border-bottom:1px solid var(--border);
  overflow-x:auto;
  scrollbar-width:none;
}
.menu-jumpnav::-webkit-scrollbar{ display:none; }
.menu-jumpnav ul{
  display:flex;
  gap:10px;
  padding:14px var(--space-3);
  min-width:max-content;
}
.menu-jumpnav a{
  display:inline-block;
  padding:10px 18px;
  border-radius:var(--radius-pill);
  background:transparent;
  border:1px solid var(--border);
  color:var(--text-muted);
  font-weight:700;
  font-size:0.85rem;
  white-space:nowrap;
  transition:background-color .25s, color .25s, border-color .25s;
}
.menu-jumpnav a:hover,
.menu-jumpnav a.is-active{
  background:var(--gold);
  color:#20140A;
  border-color:var(--gold);
}

.menu-category{
  padding-block:var(--space-6);
  scroll-margin-top:150px;
  border-bottom:1px solid var(--border);
}
.menu-category:last-of-type{ border-bottom:none; }
.menu-category-head{ margin-bottom:var(--space-4); display:flex; align-items:baseline; gap:14px; }
.menu-category-head .eyebrow{ margin-bottom:0; }
.menu-list{
  display:grid;
  gap:var(--space-3) var(--space-5);
}
@media (min-width:800px){
  .menu-list{ grid-template-columns:1fr 1fr; }
}
.menu-item{
  display:flex;
  justify-content:space-between;
  gap:var(--space-3);
  padding-bottom:var(--space-2);
  border-bottom:1px dashed var(--border);
}
.menu-item-info h3{
  font-family:var(--font-display);
  font-size:1.08rem;
  font-weight:600;
  color:var(--text);
  margin-bottom:4px;
}
.menu-item-info p{ color:var(--text-muted); font-size:0.92rem; }
.menu-item-price{
  font-family:var(--font-display);
  font-weight:600;
  color:var(--gold-soft);
  font-size:1.1rem;
  white-space:nowrap;
  flex-shrink:0;
}
.menu-legend{
  background:var(--bg-2);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:var(--space-3);
  font-size:0.9rem;
  color:var(--text-muted);
  margin-top:var(--space-5);
}
.menu-legend strong{ color:var(--text); }

/* ---------------------------------- Gallery ---------------------------------- */
.gallery-grid{
  display:grid;
  gap:var(--space-2);
  grid-template-columns:repeat(2,1fr);
}
@media (min-width:700px){
  .gallery-grid{ grid-template-columns:repeat(4,1fr); }
}
.gallery-item{
  border-radius:var(--radius-sm);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  position:relative;
  border:1px solid transparent;
  transition:border-color .3s var(--ease-soft);
}
.gallery-item:hover{ border-color:var(--gold-deep); }
.gallery-item img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .5s var(--ease-soft);
}
.gallery-item::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(23,16,11,0) 55%, rgba(23,16,11,0.65) 100%);
  opacity:0.7;
  transition:opacity .3s var(--ease-soft);
}
.gallery-item:hover::after{ opacity:0.35; }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item.tall{ grid-row:span 2; }
.gallery-item .g-frame{ aspect-ratio:1/1; }
.gallery-item.tall .g-frame{ aspect-ratio:1/2; height:100%; }

/* ---------------------------------- Services (dark cards) --------------------- */
.service-card{
  background:var(--bg-2);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:var(--space-4);
  transition:transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft), border-color .3s var(--ease-soft);
  height:100%;
  display:flex;
  flex-direction:column;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-dark); border-color:var(--gold-deep); }
.service-icon{
  width:52px; height:52px;
  border-radius:var(--radius-sm);
  background:rgba(200,155,75,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:var(--space-2);
  color:var(--gold);
}
.service-icon svg{ width:26px; height:26px; }
.service-card h3{ font-size:1.2rem; margin-bottom:8px; color:var(--text); }
.service-card p{ color:var(--text-muted); flex:1; font-size:0.95rem; }
.service-card .card-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:var(--space-2);
  font-weight:700;
  font-size:0.9rem;
  color:var(--gold-soft);
}

/* ---------------------------------- Testimonials ------------------------------ */
.testimonial-card{
  background:var(--surface);
  border-radius:var(--radius-lg);
  padding:var(--space-4);
  box-shadow:var(--shadow-card);
  height:100%;
  display:flex;
  flex-direction:column;
  gap:var(--space-2);
}
.stars{ color:var(--gold-deep); font-size:1rem; letter-spacing:2px; }
.testimonial-card p{ font-size:1rem; color:var(--text-dark); font-style:italic; }
.testimonial-foot{ display:flex; align-items:center; gap:12px; margin-top:auto; padding-top:var(--space-2); }
.avatar-circle{
  width:42px; height:42px;
  border-radius:50%;
  background:var(--gold);
  color:#20140A;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  font-weight:700;
  font-size:1rem;
  flex-shrink:0;
}
.testimonial-author{ font-weight:700; font-style:normal; color:var(--text-dark); font-size:0.92rem; }
.testimonial-author span{ display:block; font-weight:400; color:var(--text-dark-muted); font-size:0.82rem; }

/* ---------------------------------- Contact / Visit --------------------------- */
.contact-grid{
  display:grid;
  gap:var(--space-5);
  align-items:start;
}
@media (min-width:960px){
  .contact-grid{ grid-template-columns:1fr 1fr; }
}
.contact-info-list{ display:flex; flex-direction:column; gap:var(--space-3); margin-bottom:var(--space-4); }
.contact-info-row{ display:flex; gap:16px; align-items:flex-start; }
.contact-icon{
  width:44px; height:44px;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold);
  flex-shrink:0;
}
.contact-icon svg{ width:22px; height:22px; }
.contact-info-row h4{
  font-family:var(--font-display);
  font-size:1.02rem;
  color:var(--text);
  margin:0 0 3px;
  font-weight:600;
}
.contact-info-row p{ color:var(--text-muted); font-size:0.95rem; margin:0; }
.contact-info-row a{ color:var(--text-muted); }
.contact-info-row a:hover{ color:var(--gold-soft); }
.contact-today{ color:var(--gold-soft) !important; font-weight:700; }

.contact-actions{ display:flex; flex-wrap:wrap; gap:var(--space-2); margin-bottom:var(--space-3); }

.footer-social,
.contact-social{ display:flex; gap:12px; }
.contact-social a{
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted);
  transition:background-color .25s, border-color .25s, color .25s;
}
.contact-social a:hover{ background:var(--gold); border-color:var(--gold); color:#20140A; }
.contact-social svg{ width:18px; height:18px; }

.amenities-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:var(--space-3);
}
.amenities-list li{
  background:rgba(200,155,75,0.08);
  border:1px solid var(--border);
  color:var(--text-muted);
  border-radius:var(--radius-pill);
  padding:6px 14px;
  font-size:0.82rem;
  font-weight:600;
}

.map-frame{
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-dark);
  border:1px solid var(--border);
}
.map-frame iframe{ width:100%; height:100%; min-height:340px; border:0; display:block; filter:grayscale(0.3) invert(0.92) contrast(0.9); }
.map-frame.image-frame img{ width:100%; height:100%; min-height:340px; object-fit:cover; }

.hours-table{
  width:100%;
  border-collapse:collapse;
  background:var(--bg-2);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.hours-table th{
  text-align:left;
  background:var(--bg-3);
  color:var(--text);
  padding:14px 20px;
  font-family:var(--font-display);
  font-weight:600;
}
.hours-table td{
  padding:14px 20px;
  border-bottom:1px solid var(--border);
  color:var(--text-muted);
}
.hours-table tr:last-child td{ border-bottom:none; }
.hours-table tr.is-today td{
  background:rgba(200,155,75,0.12);
  color:var(--gold-soft);
  font-weight:700;
}
.hours-note{ margin-top:var(--space-2); font-size:0.9rem; color:var(--text-muted); }

/* ---------------------------------- Forms ---------------------------------------- */
.form-card{
  background:var(--bg-2);
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  padding:var(--space-4);
  box-shadow:var(--shadow-dark);
  max-width:720px;
  margin-inline:auto;
}
.form-grid{
  display:grid;
  gap:var(--space-3);
}
@media (min-width:640px){
  .form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:var(--space-3); }
}
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-weight:700; font-size:0.9rem; color:var(--text); }
.field .required{ color:var(--gold); }
.field input,
.field select,
.field textarea{
  padding:14px 16px;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  background:rgba(255,255,255,0.04);
  color:var(--text);
}
.field input::placeholder,
.field textarea::placeholder{ color:var(--text-muted); opacity:0.7; }
.field select{ color-scheme:dark; }
.field textarea{ resize:vertical; min-height:120px; }
.field input:focus,
.field select:focus,
.field textarea:focus{ outline:none; border-color:var(--gold); background:rgba(255,255,255,0.07); box-shadow:0 0 0 3px rgba(200,155,75,0.18); }
.field-hint{ font-size:0.8rem; color:var(--text-muted); }
.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-note{ font-size:0.83rem; color:var(--text-muted); margin-top:var(--space-2); }
.form-error{
  display:none;
  background:rgba(181,70,47,0.14);
  border:1px solid var(--red);
  color:#F1B7A6;
  padding:12px 16px;
  border-radius:var(--radius-sm);
  font-weight:600;
  font-size:0.88rem;
}
.form-error.is-visible{ display:block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea{ border-color:var(--red); background:rgba(181,70,47,0.1); }

/* ---------------------------------- Footer --------------------------------------- */
.site-footer{
  background:var(--bg-footer);
  color:var(--text-muted);
  padding-block:var(--space-6) var(--space-4);
  border-top:1px solid var(--border);
}
.footer-grid{
  display:grid;
  gap:var(--space-4);
  grid-template-columns:1fr;
}
@media (min-width:768px){
  .footer-grid{ grid-template-columns:1.4fr 1fr 1fr 1fr; }
}
.footer-brand .logo-link{ margin-bottom:var(--space-2); }
.footer-brand .logo-img{ height:40px; }
.footer-brand p{ color:var(--text-muted); max-width:32ch; }
.footer-social{ margin-top:var(--space-3); }
.footer-social a{
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted);
  transition:background-color .25s, border-color .25s, color .25s;
}
.footer-social a:hover{ background:var(--gold); border-color:var(--gold); color:#20140A; }
.footer-social svg{ width:18px; height:18px; }
.footer-col h4{
  color:var(--gold-soft);
  font-family:var(--font-body);
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.1em;
  margin-bottom:var(--space-2);
}
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a,.footer-col address,.footer-col p{
  color:var(--text-muted);
  font-style:normal;
  font-size:0.92rem;
}
.footer-col a:hover{ color:var(--gold-soft); }
.footer-bottom{
  margin-top:var(--space-6);
  padding-top:var(--space-3);
  border-top:1px solid var(--border);
  display:flex;
  flex-wrap:wrap;
  gap:var(--space-2);
  justify-content:space-between;
  font-size:0.8rem;
  color:var(--text-muted);
}
.footer-legend{
  margin-top:var(--space-3);
  padding-top:var(--space-3);
  border-top:1px solid var(--border);
  font-size:0.8rem;
  color:var(--text-muted);
}

/* ---------------------------------- 404 / Thank-you --------------------------- */
.error-page{
  min-height:60vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:var(--space-6) var(--space-3);
}
.error-page .eyebrow{ margin-top:var(--space-3); }

/* ---------------------------------- Page hero two-tone H1 ---------------------- */
.page-hero h1{ margin-bottom:var(--space-2); }
.page-hero .eyebrow--center{ justify-content:center; }

/* ---------------------------------- Value cards (About) ------------------------ */
.value-card{
  background:var(--bg-2);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:var(--space-4);
  height:100%;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft), border-color .3s var(--ease-soft);
}
.value-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-dark); border-color:var(--gold-deep); }
.value-card .service-icon{ margin-bottom:0; }
.value-card h3{ font-size:1.1rem; color:var(--text); }
.value-card p{ color:var(--text-muted); font-size:0.92rem; }

/* ---------------------------------- Stats strip --------------------------------- */
.stats-strip{
  display:grid;
  gap:var(--space-4);
  grid-template-columns:repeat(2,1fr);
  background:var(--bg-3);
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  padding:var(--space-5) var(--space-4);
  text-align:center;
}
@media (min-width:700px){
  .stats-strip{ grid-template-columns:repeat(4,1fr); }
}
.stat-block .stat-num{
  display:block;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(1.9rem,4vw,2.75rem);
  color:var(--gold-soft);
  line-height:1.1;
  margin-bottom:6px;
}
.stat-block .stat-label{
  font-size:0.82rem;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-weight:600;
}

/* ---------------------------------- Team cards ---------------------------------- */
.team-card{
  background:var(--surface);
  border-radius:var(--radius-lg);
  padding:var(--space-4);
  box-shadow:var(--shadow-card);
  text-align:center;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.avatar-ring{
  width:84px; height:84px;
  border-radius:50%;
  border:2px solid var(--gold);
  background:rgba(200,155,75,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.5rem;
  color:var(--gold-deep);
  margin-bottom:10px;
}
.team-card h3{ font-size:1.05rem; color:var(--text-dark); margin:0; }
.team-card .team-role{
  font-size:0.8rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:var(--gold-deep);
  margin-bottom:4px;
}
.team-card p{ color:var(--text-dark-muted); font-size:0.9rem; }

/* ---------------------------------- Check list (Services) ----------------------- */
.check-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:var(--space-3) 0;
}
.check-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--text-muted);
  font-size:0.95rem;
}
.check-list li::before{
  content:"";
  flex-shrink:0;
  width:18px; height:18px;
  margin-top:3px;
  border-radius:50%;
  background:rgba(200,155,75,0.14);
  border:1px solid var(--gold-deep);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C89B4B' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:11px;
}

/* ---------------------------------- CTA band ------------------------------------ */
.cta-band{
  background:var(--bg-3);
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  padding:var(--space-5) var(--space-4);
  text-align:center;
}
.cta-band h2{ margin-bottom:var(--space-2); }
.cta-band p{ max-width:52ch; margin-inline:auto var(--space-3); color:var(--text-muted); }
.cta-band .hero-actions{ justify-content:center; }

/* ---------------------------------- Gallery page filter/lightbox ----------------- */
.gallery-page-grid{
  display:grid;
  gap:var(--space-2);
  grid-template-columns:repeat(2,1fr);
}
@media (min-width:700px){
  .gallery-page-grid{ grid-template-columns:repeat(4,1fr); }
}
.gallery-page-grid .gallery-item{ cursor:pointer; }
.gallery-page-grid .g-frame{ border:none; background:none; padding:0; margin:0; width:100%; display:block; cursor:pointer; font:inherit; }
.gallery-page-grid .g-frame:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; }

.lightbox-overlay{
  position:fixed;
  inset:0;
  z-index:200;
  background:rgba(18,12,7,0.94);
  display:none;
  align-items:center;
  justify-content:center;
  padding:var(--space-3);
}
.lightbox-overlay.is-open{ display:flex; }
.lightbox-figure{
  position:relative;
  max-width:min(920px,92vw);
  max-height:88vh;
}
.lightbox-figure img{
  max-width:100%;
  max-height:80vh;
  width:auto;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-dark);
  border:1px solid var(--border);
  display:block;
  margin-inline:auto;
}
.lightbox-caption{
  text-align:center;
  color:var(--text-muted);
  font-size:0.9rem;
  margin-top:14px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position:fixed;
  width:48px; height:48px;
  border-radius:50%;
  border:1px solid var(--border);
  background:rgba(23,16,11,0.7);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background-color .25s, border-color .25s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{ background:var(--gold); border-color:var(--gold); color:#20140A; }
.lightbox-close{ top:20px; right:20px; }
.lightbox-prev{ left:20px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:20px; top:50%; transform:translateY(-50%); }
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg{ width:22px; height:22px; }
@media (max-width:700px){
  .lightbox-prev{ left:8px; }
  .lightbox-next{ right:8px; }
  .lightbox-close{ top:10px; right:10px; }
}

/* ---------------------------------- Decorative motifs -------------------------- */
.bean-motif{
  position:absolute;
  opacity:0.12;
  color:var(--gold);
  pointer-events:none;
  z-index:0;
}

/* ---------------------------------- Utilities ---------------------------------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.visually-hidden{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
