/* ============================================================
   WiseCracks Cafe — Design System
   Warm artisan diner. Built around the logo palette:
   mustard / rust-red / olive on warm cream, espresso ink.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --cream:        #F7F0E1;
  --cream-deep:   #EFE3C9;
  --paper:        #FFFCF5;
  --ink:          #2A2017;
  --ink-soft:     #5A4B3C;
  --rust:         #A8392A;
  --rust-deep:    #8C2C20;
  --mustard:      #D99A2B;
  --mustard-deep: #C2851A;
  --olive:        #6E7039;
  --sage:         #9AA06A;
  --espresso:     #241B13;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-script:  "Caveat", "Comic Sans MS", cursive;

  /* Spacing & rhythm */
  --container: 1200px;
  --container-narrow: 880px;
  --radius:    6px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(42, 32, 23, 0.06);
  --shadow-md: 0 14px 40px rgba(42, 32, 23, 0.12);
  --shadow-lg: 0 30px 70px rgba(42, 32, 23, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--mustard); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--espresso);
  font-optical-sizing: auto;
}
.display {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 600;
}
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { color: var(--ink-soft); }
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--mustard);
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 2px;
  background: var(--mustard);
}
.script {
  font-family: var(--font-script);
  color: var(--rust);
  font-weight: 600;
}

/* ---------- Layout ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, var(--container-narrow)); margin-inline: auto; }
section { position: relative; }
.section-pad { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-pad-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--rust);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s;
  box-shadow: 0 8px 22px rgba(168, 57, 42, 0.28);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(168, 57, 42, 0.34); background: var(--rust-deep); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--mustard { --btn-bg: var(--mustard); --btn-fg: var(--espresso); box-shadow: 0 8px 22px rgba(217, 154, 43, 0.32); }
.btn--mustard:hover { background: var(--mustard-deep); box-shadow: 0 14px 30px rgba(217, 154, 43, 0.4); }
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(42, 32, 23, 0.18);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); box-shadow: inset 0 0 0 2px var(--ink); }
.btn--light { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-weight: 600; color: var(--rust);
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: border-color 0.3s, gap 0.3s;
}
.link-arrow:hover { border-color: var(--rust); gap: 0.7em; }

/* ---------- Header ---------- */
.topbar {
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.55rem 0; flex-wrap: wrap; }
.topbar a { color: var(--mustard); font-weight: 600; }
.topbar .dot { opacity: 0.4; margin: 0 0.6rem; }
.topbar__social { display: flex; gap: 1rem; align-items: center; }
.topbar__social a { color: var(--cream); opacity: 0.85; transition: opacity 0.2s, color 0.2s; display: inline-flex; }
.topbar__social a:hover { opacity: 1; color: var(--mustard); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 240, 225, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: rgba(42,32,23,0.07); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.7rem 0; }
.brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand__text { line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--espresso); letter-spacing: -0.01em; }
.brand__sub { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rust); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  position: relative; padding: 0.5rem 0.9rem; font-weight: 500; font-size: 0.97rem; color: var(--ink);
  border-radius: 6px; transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.28rem; height: 2px;
  background: var(--rust); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--rust); }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }

/* Highlighted "Order Pickup" CTA in the header — gold with pulsating rings */
.nav-actions .btn {
  position: relative;
  isolation: isolate;
  background: var(--mustard);
  color: var(--espresso);
  box-shadow: 0 8px 22px rgba(217, 154, 43, 0.38);
}
.nav-actions .btn:hover {
  background: var(--mustard-deep);
  box-shadow: 0 14px 30px rgba(217, 154, 43, 0.48);
}
.nav-actions .btn::before,
.nav-actions .btn::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  border: 2px solid var(--mustard);
  z-index: -1;
  pointer-events: none;
  animation: orderPulse 2.4s var(--ease) infinite;
}
.nav-actions .btn::after { animation-delay: 1.2s; }
@keyframes orderPulse {
  0%   { transform: scale(1);    opacity: 0.85; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-actions .btn::before,
  .nav-actions .btn::after { animation: none; opacity: 0.6; transform: none; }
}

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 10px; }
.nav-toggle span { height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Checkered motif (echoes logo border) ---------- */
.checker {
  height: 14px;
  background-image:
    linear-gradient(45deg, var(--mustard) 25%, transparent 25%, transparent 75%, var(--rust) 75%),
    linear-gradient(45deg, var(--rust) 25%, transparent 25%, transparent 75%, var(--mustard) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  background-color: var(--olive);
  opacity: 0.92;
}
.checker--thin { height: 8px; background-size: 16px 16px; background-position: 0 0, 8px 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__content { max-width: 33ch; }
.hero .display { margin: 0.4rem 0 0; }
.hero .display em { font-style: italic; color: var(--rust); }
.hero__lead { margin-top: 1.4rem; max-width: 42ch; }
.hero__cta { margin-top: 2.1rem; }
.hero__meta { margin-top: 2.4rem; display: flex; gap: 2rem; flex-wrap: wrap; }
.hero__meta-item .k { font-family: var(--font-display); font-size: 1.5rem; color: var(--espresso); font-weight: 600; }
.hero__meta-item .v { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--paper); border-radius: 50%;
  width: 128px; height: 128px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md); border: 2px solid var(--cream-deep);
  animation: spin 26s linear infinite;
}
.hero__badge img { width: 64px; height: 64px; border-radius: 0; }
.hero__seal {
  position: absolute; top: -18px; right: -10px;
  background: var(--rust); color: var(--cream);
  font-family: var(--font-script); font-size: 1.4rem; line-height: 1;
  padding: 0.9rem 1.1rem; border-radius: 50% 50% 50% 4px;
  box-shadow: var(--shadow-md); transform: rotate(6deg);
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__badge { animation: none; } }

.hero__deco { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.5; }

/* ---------- Marquee strip ---------- */
.marquee { background: var(--rust); color: var(--cream); overflow: hidden; padding: 0.85rem 0; }
.marquee__track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; display: inline-flex; align-items: center; gap: 3rem; }
.marquee span::after { content: "✦"; color: var(--mustard); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Section heading block ---------- */
.section-head { max-width: 58ch; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 0.7rem; }
.section-head p { margin-top: 1rem; }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature {
  background: var(--paper); border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(42,32,23,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-content: center;
  background: var(--cream-deep); color: var(--rust); margin-bottom: 1.1rem;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.feature p { font-size: 0.97rem; }

/* ---------- Dish cards ---------- */
.dish { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--espresso); }
.dish img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.7s var(--ease); }
.dish:hover img { transform: scale(1.06); }
.dish__body {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.4rem 1.3rem;
  color: var(--cream);
  background: linear-gradient(to top, rgba(20,14,9,0.92) 10%, rgba(20,14,9,0.55) 55%, transparent);
}
.dish__body h3 { color: #fff; font-size: 1.35rem; }
.dish__price { font-family: var(--font-display); color: var(--mustard); font-weight: 600; font-size: 1.05rem; }
.dish__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish p { color: rgba(247,240,225,0.82); font-size: 0.92rem; margin-top: 0.25rem; }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split__media { position: relative; }
.split__content h2 { margin-bottom: 1.1rem; }
.tag-pill {
  display: inline-block; background: var(--cream-deep); color: var(--olive);
  font-weight: 600; font-size: 0.8rem; padding: 0.35em 0.9em; border-radius: 100px; margin: 0.25rem 0.4rem 0 0;
}

/* image frame accent */
.framed { position: relative; }
.framed::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 2px solid var(--mustard);
  border-radius: var(--radius-lg); z-index: -1;
}

/* ---------- Coffee band ---------- */
.band { background: var(--espresso); color: var(--cream); position: relative; overflow: hidden; }
.band h2, .band h3 { color: #fff; }
.band p { color: rgba(247,240,225,0.78); }
.band .eyebrow { color: var(--mustard); }
.band .eyebrow::before, .band .eyebrow::after { background: var(--rust); }
.band__logo { background: var(--paper); border-radius: var(--radius-lg); padding: 2.5rem; display: grid; place-content: center; box-shadow: var(--shadow-md); }
.band__logo img { width: 100%; max-width: 360px; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 0; box-shadow: none; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--rust); font-weight: 600; line-height: 1; }
.band .stat .num { color: var(--mustard); }
.stat .lbl { margin-top: 0.5rem; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.band .stat .lbl { color: rgba(247,240,225,0.7); }

/* ---------- Timeline (history) ---------- */
.timeline { position: relative; max-width: 820px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 26px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--mustard), var(--rust)); }
.tl-item { position: relative; padding: 0 0 2.6rem 80px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-year {
  position: absolute; left: 0; top: -4px; width: 54px; height: 54px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--mustard); color: var(--rust);
  display: grid; place-content: center; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  box-shadow: var(--shadow-sm); z-index: 1;
}
.tl-card { background: var(--paper); border-radius: var(--radius-lg); padding: 1.5rem 1.7rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(42,32,23,0.05); }
.tl-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.tl-card .yr-full { font-family: var(--font-script); color: var(--rust); font-size: 1.5rem; line-height: 1; display: block; margin-bottom: 0.2rem; }

/* ---------- Menu page ---------- */
.menu-hero { background: var(--espresso); color: var(--cream); }
.menu-hero h1, .menu-hero h2 { color: #fff; }
.menu-nav { position: sticky; top: 72px; z-index: 50; background: var(--cream); border-bottom: 1px solid rgba(42,32,23,0.08); }
.menu-nav__inner { display: flex; gap: 0.4rem; overflow-x: auto; padding: 0.8rem 0; scrollbar-width: none; }
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav a { white-space: nowrap; padding: 0.45rem 1rem; border-radius: 100px; font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); transition: background 0.2s, color 0.2s; }
.menu-nav a:hover, .menu-nav a.active { background: var(--rust); color: #fff; }

.menu-section { scroll-margin-top: 140px; }
.menu-section + .menu-section { margin-top: clamp(2.5rem, 5vw, 4rem); }
.menu-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-bottom: 2px solid var(--cream-deep); padding-bottom: 0.9rem; margin-bottom: 1.6rem; }
.menu-section__head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.menu-section__note { color: var(--ink-soft); font-size: 0.92rem; font-style: italic; max-width: 46ch; }
.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.3rem 3rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 0.5rem; padding: 0.85rem 0; border-bottom: 1px dotted rgba(42,32,23,0.18); }
.menu-item__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--espresso); }
.menu-item__desc { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.1rem; }
.menu-item__price { font-family: var(--font-display); font-weight: 600; color: var(--rust); white-space: nowrap; font-size: 1.05rem; }
.menu-item__price .sub { font-size: 0.78rem; color: var(--ink-soft); font-weight: 500; }
.menu-callout { background: var(--cream-deep); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; justify-content: space-between; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 1rem; }
.gallery a { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* ---------- Quote / review ---------- */
.quote { max-width: 760px; margin-inline: auto; text-align: center; }
.quote__mark { font-family: var(--font-display); font-size: 5rem; line-height: 0.5; color: var(--mustard); }
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.1rem); font-style: italic; color: var(--espresso); line-height: 1.4; margin: 1rem 0 1.5rem; }
.quote__author { font-weight: 600; color: var(--rust); }
.stars { color: var(--mustard); letter-spacing: 0.15em; font-size: 1.1rem; }

.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.review { background: var(--paper); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(42,32,23,0.05); display: flex; flex-direction: column; gap: 0.9rem; }
.review p { color: var(--ink); font-size: 1.02rem; }
.review__author { margin-top: auto; font-weight: 600; color: var(--espresso); }
.review__author span { display: block; font-weight: 400; font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--rust); color: var(--cream); text-align: center; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(247,240,225,0.9); max-width: 50ch; margin: 1rem auto 1.8rem; }
.cta-band__deco { position: absolute; font-family: var(--font-display); font-size: 12rem; opacity: 0.08; pointer-events: none; }

/* ---------- Info / hours / location ---------- */
.info-card { background: var(--paper); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(42,32,23,0.05); }
.info-card h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; font-size: 1.3rem; }
.info-card h3 svg { width: 22px; height: 22px; color: var(--rust); }
.hours-row { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px dotted rgba(42,32,23,0.16); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: var(--espresso); }
.hours-row .time { color: var(--ink-soft); }
.hours-row.today { color: var(--rust); }
.hours-row.today .day, .hours-row.today .time { color: var(--rust); font-weight: 700; }
.badge-open { display: inline-flex; align-items: center; gap: 0.5em; background: rgba(110,112,57,0.14); color: var(--olive); font-weight: 700; font-size: 0.82rem; padding: 0.35em 0.85em; border-radius: 100px; }
.badge-open .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 0 rgba(110,112,57,0.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(110,112,57,0); } 100% { box-shadow: 0 0 0 0 rgba(110,112,57,0); } }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 0; width: 100%; height: 100%; min-height: 320px; filter: saturate(1.05); }

/* ---------- Contact form ---------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.88rem; color: var(--espresso); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 0.8rem 1rem; border-radius: var(--radius); border: 1.5px solid rgba(42,32,23,0.15);
  background: var(--paper); transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--mustard); box-shadow: 0 0 0 3px rgba(217,154,43,0.18); }
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--espresso); color: var(--cream); text-align: center; padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero p { color: rgba(247,240,225,0.82); max-width: 56ch; margin: 1.1rem auto 0; }
.page-hero .eyebrow { color: var(--mustard); justify-content: center; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: var(--rust); }
.breadcrumb { font-size: 0.85rem; color: rgba(247,240,225,0.6); margin-top: 1.4rem; }
.breadcrumb a { color: var(--mustard); }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: rgba(247,240,225,0.78); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand img { height: 56px; margin-bottom: 1.1rem; filter: brightness(0) invert(1) opacity(0.95); }
.footer-brand p { color: rgba(247,240,225,0.6); font-size: 0.95rem; max-width: 32ch; }
.footer-col h4 { color: var(--cream); font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: rgba(247,240,225,0.72); transition: color 0.2s; }
.footer-col a:hover { color: var(--mustard); }
.footer-contact li { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--mustard); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-content: center; background: rgba(247,240,225,0.08); color: var(--cream); transition: background 0.25s, transform 0.25s; }
.footer-social a:hover { background: var(--rust); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(247,240,225,0.12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: rgba(247,240,225,0.5); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Decorative egg dots ---------- */
.bg-soft { background: linear-gradient(180deg, var(--cream) 0%, #F2E8D2 100%); }
.bg-paper { background: var(--paper); }

/* =================== Responsive =================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: none; }
  .hero__media { max-width: 460px; margin-inline: auto; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .split--reverse .split__media { order: -1; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .reviews { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .menu-nav { top: 64px; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .topbar__social { display: none; }
  .hero__badge { width: 100px; height: 100px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .menu-section__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .brand__sub { display: none; }
  .brand img { height: 40px; }
  .topbar { font-size: 0.74rem; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); z-index: 200;
  background: var(--cream); box-shadow: -20px 0 60px rgba(0,0,0,0.2);
  transform: translateX(100%); transition: transform 0.4s var(--ease); padding: 1.5rem;
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mobile-nav__head img { height: 42px; }
.mobile-nav__close { width: 44px; height: 44px; font-size: 1.6rem; color: var(--ink); }
.mobile-nav a.m-link { padding: 1rem 0.4rem; font-family: var(--font-display); font-size: 1.4rem; color: var(--espresso); border-bottom: 1px solid rgba(42,32,23,0.1); transition: color 0.2s, padding-left 0.2s; }
.mobile-nav a.m-link:hover { color: var(--rust); padding-left: 0.8rem; }
.mobile-nav .btn { margin-top: 1.5rem; justify-content: center; }
.mobile-nav__meta { margin-top: auto; padding-top: 1.5rem; font-size: 0.9rem; color: var(--ink-soft); }
.overlay { position: fixed; inset: 0; background: rgba(20,14,9,0.5); opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; z-index: 150; }
.overlay.show { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }
