/* ==========================================================================
   Jack's Cafe — Verona, NJ
   "Sunny Side" design system — warm vintage luncheonette
   Enamel teal + egg-yolk marigold on cream, espresso ink.
   Signature motif: the sunny-side-up egg.
   ========================================================================== */

:root {
  /* Surfaces */
  --paper:      #faf3e2;   /* warm cream */
  --paper-2:    #f3e8cd;   /* deeper cream — cards */
  --paper-3:    #ece0c2;   /* hairline panels */
  --white:      #fffdf6;   /* "egg white" */

  /* Ink */
  --ink:        #221c16;   /* espresso near-black */
  --ink-soft:   #4b4035;
  --ink-faint:  #7a6f60;

  /* Brand */
  --teal:       #0f6e62;   /* deep enamel teal */
  --teal-deep:  #0a4f46;
  --teal-ink:   #073a33;
  --yolk:       #f4a91c;   /* egg-yolk marigold */
  --yolk-soft:  #fbc75a;
  --yolk-deep:  #d98a05;

  /* Lines + shadow */
  --line:       rgba(34, 28, 22, 0.12);
  --line-2:     rgba(34, 28, 22, 0.20);
  --shadow-sm:  0 1px 2px rgba(34,28,22,.06), 0 2px 8px rgba(34,28,22,.05);
  --shadow-md:  0 8px 24px rgba(34,28,22,.10), 0 2px 6px rgba(34,28,22,.06);
  --shadow-lg:  0 24px 60px rgba(10,79,70,.18), 0 6px 18px rgba(34,28,22,.10);

  /* Type */
  --display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 56px);

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: var(--r-sm); z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); }
.display { font-size: clamp(2.6rem, 7vw, 5.1rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 2vw, 1.32rem); color: var(--ink-soft); line-height: 1.55; }

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 18px; height: 18px; flex: none;
  background: radial-gradient(circle at 50% 50%, var(--yolk) 0 32%, var(--white) 33% 100%);
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1.5px rgba(34,28,22,.16);
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section-tight { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.mt-1 { margin-top: 14px; } .mt-2 { margin-top: 26px; } .mt-3 { margin-top: 44px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--teal); --fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: var(--r-pill); border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--teal-deep); }
.btn:active { transform: translateY(0); }
.btn--yolk { --bg: var(--yolk); --fg: var(--ink); }
.btn--yolk:hover { background: var(--yolk-deep); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line-2); box-shadow: none;
}
.btn--ghost:hover { background: var(--white); border-color: var(--teal); color: var(--teal-deep); }
.btn svg { width: 19px; height: 19px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; font-size: 1.32rem; color: var(--ink); letter-spacing: -0.02em; }
.brand .egg { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-family: var(--body); font-weight: 600; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: var(--r-pill); font-weight: 600; font-size: .98rem; color: var(--ink-soft);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--white); }
.nav-links a[aria-current="page"] { color: var(--teal-deep); background: color-mix(in srgb, var(--yolk) 22%, transparent); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: var(--white); align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav-links, .nav-actions .btn--call-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    position: absolute; left: var(--gutter); right: var(--gutter); top: 72px;
    background: var(--white); padding: 14px; border-radius: var(--r-lg);
    border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  }
  .nav.open .nav-links a { padding: 13px 16px; font-size: 1.05rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(54px, 8vw, 110px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 88% -10%, color-mix(in srgb, var(--yolk-soft) 60%, transparent) 0, transparent 55%),
    radial-gradient(90% 80% at -10% 110%, color-mix(in srgb, var(--teal) 16%, transparent) 0, transparent 50%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero h1 { margin-top: 16px; }
.hero .lead { margin-top: 20px; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; align-items: center; }
.stars { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.stars .s { color: var(--yolk-deep); letter-spacing: 1px; }
.hero-meta .since { font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .since::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

/* Hero art: stacked "plate" card */
.plate {
  position: relative; aspect-ratio: 1/1; border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 50% 46%, var(--white) 0 30%, transparent 31%),
    conic-gradient(from 0deg, var(--teal) 0 100%);
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  border: 10px solid var(--white);
  isolation: isolate;
}
.plate .egg-big { width: 64%; height: 64%; filter: drop-shadow(0 10px 18px rgba(10,79,70,.22)); }
.plate .ribbon {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--paper); font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; padding: 9px 18px; border-radius: var(--r-pill); white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.plate .pin {
  position: absolute; background: var(--white); border-radius: var(--r-pill);
  box-shadow: var(--shadow-md); font-weight: 700; font-size: .8rem; padding: 8px 13px;
  display: inline-flex; align-items: center; gap: 7px; color: var(--ink);
}
.plate .pin svg { width: 15px; height: 15px; color: var(--teal); }
.plate .pin--tl { top: 8%; left: -6%; }
.plate .pin--br { bottom: 26%; right: -8%; }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 360px; margin-inline: auto; width: 100%; }
}

/* ---------- Generic cards / grid ---------- */
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--yolk) 24%, var(--white)); color: var(--teal-deep); margin-bottom: 16px;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .98rem; }

/* ---------- "Open now" hours card ---------- */
.hours-card {
  background: var(--teal); color: var(--white); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.hours-card::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px;
  background: radial-gradient(circle at 50% 50%, var(--yolk) 0 30%, transparent 31%);
  opacity: .18;
}
.hours-card h3 { color: var(--white); }
.hours-card .status {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700;
  padding: 7px 14px; border-radius: var(--r-pill); background: rgba(255,255,255,.14); margin-bottom: 14px;
}
.hours-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--yolk-soft); box-shadow: 0 0 0 4px rgba(251,199,90,.25); }
.hours-card .dot.closed { background: #f0a3a3; box-shadow: 0 0 0 4px rgba(240,163,163,.22); }
.hours-list { margin-top: 8px; }
.hours-list li { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: .97rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list li.today { font-weight: 700; }
.hours-list .day { color: rgba(255,255,255,.86); }
.hours-list li.today .day { color: var(--white); }

/* ---------- Menu ---------- */
.menu-cat { margin-bottom: clamp(40px, 5vw, 64px); }
.menu-cat__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px; }
.menu-cat__head h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
.menu-cat__head .rule { flex: 1; height: 1px; background: var(--line-2); }
.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 40px; }
@media (max-width: 720px) { .menu-items { grid-template-columns: 1fr; } }
.menu-item { padding: 13px 0; border-bottom: 1px dashed var(--line); }
.menu-item__top { display: flex; align-items: baseline; gap: 10px; }
.menu-item__top .name { font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.menu-item__top .dots { flex: 1; border-bottom: 2px dotted var(--line-2); transform: translateY(-4px); }
.menu-item .desc { font-size: .92rem; color: var(--ink-faint); margin-top: 2px; }
.tag { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-deep); background: color-mix(in srgb, var(--yolk) 28%, var(--white)); padding: 2px 8px; border-radius: var(--r-pill); margin-left: 8px; vertical-align: middle; }
.menu-note { font-size: .92rem; color: var(--ink-faint); }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 24px); }
@media (max-width: 720px) { .reviews { grid-template-columns: 1fr; } }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 30px); box-shadow: var(--shadow-sm); position: relative; }
.review .q { font-family: var(--display); font-size: 2.4rem; color: var(--yolk); line-height: .6; }
.review p { color: var(--ink); font-size: 1.05rem; margin-top: 6px; }
.review .who { margin-top: 14px; font-size: .88rem; color: var(--ink-faint); font-weight: 600; }
.review .who b { color: var(--teal-deep); }

/* ---------- Story / about split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.frame {
  background: var(--white); border-radius: var(--r-lg); border: 10px solid var(--white);
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; position: relative; overflow: hidden;
  display: grid; place-items: center;
  background-image:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--yolk-soft) 70%, transparent) 0 22%, transparent 23%),
    linear-gradient(145deg, var(--paper-2), var(--paper-3));
}
.frame .est { position: absolute; bottom: 14px; left: 14px; background: var(--ink); color: var(--paper); font-weight: 700; font-size: .8rem; padding: 8px 14px; border-radius: var(--r-pill); }
.frame .egg-big { width: 46%; }

.statline { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 48px); margin-top: 30px; }
.stat b { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--teal-deep); display: block; line-height: 1; }
.stat span { font-size: .9rem; color: var(--ink-faint); font-weight: 600; }

/* ---------- Band (teal section) ---------- */
.band { background: var(--teal-ink); color: var(--paper); position: relative; overflow: hidden; }
.band::before {
  content: ""; position: absolute; inset: 0; opacity: .5; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.1' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E");
}
.band > * { position: relative; z-index: 1; }
.band h2, .band h3 { color: var(--white); }
.band p { color: rgba(255,253,246,.82); }
.band .eyebrow { color: var(--yolk-soft); }
.band .eyebrow::before { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }

/* ---------- Map / visit ---------- */
.map-embed { border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--r-lg); filter: saturate(.92) contrast(1.02); }
.contact-rows li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-rows li:last-child { border-bottom: 0; }
.contact-rows .ic { width: 44px; height: 44px; border-radius: 12px; background: color-mix(in srgb, var(--teal) 12%, var(--white)); color: var(--teal-deep); display: grid; place-items: center; flex: none; }
.contact-rows .ic svg { width: 22px; height: 22px; }
.contact-rows .lbl { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); font-weight: 700; }
.contact-rows .val { font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.contact-rows a.val:hover { color: var(--teal-deep); }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--yolk); border-radius: var(--r-lg); padding: clamp(30px, 4vw, 52px); text-align: center; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.cta-strip h2 { color: var(--ink); }
.cta-strip p { color: color-mix(in srgb, var(--ink) 80%, transparent); }
.cta-strip .hero-cta { justify-content: center; }
.cta-strip .btn--yolk { --bg: var(--ink); --fg: var(--paper); }
.cta-strip .btn--yolk:hover { background: var(--teal-deep); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding-block: clamp(48px, 6vw, 76px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 48px); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--paper); }
.site-footer p { color: rgba(250,243,226,.66); font-size: .95rem; }
.footer-col h4 { font-family: var(--body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--yolk-soft); margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(250,243,226,.8); padding: 6px 0; font-size: .97rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(250,243,226,.14); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .85rem; color: rgba(250,243,226,.5); }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: var(--r-pill); background: rgba(250,243,226,.1); display: grid; place-items: center; color: var(--paper); transition: background .2s var(--ease), transform .2s var(--ease); }
.socials a:hover { background: var(--teal); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: none; gap: 10px;
  background: color-mix(in srgb, var(--ink) 96%, transparent); backdrop-filter: blur(8px);
  padding: 10px; border-radius: var(--r-pill); box-shadow: var(--shadow-lg);
}
.callbar .btn { flex: 1; padding: 13px; font-size: .98rem; }
@media (max-width: 880px) { .callbar { display: flex; } body { padding-bottom: 86px; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .plate, .float { animation: none !important; }
}

/* gentle float for hero pins */
.float { animation: float 6s ease-in-out infinite; }
.float--2 { animation-delay: -3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .85rem; color: var(--ink-faint); padding-top: 22px; }
.crumbs a:hover { color: var(--teal-deep); }
.crumbs span { margin: 0 8px; opacity: .5; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: clamp(28px, 4vw, 50px); padding-bottom: clamp(30px, 4vw, 54px); }
.page-hero h1 { margin-top: 12px; font-size: clamp(2.2rem, 5.4vw, 3.8rem); }
.page-hero .lead { margin-top: 16px; }

/* utility */
.flex { display: flex; } .wrap-gap { gap: 14px; flex-wrap: wrap; align-items: center; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 8px 16px; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.pill svg { width: 16px; height: 16px; color: var(--teal); display: inline; vertical-align: -3px; margin-right: 6px; }

/* ==========================================================================
   Real photography
   ========================================================================== */
.hero-photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 8px solid var(--white);
  aspect-ratio: 5/6; background: var(--paper-2);
}
.hero-photo > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo .tag-ribbon {
  position: absolute; right: 16px; bottom: 16px;
  background: var(--ink); color: var(--paper); font-weight: 700; font-size: .82rem;
  padding: 9px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow-md);
}
.hero-photo .float-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--white); border-radius: var(--r-pill); box-shadow: var(--shadow-md);
  padding: 8px 14px; font-weight: 700; font-size: .82rem; color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px;
}
.hero-photo .float-badge .s { color: var(--yolk-deep); letter-spacing: 1px; }

.hero-inset {
  position: absolute; left: -24px; bottom: -24px; width: 42%; max-width: 168px;
  border-radius: var(--r-md); overflow: hidden; border: 6px solid var(--white);
  box-shadow: var(--shadow-lg); aspect-ratio: 3/4; background: var(--paper-2); z-index: 2;
}
.hero-inset img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; }
@media (max-width: 820px) { .hero-inset { display: none; } }

/* Photo frame (about / visit) */
.photo-frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 8px solid var(--white); position: relative; aspect-ratio: 4/3; background: var(--paper-2);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame--tall { aspect-ratio: 4/5; }
.photo-frame--tall img { object-position: center 22%; }
.photo-frame .est {
  position: absolute; bottom: 14px; left: 14px; background: var(--ink); color: var(--paper);
  font-weight: 700; font-size: .8rem; padding: 8px 14px; border-radius: var(--r-pill);
}

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery figure {
  margin: 0; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm);
  position: relative; aspect-ratio: 1/1; background: var(--paper-2);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure.wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery figure.wide { grid-column: span 2; } }
@media (max-width: 460px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Menu feature row (with thumbnail) */
.menu-feature { display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.menu-feature:last-child { border-bottom: 0; }
.menu-feature > img { width: 88px; height: 88px; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.menu-feature .name { font-family: var(--display); font-weight: 700; font-size: 1.06rem; color: var(--ink); display: block; }
.menu-feature .desc { font-size: .9rem; color: var(--ink-faint); margin-top: 2px; }

/* Featured photo strip (menu page) */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.photo-strip figure { margin: 0; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; position: relative; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }
.photo-strip figcaption { position: absolute; left: 12px; bottom: 12px; background: var(--ink); color: var(--paper); font-weight: 700; font-size: .8rem; padding: 6px 12px; border-radius: var(--r-pill); }
@media (max-width: 640px) { .photo-strip { grid-template-columns: 1fr 1fr; } .photo-strip figure:first-child { grid-column: span 2; } }

/* Decorative numbering (sequential, intentional) */
.num {
  font-family: var(--display); font-weight: 800; font-size: 1.05rem;
  color: var(--teal-deep); background: color-mix(in srgb, var(--yolk) 26%, var(--white));
  width: 38px; height: 38px; border-radius: var(--r-pill); display: inline-grid; place-items: center;
  margin-bottom: 14px; box-shadow: inset 0 0 0 1.5px rgba(34,28,22,.10);
}
.band .num { background: rgba(255,255,255,.14); color: var(--yolk-soft); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.18); }
