/* ================================================================
   HATCH KITCHEN — Design System v3
   Brand: True Black · Egg-Yolk Yellow · Peach · Sage · Cream
   Type:  Poppins · Allura · Hanken Grotesk · IBM Plex Mono
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Allura&family=Hanken+Grotesk:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ================================================================
   TOKENS
   ================================================================ */
:root {
  /* --- Palette --- */
  --cream:       #F5F1E3;
  --cream-deep:  #EAE2C7;
  --paper:       #FBF9F1;
  --ink:         #121110;
  --ink-soft:    #5B5346;
  --line:        rgba(18,17,16,.14);
  --line-soft:   rgba(18,17,16,.08);

  --gold:        #F3C457;
  --gold-dark:   #C8941F;
  --gold-tint:   #FCE9C0;

  --peach:       #EFA862;
  --peach-dark:  #B97636;
  --peach-tint:  #FBE2C7;

  --sage:        #4F6B3D;
  --sage-dark:   #33431F;
  --sage-tint:   #E2E8D2;

  /* primary accent alias */
  --red:         #121110;
  --red-dark:    #F3C457;
  --red-tint:    #FBE9C2;

  /* --- Typography --- */
  --f-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --f-script:  "Allura", cursive;
  --f-body:    "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --f-mono:    "IBM Plex Mono", "SF Mono", monospace;

  /* --- Layout --- */
  --container:   1180px;
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   32px;
  --shadow-card: 0 1px 2px rgba(18,17,16,.05), 0 12px 28px -14px rgba(18,17,16,.25);
  --shadow-pop:  0 18px 40px -16px rgba(18,17,16,.38);
  --shadow-lift: 0 32px 64px -24px rgba(18,17,16,.45);

  /* --- Transitions --- */
  --ease-out: cubic-bezier(0.22, 0.68, 0, 1.2);
  --ease-in:  cubic-bezier(0.36, 0, 0.66, -0.56);
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
body  { margin: 0; }
img   { max-width: 100%; display: block; }
ul    { margin: 0; padding: 0; list-style: none; }
a     { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4, p, figure { margin: 0; }

/* ================================================================
   BASE
   ================================================================ */
body {
  font-family: var(--f-body);
  background:  var(--cream);
  color:       var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

.container {
  max-width:  var(--container);
  margin:     0 auto;
  padding:    0 28px;
}

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

/* ================================================================
   TYPE SCALE
   ================================================================ */
h1, h2, h3, h4 {
  font-family:    var(--f-display);
  font-weight:    600;
  letter-spacing: -0.01em;
  color:          var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.4vw, 5rem);   line-height: 0.98; font-weight: 800; }
h2 { font-size: clamp(2rem,   3.6vw, 3.1rem); line-height: 1.04; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem);  line-height: 1.2; }
h4 { font-size: 1.05rem; line-height: 1.3; }
p  { color: var(--ink-soft); }

.lede {
  font-size:  clamp(1.1rem, 1.6vw, 1.32rem);
  color:      var(--ink-soft);
  max-width:  46ch;
}

.script-tag {
  font-family:  var(--f-script);
  font-size:    clamp(1.8rem, 3vw, 2.4rem);
  color:        var(--gold);
  line-height:  1;
  display:      inline-block;
}

/* ================================================================
   EYEBROW
   ================================================================ */
.eyebrow {
  font-family:     var(--f-mono);
  text-transform:  uppercase;
  letter-spacing:  .14em;
  font-size:       .76rem;
  font-weight:     500;
  color:           var(--red);
  display:         inline-flex;
  align-items:     center;
  gap:             .55em;
}
.eyebrow::before {
  content:       "";
  width:         7px;
  height:        7px;
  background:    var(--gold);
  border-radius: 50%;
  display:       inline-block;
  flex-shrink:   0;
}
.eyebrow.on-dark { color: var(--gold-tint); }
.eyebrow.on-dark::before { background: var(--gold); }
.eyebrow.sage    { color: var(--sage-dark); }
.eyebrow.sage::before { background: var(--peach); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  font-family:  var(--f-body);
  font-weight:  700;
  font-size:    .98rem;
  display:      inline-flex;
  align-items:  center;
  gap:          .5em;
  padding:      .92em 1.6em;
  border-radius: 999px;
  border:       1.5px solid transparent;
  cursor:       pointer;
  transition:   transform .2s var(--ease-out),
                box-shadow .2s ease,
                background .2s ease,
                color .2s ease,
                border-color .2s ease;
  white-space:  nowrap;
  position:     relative;
  overflow:     hidden;
}
.btn::after {
  content:    "";
  position:   absolute;
  inset:      0;
  background: rgba(255,255,255,0);
  transition: background .15s ease;
  pointer-events: none;
}
.btn:hover::after { background: rgba(255,255,255,.08); }
.btn:hover        { transform: translateY(-2px); }
.btn:active       { transform: translateY(0); }

.btn-primary       { background: var(--red); color: var(--cream); box-shadow: var(--shadow-card); }
.btn-primary:hover { background: var(--red-dark); color: var(--ink); box-shadow: var(--shadow-pop); }

.btn-gold       { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-card); }
.btn-gold:hover { background: var(--gold-dark); color: var(--cream); box-shadow: var(--shadow-pop); }

.btn-outline          { background: transparent; border-color: currentColor; color: var(--ink); }
.btn-outline:hover    { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-outline.on-dark  { color: var(--cream); }
.btn-outline.on-dark:hover { background: var(--cream); color: var(--red); border-color: var(--cream); }

.btn-ghost         { background: transparent; color: var(--red); padding-left: 0; padding-right: 0; }
.btn-ghost svg     { transition: transform .2s ease; }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-ghost:hover::after { background: none; }

.btn-sm   { padding: .6em 1.2em; font-size: .88rem; }
.btn-block { width: 100%; justify-content: center; }

/* ================================================================
   TOP UTILITY BAR
   ================================================================ */
.topbar {
  background:    var(--ink);
  color:         var(--cream);
  font-family:   var(--f-mono);
  font-size:     .78rem;
  letter-spacing: .03em;
  position:      relative;
  z-index:       100;
}
.topbar .container {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             16px;
  padding-top:     9px;
  padding-bottom:  9px;
  flex-wrap:       wrap;
}
.topbar a          { opacity: .88; transition: color .15s ease, opacity .15s ease; }
.topbar a:hover    { color: var(--gold); opacity: 1; }
.topbar-left,
.topbar-right      { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-tag {
  background:    var(--gold);
  color:         var(--ink);
  padding:       2px 10px;
  border-radius: 999px;
  font-weight:   700;
  font-size:     .72rem;
}

/* ================================================================
   SITE HEADER / NAV
   ================================================================ */
.site-header {
  position:         sticky;
  top:              0;
  z-index:          1000;
  background:       rgba(18,17,16,.96);
  backdrop-filter:  blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom:    1px solid rgba(245,241,227,.1);
  transition:       box-shadow .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px -8px rgba(0,0,0,.45);
}

.nav {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         14px 0;
}

.logo           { display: flex; align-items: center; gap: 11px; }
.logo-img       { height: 44px; width: auto; display: block; border-radius: 8px; transition: opacity .2s ease; }
.logo:hover .logo-img { opacity: .85; }
.logo-word      { font-family: var(--f-display); font-weight: 700; font-size: 1.32rem; line-height: 1; color: var(--cream); }
.logo-word small {
  display:        block;
  font-family:    var(--f-mono);
  font-weight:    500;
  font-size:      .56rem;
  letter-spacing: .26em;
  color:          rgba(245,241,227,.5);
  margin-top:     2px;
}

.nav-links {
  display:     flex;
  align-items: center;
  gap:         34px;
  list-style:  none;
}
.nav-links a {
  font-weight: 600;
  font-size:   .95rem;
  position:    relative;
  padding:     4px 0;
  color:       rgba(245,241,227,.85);
  transition:  color .2s ease;
}
.nav-links a::after {
  content:    "";
  position:   absolute;
  left: 0; bottom: -2px;
  width:      0;
  height:     2px;
  background: var(--gold);
  transition: width .22s ease;
  border-radius: 2px;
}
.nav-links a:hover         { color: var(--cream); }
.nav-links a:hover::after  { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links a[aria-current="page"]::after { width: 100%; }

/* Camp Orders / Village Dinners — program pills in nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.nav-pill:hover { transform: translateY(-1px); }
.nav-pill-camp {
  display: none !important;
}
.nav-pill-village {
  background: #4F6B3D;
  color: var(--cream);
}
.nav-pill-village:hover {
  background: #33431F;
  color: var(--cream);
}
.nav-pill[aria-current="page"] {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

.nav-toggle {
  display:         none;
  background:      none;
  border:          none;
  cursor:          pointer;
  width:           40px;
  height:          40px;
  align-items:     center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content:     "";
  display:     block;
  width:       22px;
  height:      2px;
  background:  var(--cream);
  position:    relative;
  transition:  transform .22s ease, opacity .22s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top:  7px; }
.nav-toggle[aria-expanded="true"] span            { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before    { transform: rotate(45deg) translate(5px,5px); background: var(--cream); }
.nav-toggle[aria-expanded="true"] span::after     { transform: rotate(-45deg) translate(5px,-5px); background: var(--cream); }

/* ================================================================
   MOBILE HEADER & TOPBAR RESPONSIVE FIXES
   ================================================================ */
@media (max-width: 880px) {
  .topbar {
    font-size: 0.7rem;
    padding: 4px 0;
  }
  .topbar .container {
    justify-content: center;
    gap: 4px 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
  }
  .topbar-left, .topbar-right {
    justify-content: center;
    gap: 8px;
  }
  .topbar-tag {
    font-size: 0.65rem;
    padding: 1px 7px;
  }

  .site-header {
    padding: 4px 0 10px;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    gap: 8px 12px;
    flex-wrap: wrap;
  }

  /* Logo positioning & sizing: FULL size logo & tagline */
  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 1;
    flex-shrink: 0;
  }
  .logo-img {
    height: 40px;
    width: auto;
  }
  .logo-word {
    font-size: 1.18rem;
    line-height: 1;
  }
  .logo-word small {
    display: block !important;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    margin-top: 2px;
    white-space: nowrap;
    opacity: 0.8;
  }

  /* Nav CTA container: Order Online button (BIG) + Hamburger toggle on Row 1, Pills on Row 2 */
  .nav-cta {
    order: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  /* BIG, bold Order Online primary button on mobile */
  .nav-cta .btn-primary {
    order: 1;
    padding: 0.65em 1.25em !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    background: var(--red) !important;
    color: var(--cream) !important;
    border-radius: 999px !important;
    box-shadow: 0 3px 12px rgba(18,17,16,0.3) !important;
    white-space: nowrap !important;
  }

  .nav-toggle {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 4px;
    z-index: 1000;
    flex-shrink: 0;
  }

  /* Program Pills: Styled cleanly in Row 2 directly across header bar */
  .nav-cta .nav-pill {
    order: 3;
    display: inline-flex !important;
    padding: 6px 12px !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    margin-top: 4px;
  }

  /* -------------------------------------------------------------
     EXPANDED MOBILE MENU OVERLAY (FIXES BLEED-THROUGH & OVERLAP)
     ------------------------------------------------------------- */
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #121110;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99999;
    padding: 80px 24px 40px;
  }
  .nav-links[data-open="true"] {
    transform: translateX(0) !important;
    background-color: #121110 !important;
  }
  .nav-links a {
    font-family: var(--f-display);
    font-size: 1.7rem;
    color: var(--cream);
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  /* Pin the X close button above the full-screen menu overlay */
  .nav-toggle[aria-expanded="true"] {
    position: fixed !important;
    top: 14px !important;
    right: 16px !important;
    z-index: 100000 !important;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
  }

  /* Hide background pills & logo while mobile drawer overlay is open */
  .site-header:has(.nav-links[data-open="true"]) .nav-cta,
  .site-header:has(.nav-links[data-open="true"]) .logo {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-drawer-pills {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .logo-word {
    font-size: 0.96rem;
  }
  .nav-cta .nav-pill {
    padding: 4px 7px;
    font-size: 0.64rem;
  }
  .nav-cta .btn {
    padding: 0.42em 0.72em;
    font-size: 0.72rem;
  }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position:   relative;
  min-height: 88vh;
  display:    flex;
  align-items: flex-end;
  color:      var(--cream);
  overflow:   hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset:    0;
  will-change: transform;
}
.hero-media img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  opacity:    .75;
}
.hero-media::after {
  content:  "";
  position: absolute;
  inset:    0;
  background: linear-gradient(
    180deg,
    rgba(18,17,16,.1) 0%,
    rgba(18,17,16,.3) 40%,
    rgba(8,7,6,.92) 100%
  );
}
/* Fade-in hero image on load */
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: .75; }
}
.hero-media img { animation: heroFade 1.2s ease forwards; }

.hero-inner {
  position: relative;
  padding-top: 120px;
  padding-bottom: 72px;
  width:    100%;
}
.hero-kicker {
  font-family:    var(--f-mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size:      .8rem;
  color:          var(--gold-tint);
  margin-bottom:  18px;
  display:        block;
  animation:      slideUp .7s .2s var(--ease-out) both;
}
.hero h1 {
  color:     var(--cream);
  animation: slideUp .7s .35s var(--ease-out) both;
}
.hero h1 em {
  font-style:  normal;
  color:       var(--gold);
  position:    relative;
  display:     inline-block;
}
/* Animated underline on hero em */
.hero h1 em::after {
  content:       "";
  position:      absolute;
  left:          0;
  bottom:        .05em;
  width:         100%;
  height:        .08em;
  background:    var(--gold);
  opacity:       .45;
  border-radius: 2px;
}
.hero .script-tag {
  margin-top: 18px;
  display:    block;
  animation:  slideUp .7s .5s var(--ease-out) both;
}
.hero-sub {
  margin-top: 22px;
  max-width:  46ch;
  font-size:  clamp(1.05rem, 1.6vw, 1.25rem);
  color:      rgba(251,243,230,.85);
  animation:  slideUp .7s .55s var(--ease-out) both;
}
.hero-actions {
  margin-top: 36px;
  display:    flex;
  gap:        16px;
  flex-wrap:  wrap;
  animation:  slideUp .7s .65s var(--ease-out) both;
}
.hero-stats {
  margin-top:    60px;
  display:       flex;
  gap:           36px;
  flex-wrap:     wrap;
  border-top:    1px solid rgba(251,243,230,.2);
  padding-top:   28px;
  animation:     slideUp .7s .75s var(--ease-out) both;
}
.hero-stat strong {
  font-family: var(--f-display);
  font-size:   1.5rem;
  display:     block;
  color:       var(--gold-tint);
}
.hero-stat span {
  font-size: .82rem;
  color:     rgba(251,243,230,.65);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   SECTION SCAFFOLDING
   ================================================================ */
section              { padding: 96px 0; }
.section-tight       { padding: 64px 0; }
.bg-cream-deep       { background: var(--cream-deep); }
.bg-ink              { background: var(--ink); color: var(--cream); }
.bg-ink .ink-fade    { color: rgba(251,243,230,.78); }
.bg-red              { background: var(--red); color: var(--cream); }
.bg-red p            { color: rgba(251,243,230,.85); }
.bg-paper            { background: var(--paper); }
.bg-gold-strip       { background: var(--gold); color: var(--ink); }

.section-head {
  display:               grid;
  grid-template-columns: 1.1fr 1fr;
  gap:                   48px;
  align-items:           end;
  margin-bottom:         52px;
}
.section-head h2 { margin-top: 14px; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; }
}

/* ================================================================
   CRACK DIVIDER (signature brand element)
   ================================================================ */
.crack              { width: 100%; height: 34px; display: block; }
.crack path         { fill: none; stroke: var(--line); stroke-width: 1.5; }
.crack.on-red path  { stroke: rgba(251,243,230,.3); }
.crack.on-cream-deep path { stroke: rgba(18,17,16,.18); }

/* ================================================================
   SPLIT (story blocks)
   ================================================================ */
.split {
  display:               grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:                   64px;
  align-items:           center;
}
.split.reverse { grid-template-columns: 1.05fr 0.95fr; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split,
  .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}
.split-media     { position: relative; }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow:    var(--shadow-pop);
  width:         100%;
  height:        100%;
  object-fit:    cover;
  transition:    transform .6s ease, box-shadow .6s ease;
}
.split-media:hover img {
  transform:  scale(1.015);
  box-shadow: var(--shadow-lift);
}
.split-tag {
  position:      absolute;
  bottom:        -18px;
  left:          -18px;
  background:    var(--paper);
  border:        1px solid var(--line);
  border-radius: var(--radius-md);
  padding:       16px 20px;
  box-shadow:    var(--shadow-card);
  max-width:     220px;
}
.split-tag strong { display: block; font-family: var(--f-display); font-size: 1.3rem; color: var(--red); }
.split-tag span   { font-size: .82rem; color: var(--ink-soft); }

/* ================================================================
   VALUE CARDS
   ================================================================ */
.values-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   28px;
}
@media (max-width: 980px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background:    var(--paper);
  border:        1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding:       30px 26px;
  transition:    transform .3s var(--ease-out),
                 box-shadow .3s ease,
                 border-color .3s ease;
}
.value-card:hover {
  transform:    translateY(-4px);
  box-shadow:   var(--shadow-pop);
  border-color: var(--gold);
}
.value-card .icon {
  width:         38px;
  height:        38px;
  color:         var(--gold-dark);
  margin-bottom: 18px;
  transition:    transform .3s var(--ease-out);
}
.value-card:hover .icon { transform: scale(1.15); }
.value-card h4 { margin-bottom: 8px; }
.value-card p  { font-size: .92rem; }

/* ================================================================
   MENU SHOWCASE CARDS (home)
   ================================================================ */
.menu-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   22px;
}
@media (max-width: 980px) { .menu-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-card {
  position:      relative;
  border-radius: var(--radius-md);
  overflow:      hidden;
  aspect-ratio:  4/5;
  box-shadow:    var(--shadow-card);
  display:       block;
  transition:    transform .35s var(--ease-out), box-shadow .35s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.menu-card img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.menu-card:hover img { transform: scale(1.07); }
.menu-card::after {
  content:  "";
  position: absolute;
  inset:    0;
  background: linear-gradient(180deg, rgba(18,17,16,0) 30%, rgba(14,13,12,.92) 100%);
  transition: opacity .3s ease;
}
.menu-card-label {
  position:   absolute;
  left: 20px; right: 20px; bottom: 18px;
  z-index:    2;
  color:      var(--cream);
  transform:  translateY(4px);
  transition: transform .3s ease;
}
.menu-card:hover .menu-card-label { transform: translateY(0); }
.menu-card-label .eyebrow          { color: var(--gold-tint); margin-bottom: 6px; }
.menu-card-label .eyebrow::before  { background: var(--gold); }
.menu-card-label h3                { color: var(--cream); font-size: 1.4rem; }
.menu-card-label .arrow            { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; margin-top: 8px; opacity: 0; transform: translateX(-6px); transition: opacity .25s ease, transform .25s ease; }
.menu-card:hover .arrow            { opacity: 1; transform: translateX(0); }

/* ================================================================
   SPOTLIGHT (featured dish)
   ================================================================ */
.spotlight {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  border-radius:         var(--radius-lg);
  overflow:              hidden;
  box-shadow:            var(--shadow-pop);
  background:            var(--paper);
}
.spotlight-media     { position: relative; min-height: 420px; overflow: hidden; }
.spotlight-media img {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.spotlight:hover .spotlight-media img { transform: scale(1.04); }
.spotlight-copy {
  padding:        56px;
  display:        flex;
  flex-direction: column;
  justify-content: center;
  gap:            18px;
}
.spotlight-price {
  font-family: var(--f-mono);
  font-size:   1.6rem;
  color:       var(--gold-dark);
  font-weight: 600;
}
@media (max-width: 860px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-media { min-height: 260px; }
  .spotlight-copy { padding: 36px 28px; }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-row {
  display:               grid;
  grid-template-columns: repeat(3,1fr);
  gap:                   24px;
}
@media (max-width: 900px) { .testimonial-row { grid-template-columns: 1fr; } }

.testimonial {
  background:    var(--paper);
  border:        1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding:       28px;
  transition:    transform .3s var(--ease-out), box-shadow .3s ease;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.testimonial .stars  { color: var(--gold-dark); letter-spacing: .12em; margin-bottom: 14px; display: block; }
.testimonial p       { color: var(--ink); font-family: var(--f-display); font-size: 1.08rem; line-height: 1.4; }
.testimonial cite    { display: block; margin-top: 16px; font-style: normal; font-size: .85rem; color: var(--ink-soft); font-weight: 600; }

/* ================================================================
   CATERING BAND
   ================================================================ */
.cater-band {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  align-items:           center;
  gap:                   48px;
}
@media (max-width: 860px) { .cater-band { grid-template-columns: 1fr; } }

/* ================================================================
   LOCATION
   ================================================================ */
.loc-grid {
  display:               grid;
  grid-template-columns: 1.1fr .9fr;
  gap:                   40px;
  align-items:           stretch;
}
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }

.loc-card {
  background:    var(--paper);
  border:        1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding:       40px;
}
.hours-table           { width: 100%; border-collapse: collapse; margin-top: 18px; }
.hours-table td        { padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: .96rem; }
.hours-table td:last-child { text-align: right; font-family: var(--f-mono); color: var(--ink); }
.hours-table tr.today td  { color: var(--gold-dark); font-weight: 700; }
.map-frame             { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); min-height: 360px; }
.map-frame iframe      { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.contact-line          { display: flex; align-items: center; gap: 12px; margin-top: 16px; font-weight: 600; }
.contact-line .icon    { width: 20px; height: 20px; color: var(--gold-dark); flex-shrink: 0; }
.contact-line a:hover  { color: var(--gold-dark); }

/* ================================================================
   FOOTER
   ================================================================ */
footer { background: var(--ink); color: rgba(251,243,230,.72); padding-top: 70px; }

.footer-grid {
  display:               grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap:                   40px;
  padding-bottom:        56px;
  border-bottom:         1px solid rgba(251,243,230,.12);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  color:          var(--cream);
  font-family:    var(--f-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size:      .78rem;
  margin-bottom:  18px;
}
.footer-grid ul  { display: flex; flex-direction: column; gap: 11px; font-size: .92rem; }
.footer-grid a   { transition: color .2s ease; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand p  { color: rgba(251,243,230,.6); margin-top: 16px; max-width: 30ch; font-size: .92rem; }
.footer-social   { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
  width:         38px;
  height:        38px;
  border:        1px solid rgba(251,243,230,.22);
  border-radius: 50%;
  display:       flex;
  align-items:   center;
  justify-content: center;
  transition:    background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  background:   var(--gold);
  color:        var(--ink);
  border-color: var(--gold);
  transform:    translateY(-2px);
}

.footer-bottom {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  gap:             16px;
  padding:         26px 0 36px;
  font-size:       .8rem;
  flex-wrap:       wrap;
}
.footer-bottom a:hover { color: var(--gold); }

/* ================================================================
   PAGE HERO (sub-pages)
   ================================================================ */
.page-hero {
  padding:    150px 0 72px;
  background: var(--ink);
  color:      var(--cream);
}
.page-hero.has-photo {
  position:          relative;
  background-size:   cover;
  background-position: center;
  background-color:  var(--ink);
  overflow:          hidden;
}
.page-hero.has-photo::before {
  content:  "";
  position: absolute;
  inset:    0;
  background: linear-gradient(180deg, rgba(18,17,16,.42) 0%, rgba(18,17,16,.88) 100%);
}
.page-hero.has-photo .container { position: relative; z-index: 1; }
.page-hero .eyebrow              { color: var(--gold-tint); margin-bottom: 18px; }
.page-hero .eyebrow::before      { background: var(--gold); }
.page-hero h1                    { color: var(--cream); font-size: clamp(2.4rem, 4.6vw, 3.8rem); }
.page-hero p                     { color: rgba(251,243,230,.8); margin-top: 18px; max-width: 58ch; font-size: 1.1rem; }

/* ================================================================
   MENU PAGE — TABS (marquee)
   ================================================================ */
.menu-tabs {
  margin-bottom: 50px;
  position:   sticky;
  top:        78px;
  z-index:    10;
  background: var(--cream);
  padding:    14px 0;
}
.menu-tabs-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
}
.menu-tabs-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: menu-tabs-marquee 42s linear infinite;
  will-change: transform;
}
.menu-tabs-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  flex-shrink: 0;
}
.menu-tabs:hover .menu-tabs-track,
.menu-tabs:focus-within .menu-tabs-track {
  animation-play-state: paused;
}
@keyframes menu-tabs-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 5px)); }
}
.menu-tab {
  font-family:   var(--f-mono);
  font-size:     .82rem;
  font-weight:   600;
  padding:       9px 16px;
  border-radius: 999px;
  border:        1.5px solid var(--line);
  background:    var(--paper);
  cursor:        pointer;
  white-space:   nowrap;
  flex-shrink:   0;
  transition:    background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.menu-tab:hover { transform: translateY(-1px); }
.menu-tab[aria-current="true"],
.menu-tab:hover { background: var(--red); color: var(--cream); border-color: var(--red); }
@media (prefers-reduced-motion: reduce) {
  .menu-tabs-viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: thin;
  }
  .menu-tabs-track {
    animation: none;
  }
  .menu-tabs-group[aria-hidden="true"] {
    display: none;
  }
}

/* ================================================================
   MENU PAGE — DISHES
   ================================================================ */
.menu-category        { margin-bottom: 76px; scroll-margin-top: 140px; }
.menu-category-head   { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 8px; flex-wrap: wrap; }
.menu-category-head h2 { font-size: clamp(1.7rem,2.6vw,2.3rem); }
.menu-category-note   {
  color: var(--gold-dark);
  max-width: 72ch;
  margin-bottom: 30px;
  font-size: .96rem;
  line-height: 1.45;
}

.featured-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  margin-bottom: 8px;
}
@media (max-width: 760px) {
  .featured-list { grid-template-columns: 1fr; }
}

.featured-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(18,17,16,.06);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(18,17,16,.04), 0 12px 28px -16px rgba(18,17,16,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18,17,16,.06), 0 18px 36px -14px rgba(18,17,16,.22);
}

.featured-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.featured-card-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.08rem;
  margin: 0 0 4px;
  line-height: 1.25;
}
.featured-card-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-card-price {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-weight: 600;
  color: var(--gold-dark);
}

.featured-card-media {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-deep);
}
.featured-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 480px) {
  .featured-card-media {
    width: 75px;
    height: 75px;
    border-radius: 8px;
  }
}

.dish-list            { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px 18px; }
@media (max-width: 760px) { .dish-list { grid-template-columns: 1fr; } }

/* Toast-style dish row: text left, fixed media panel right, + on image */
.dish {
  position:      relative;
  display:        flex;
  align-items:    stretch;
  gap:            0;
  padding:        0;
  overflow:       hidden;
  min-height:     132px;
  background:     #fff;
  border:         1px solid rgba(18,17,16,.08);
  border-radius:  12px;
  box-shadow:     0 2px 8px rgba(18,17,16,.04), 0 12px 28px -16px rgba(18,17,16,.18);
  transition:     transform .2s ease, box-shadow .2s ease;
}
.dish:hover {
  transform:      translateY(-2px);
  box-shadow:     0 4px 12px rgba(18,17,16,.06), 0 18px 36px -14px rgba(18,17,16,.22);
}

.dish-content {
  flex:           1 1 auto;
  min-width:      0;
  display:        flex;
  flex-direction: column;
  gap:            6px;
  padding:        14px 16px 14px 18px;
}

.dish-header {
  display:        flex;
  justify-content: space-between;
  align-items:    baseline;
  gap:            12px;
}

.dish-name        { font-family: var(--f-display); font-weight: 700; font-size: 1.02rem; line-height: 1.25; color: #121110; }
.dish-tags        { display: inline-flex; gap: 6px; margin-left: 8px; vertical-align: middle; }
.tag {
  font-family:    var(--f-mono);
  font-size:      .62rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding:        2px 7px;
  border-radius:  999px;
  background:     var(--sage-tint);
  color:          var(--sage-dark);
  font-weight:    700;
}
.tag.gf { background: var(--gold-tint); color: var(--gold-dark); }
.tag.vf { background: var(--sage-tint); color: var(--sage-dark); }
.tag.notice {
  background: #fff8e1;
  color: #8a6a10;
  border: 1px solid #e8d48a;
}
.tag.oos {
  background: #f3cdd5;
  color: #9b2340;
}
.dish-desc  {
  font-size: .88rem;
  margin: 0;
  color: #5a5753;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dish-price {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--f-mono);
  font-weight: 700;
  color: #121110;
  white-space: nowrap;
}
.dish-price.is-oos {
  text-decoration: line-through;
  opacity: .55;
}
.dish-badge-oos {
  display: inline-block;
  align-self: flex-start;
  margin-top: 2px;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: #f3cdd5;
  color: #9b2340;
}

.dish-media {
  position:     relative;
  flex:         0 0 132px;
  width:        132px;
  min-height:   132px;
  align-self:   stretch;
  background:   #eceae6;
  overflow:     hidden;
}
.dish-media img {
  position:     absolute;
  inset:        0;
  width:        100%;
  height:       100%;
  object-fit:   cover;
  object-position: center;
  display:      block;
}
.dish.is-oos .dish-media img {
  filter: grayscale(1) opacity(.55);
}
.dish-media .dish-img-placeholder,
.dish-media:empty::after {
  content: none;
}

@media (max-width: 480px) {
  .dish { min-height: 116px; }
  .dish-content { padding: 12px 12px 12px 14px; }
  .dish-media {
    flex-basis: 108px;
    width: 108px;
    min-height: 116px;
  }
}


.menu-cta-banner {
  margin-top:      24px;
  background:      var(--ink);
  color:           var(--cream);
  border-radius:   var(--radius-lg);
  padding:         56px;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             30px;
  flex-wrap:       wrap;
  position:        relative;
  overflow:        hidden;
}
.menu-cta-banner::before {
  content:       "";
  position:      absolute;
  top:           -60px;
  right:         -60px;
  width:         280px;
  height:        280px;
  border-radius: 50%;
  background:    rgba(243,196,87,.08);
  pointer-events: none;
}
.menu-cta-banner p { color: rgba(251,243,230,.82); }

/* ================================================================
   ACCORDION (FAQ)
   ================================================================ */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width:           100%;
  background:      none;
  border:          none;
  text-align:      left;
  cursor:          pointer;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             20px;
  padding:         24px 0;
  font-family:     var(--f-display);
  font-size:       1.15rem;
  font-weight:     600;
  color:           var(--ink);
  transition:      color .2s ease;
}
.accordion-trigger:hover { color: var(--gold-dark); }
.accordion-trigger .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.accordion-trigger .plus::before,
.accordion-trigger .plus::after {
  content:    "";
  position:   absolute;
  background: var(--gold-dark);
  transition: transform .25s ease, opacity .25s ease;
}
.accordion-trigger .plus::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.accordion-trigger .plus::after  { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.accordion-trigger[aria-expanded="true"] .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-panel p { padding-bottom: 24px; max-width: 70ch; }

/* ================================================================
   FORMS
   ================================================================ */
.form-grid { display: grid; gap: 16px; }
.field label  { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 7px; }
.field input,
.field select,
.field textarea {
  width:         100%;
  font:          inherit;
  padding:       13px 15px;
  border-radius: var(--radius-sm);
  border:        1.5px solid var(--line);
  background:    var(--paper);
  color:         var(--ink);
  transition:    border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline:      none;
  border-color: var(--gold-dark);
  box-shadow:   0 0 0 3px rgba(200,148,31,.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ================================================================
   LOCATION CARD V2 (Visit page extras)
   ================================================================ */
.underline-accent {
  width:         56px;
  height:        4px;
  background:    var(--gold);
  border-radius: 999px;
  margin:        18px 0 22px;
}
.favorites-row {
  display:         flex;
  justify-content: space-between;
  gap:             12px;
  margin-top:      18px;
}
.favorite-item {
  flex:          1;
  display:       flex;
  flex-direction: column;
  align-items:   center;
  text-align:    center;
  gap:           10px;
}
.favorite-item .icon { width: 26px; height: 26px; color: var(--gold-dark); }
.favorite-item span  { font-size: .85rem; font-weight: 600; line-height: 1.25; }
.callout-box {
  display:       flex;
  align-items:   center;
  gap:           14px;
  border:        1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding:       18px 20px;
  margin-top:    24px;
  background:    var(--sage-tint);
  border-color:  rgba(79,107,61,.25);
  transition:    border-color .2s ease;
}
.callout-box:hover { border-color: var(--sage); }
.callout-box .icon { width: 26px; height: 26px; color: var(--sage-dark); flex-shrink: 0; }
.callout-box p     { margin: 0; font-weight: 600; color: var(--ink); font-size: .96rem; }
.hr-divider        { border: none; border-top: 1px solid var(--line); margin: 24px 0; }

/* ================================================================
   HERO ILLUSTRATION (SVG lines — Visit page)
   ================================================================ */
.hero-illustration    { width: 100%; height: auto; }
.hero-illustration .line      { fill: none; stroke: var(--gold); stroke-width: 2; opacity: .5; stroke-linecap: round; stroke-linejoin: round; }
.hero-illustration .line-soft { fill: none; stroke: var(--cream); stroke-width: 1.6; opacity: .28; stroke-linecap: round; stroke-linejoin: round; }
.hero-illustration text       { font-family: var(--f-mono); font-weight: 600; fill: var(--gold); opacity: .75; }

/* ================================================================
   MISC UTILITIES
   ================================================================ */
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.badge {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  font-family:     var(--f-mono);
  font-size:       .78rem;
  font-weight:     600;
  background:      var(--paper);
  border:          1px solid var(--line);
  border-radius:   999px;
  padding:         8px 14px;
  transition:      border-color .2s ease, transform .2s ease;
}
.badge:hover { border-color: var(--gold); transform: translateY(-1px); }
.badge .icon { width: 15px; height: 15px; color: var(--gold-dark); }

.text-center { text-align: center; }
.mt-0        { margin-top: 0; }
.stack       { display: flex; flex-direction: column; gap: 20px; }
.gap-sm      { gap: 10px; }
.muted       { color: var(--ink-soft); }
.center-col  { max-width: 720px; margin: 0 auto; text-align: center; }

.callout-strip {
  display:         flex;
  align-items:     center;
  gap:             14px;
  flex-wrap:       wrap;
  justify-content: center;
  font-family:     var(--f-mono);
  font-size:       .82rem;
  padding:         16px 0;
}
.callout-strip span  { opacity: .65; }
.callout-strip strong { font-size: 1.35rem; font-family: var(--f-display); }

/* Skip link */
.skip-link {
  position:      absolute;
  left:          -999px;
  top:           auto;
  background:    var(--ink);
  color:         var(--cream);
  padding:       10px 16px;
  border-radius: 8px;
}
.skip-link:focus {
  position: fixed;
  left:     16px;
  top:      16px;
  z-index:  999;
}

/* ================================================================
   RESPONSIVE GLOBAL TWEAKS
   ================================================================ */
@media (max-width: 640px) {
  section        { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .hero          { min-height: auto; padding-top: 20px; }
  .hero-inner    { padding-top: 80px; padding-bottom: 40px; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    margin-top: 28px;
    padding-top: 20px;
  }
  .menu-cta-banner { padding: 36px 28px; }
  .spotlight-copy { padding: 28px 24px; }
  .loc-card       { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.05rem; }
  .hero-sub { font-size: 0.98rem; }
  .hero-stats { gap: 12px 16px; }
  .hero-stat strong { font-size: 1.15rem; }
}

@media (max-width: 420px) {
  .badge-row { flex-direction: column; }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  .topbar, .site-header, .nav-toggle, .hero-actions, footer { display: none; }
  a { color: inherit; }
  .hero { min-height: auto; padding: 32px 0; }
}

.dish-add {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  color: #121110;
  border: 1px solid rgba(18,17,16,.12);
  box-shadow: 0 2px 8px rgba(18,17,16,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.dish-add:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(18,17,16,.22);
  color: #121110;
}
.dish.is-oos .dish-add {
  display: none;
}
.dish-img-placeholder {
  position: absolute;
  inset: 0;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Snell Roundhand", "Segoe Script", cursive;
  font-size: .78rem;
  text-align: center;
  padding: 8px;
}
.dish-img-placeholder::before {
  content: "";
  width: 18px;
  height: 22px;
  border-radius: 50% 50% 45% 45%;
  background: #f3c457;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.12);
}

/* ================================================================
   CATERING CARD GRID SYSTEM (matches screenshot layout)
   ================================================================ */
.cater-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .cater-card-list { grid-template-columns: 1fr; }
}

.cater-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 2px 10px rgba(18,17,16,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cater-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--line);
}
.cater-card-head {
  margin-bottom: 16px;
}
.cater-card-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cater-card-desc {
  font-size: .91rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.cater-card-price {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--ink);
  text-align: right;
  margin-top: auto;
}

/* ================================================================
   LOCAL GUIDE RESPONSIVE GRID
   ================================================================ */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}
