/* ═══════════════════════════════════════════════════
   COOK'S KITCHEN — style.css
   ═══════════════════════════════════════════════════ */

/* ── RESET & TOKENS ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #F2EFE8;
  --surface: #FFFFFF;
  --surface2:#F7F5F0;
  --text:    #1A1510;
  --text2:   #5A5048;
  --text3:   #8A7E72;
  --red:     #BF3B2B;
  --red2:    #D94B39;
  --amber:   #C8880A;
  --amber2:  #EDAA1E;
  --green:   #2B5449;
  --border:  rgba(26,21,16,0.09);
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  24px;
  --sh-sm: 0 1px 4px rgba(0,0,0,0.07);
  --sh-md: 0 4px 20px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.05);
  --sh-lg: 0 16px 56px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.07);
  --sh-xl: 0 32px 80px rgba(0,0,0,0.15);
}

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body { font-family: 'DM Sans', system-ui, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; font-size: 16px; line-height: 1.6; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── FOCUS STATES (accessibility) ───────────────────*/
:focus-visible {
  outline: 3px solid var(--amber2);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── NAV ─────────────────────────────────────────── */
#nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: 60px; display: flex; align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
#nav.solid {
  background: rgba(242,239,232,0.94);
  backdrop-filter: saturate(200%) blur(24px);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.nav-wrap {
  width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; background: none; border: none; padding: 0; cursor: pointer; }
.nav-logo svg { height: 36px; width: auto; flex-shrink: 0; }
.nav-logo-text { font-family: 'DM Serif Display', serif; font-size: 1.1rem; letter-spacing: -.015em; color: var(--text); transition: color .2s; white-space: nowrap; }
#nav.hero-mode .nav-logo-text { color: #fff; }
#nav.hero-mode .nav-logo svg .logo-text { fill: #fff; }

.nav-center { display: flex; align-items: center; gap: 2px; }
.nav-pill {
  font-size: .82rem; font-weight: 500; color: var(--text2);
  padding: 6px 14px; border-radius: 50px; border: none; background: none;
  transition: all .18s;
}
.nav-pill:hover { color: var(--text); background: rgba(26,21,16,.06); }
.nav-pill.on { color: var(--red); font-weight: 700; }
#nav.hero-mode .nav-pill { color: rgba(255,255,255,.78); }
#nav.hero-mode .nav-pill:hover { color: #fff; background: rgba(255,255,255,.12); }
#nav.hero-mode .nav-pill.on { color: var(--amber2); background: rgba(237,170,30,.14); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  font-size: .82rem; font-weight: 700; color: var(--text2);
  display: flex; align-items: center; gap: 6px;
  padding: 6px 0; background: none; border: none;
  transition: color .2s;
}
.nav-phone:hover { color: var(--red); }
#nav.hero-mode .nav-phone { color: rgba(255,255,255,.75); }
#nav.hero-mode .nav-phone:hover { color: #fff; }
.nav-phone svg { width: 14px; height: 14px; }

#nav-cta {
  font-size: .82rem; font-weight: 700;
  background: var(--red); color: #fff;
  border: none; border-radius: 50px; padding: 8px 20px;
  transition: all .18s; box-shadow: 0 2px 10px rgba(191,59,43,.38);
  white-space: nowrap;
}
#nav-cta:hover { background: var(--red2); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(191,59,43,.46); }

#burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
#burger span { width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; display: block; transition: .3s; }
#nav.hero-mode #burger span { background: #fff; }

/* Mobile drawer */
#drawer {
  display: none; position: fixed; inset: 60px 0 auto 0; z-index: 899;
  background: rgba(242,239,232,.97); backdrop-filter: blur(20px);
  padding: 12px 28px 22px; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 2px;
}
#drawer.open { display: flex; }
#drawer button {
  font-size: 1rem; font-weight: 500; color: var(--text);
  background: none; border: none; border-bottom: 1px solid var(--border);
  padding: 13px 0; text-align: left;
}
#drawer button.on { color: var(--red); font-weight: 700; }
.drawer-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 700; color: var(--red);
  padding: 13px 0; border-bottom: 1px solid var(--border);
}

/* Sticky mobile call bar */
#mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--red); color: #fff;
  padding: 14px 24px;
  align-items: center; justify-content: center; gap: 10px;
  font-size: 1rem; font-weight: 700; letter-spacing: .01em;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  text-decoration: none;
}
#mobile-call-bar svg { width: 18px; height: 18px; }

/* ── PAGE TRANSITIONS ─────────────────────────────── */
.page { display: none; }
.page.active { display: block; animation: pgIn .3s cubic-bezier(.4,0,.2,1) both; }
@keyframes pgIn { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform: none; } }
@keyframes fdUp   { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform:none; } }
@keyframes fdDown { from { opacity:0; transform: translateY(-14px);} to { opacity:1; transform:none; } }

/* ── SHARED UTILITIES ─────────────────────────────── */
.eyebrow { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -.02em; line-height: 1.1; }
.fu { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fu.in { opacity: 1; transform: none; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,7,4,.90) 0%, rgba(10,7,4,.30) 52%, rgba(10,7,4,.06) 100%);
}
.hero-pill {
  position: absolute; top: 78px; right: 32px; z-index: 2;
  background: var(--red); color: #fff;
  font-family: 'DM Serif Display', serif; font-size: .82rem;
  padding: 7px 18px; border-radius: 50px;
  box-shadow: 0 4px 18px rgba(191,59,43,.45);
  animation: fdDown .8s .45s both;
}
.hero-body {
  position: relative; z-index: 2;
  width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 0 36px 88px;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18); border-radius: 50px;
  padding: 5px 14px 5px 8px; margin-bottom: 18px;
  animation: fdUp .75s cubic-bezier(.4,0,.2,1) both;
}
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber2); box-shadow: 0 0 0 3px rgba(237,170,30,.28); }
.hero-chip-text { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.9); letter-spacing: .06em; text-transform: uppercase; }
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  color: #fff; line-height: 1.02; letter-spacing: -.025em;
  margin-bottom: 18px;
  animation: fdUp .75s .1s cubic-bezier(.4,0,.2,1) both;
}
.hero-h1 em { color: var(--amber2); font-style: italic; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  max-width: 540px; line-height: 1.7; font-weight: 300; margin-bottom: 32px;
  animation: fdUp .75s .2s cubic-bezier(.4,0,.2,1) both;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fdUp .75s .3s cubic-bezier(.4,0,.2,1) both;
}
.btn-hero-solid {
  background: #fff; color: var(--text);
  font-weight: 700; font-size: .9rem; border: none; border-radius: 50px;
  padding: 13px 30px; transition: all .22s;
  box-shadow: 0 4px 22px rgba(0,0,0,.24);
}
.btn-hero-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.btn-hero-phone {
  background: var(--red); color: #fff;
  font-weight: 700; font-size: .9rem; border: none; border-radius: 50px;
  padding: 13px 30px; transition: all .22s; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(191,59,43,.4);
}
.btn-hero-phone:hover { background: var(--red2); transform: translateY(-2px); }
.btn-hero-phone svg { width: 16px; height: 16px; }

/* ── TRUST BAR ────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 36px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--text2);
  padding: 6px 20px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item .trust-icon { font-size: 1rem; }
.trust-item .trust-stars { color: var(--amber); letter-spacing: 1px; font-size: .8rem; }
.trust-cbs { color: var(--text); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }

/* ── OVERLAP STRIP ────────────────────────────────── */
.overlap-strip {
  background: #1C0F06; border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.strip-text { font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.62); }
.strip-hl { color: var(--amber2); font-weight: 700; }

/* ── HOME CARD SECTION ────────────────────────────── */
.home-cards { background: var(--bg); padding: 0 28px 52px; }
.cards-inner { max-width: 1240px; margin: 0 auto; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Feature card */
.feat-card {
  background: var(--surface); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.card-photo { width: 100%; height: 220px; overflow: hidden; flex-shrink: 0; }
.card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.feat-card:hover .card-photo img { transform: scale(1.06); }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-eyebrow { font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); margin-bottom: 7px; display: block; }
.card-title { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--text); line-height: 1.2; margin-bottom: 9px; letter-spacing: -.01em; }
.card-desc { font-size: .875rem; color: var(--text2); line-height: 1.68; flex: 1; margin-bottom: 18px; }
.card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700; color: var(--red);
  border: 1.5px solid var(--red); border-radius: 50px;
  padding: 8px 18px; background: none; transition: all .2s;
  width: fit-content; white-space: nowrap;
}
.card-btn:hover { background: var(--red); color: #fff; }
.card-btn svg { transition: transform .2s; }
.card-btn:hover svg { transform: translateX(3px); }

/* Editorial dark card */
.feat-card.editorial {
  background: #1A1510; flex-direction: row;
  grid-column: 1 / -1; height: 300px;
}
.feat-card.editorial .card-photo { height: 100%; width: 42%; flex-shrink: 0; }
.feat-card.editorial .card-photo img { object-position: center 20%; }
.feat-card.editorial .card-body { justify-content: center; padding: 40px 48px; }
.feat-card.editorial .card-eyebrow { color: var(--amber2); }
.feat-card.editorial .card-title { font-size: 1.85rem; color: #fff; margin-bottom: 12px; }
.feat-card.editorial .card-title em { color: var(--amber2); font-style: italic; }
.feat-card.editorial .card-desc { font-size: .9rem; color: rgba(255,255,255,.58); max-width: 400px; }
.feat-card.editorial .card-btn { border-color: var(--red); color: #fff; background: var(--red); box-shadow: 0 4px 14px rgba(191,59,43,.38); }
.feat-card.editorial .card-btn:hover { background: var(--red2); }

/* ── REVIEWS ──────────────────────────────────────── */
.home-reviews { background: var(--bg); padding: 0 28px 48px; }
.reviews-wrap { max-width: 1240px; margin: 0 auto; }
.reviews-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.reviews-sub { font-size: .83rem; color: var(--text3); }
.reviews-link { font-size: .82rem; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 5px; transition: color .2s; }
.reviews-link:hover { color: var(--red2); }
.reviews-row {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.reviews-row::-webkit-scrollbar { height: 4px; }
.reviews-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.rev-card {
  flex: 0 0 300px; background: var(--surface); border-radius: var(--r-md); padding: 22px;
  box-shadow: var(--sh-sm); transition: all .22s; display: flex; flex-direction: column;
}
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.rev-stars { color: var(--amber); font-size: .8rem; letter-spacing: 2px; margin-bottom: 11px; }
.rev-text { font-size: .875rem; line-height: 1.7; color: var(--text2); font-style: italic; margin-bottom: 14px; flex: 1; }
.rev-by { font-size: .72rem; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: .08em; }
.rev-source { font-size: .72rem; color: var(--red); margin-top: 4px; display: inline-flex; align-items: center; gap: 3px; }
.rev-source:hover { text-decoration: underline; }
.reviews-cta { text-align: center; margin-top: 20px; }
.reviews-cta a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .875rem; font-weight: 700; color: var(--red);
  border: 2px solid var(--red); border-radius: 50px;
  padding: 10px 24px; transition: all .2s;
}
.reviews-cta a:hover { background: var(--red); color: #fff; }

/* ── PAGE BANNER (non-home) ───────────────────────── */
.page-banner {
  position: relative; height: 240px;
  display: flex; align-items: flex-end; overflow: hidden; margin-top: 60px;
}
.page-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%; filter: brightness(.42);
}
.banner-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,7,4,.75) 0%, transparent 65%); }
.banner-copy { position: relative; z-index: 2; width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 36px 32px; }
.banner-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber2); margin-bottom: 6px; display: block; }
.banner-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.9rem, 3.5vw, 3rem); color: #fff; letter-spacing: -.02em; line-height: 1.05; }

/* ── MENU PAGE ─────────────────────────────────────── */
.menu-page { max-width: 1240px; margin: 0 auto; padding: 40px 36px 72px; }
.menu-special-banner {
  background: linear-gradient(135deg, #1A1510, #2D1F12);
  border-radius: var(--r-md); padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}
.menu-special-banner .special-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber2); margin-bottom: 4px; display: block; }
.menu-special-banner .special-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: #fff; }
.menu-special-banner .special-desc { font-size: .875rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.menu-dl-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: 9px 20px;
  transition: all .2s; white-space: nowrap;
}
.menu-dl-btn:hover { background: rgba(255,255,255,.22); }

.tabs-row {
  display: flex; gap: 8px; margin-bottom: 36px;
  background: var(--surface2); border-radius: 50px;
  padding: 4px; width: fit-content; flex-wrap: wrap;
}
.tab-btn {
  font-size: .83rem; font-weight: 500;
  padding: 9px 22px; border-radius: 50px; border: none;
  background: none; color: var(--text2); transition: all .2s;
}
.tab-btn.on { background: var(--surface); color: var(--text); font-weight: 700; box-shadow: var(--sh-sm); }
.tab-btn:hover:not(.on) { color: var(--text); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.menu-card {
  background: var(--surface); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.menu-card-img-wrap { overflow: hidden; flex-shrink: 0; height: 190px; }
.menu-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.menu-card:hover .menu-card-img-wrap img { transform: scale(1.05); }
.menu-card-ph { height: 190px; background: linear-gradient(135deg, #F0EBE0, #E0D4C0); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; flex-shrink: 0; }
.menu-card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.menu-badge { display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; background: rgba(191,59,43,.1); color: var(--red); margin-bottom: 8px; width: fit-content; }
.menu-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.menu-name { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--text); line-height: 1.2; }
.menu-price { font-size: .95rem; font-weight: 700; color: var(--red); white-space: nowrap; }
.menu-desc { font-size: .875rem; color: var(--text2); line-height: 1.65; flex: 1; }
.menu-note { margin-top: 28px; font-size: .82rem; color: var(--text3); font-style: italic; padding: 16px; background: var(--surface2); border-radius: var(--r-sm); border-left: 3px solid var(--amber); }

/* ── ABOUT PAGE ───────────────────────────────────── */
.about-page { max-width: 1240px; margin: 0 auto; padding: 40px 36px 72px; }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 68px; align-items: start; margin-bottom: 0; }
.about-img-col { }
.about-img-wrap { position: relative; flex-shrink: 0; }
.about-img { width: 100%; height: 460px; object-fit: cover; object-position: center 30%; border-radius: var(--r-lg); box-shadow: var(--sh-xl); display: block; }
.about-chip {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--red); color: #fff;
  font-family: 'DM Serif Display', serif; font-size: .88rem;
  padding: 12px 16px; border-radius: var(--r-sm);
  box-shadow: 0 8px 28px rgba(191,59,43,.42); text-align: center;
  z-index: 2;
}
.about-chip small { display: block; font-family: 'DM Sans', sans-serif; font-size: .65rem; font-weight: 500; opacity: .8; text-transform: uppercase; letter-spacing: .07em; margin-top: 2px; }

/* .about-mini-gallery removed */

.about-copy p { font-size: .95rem; line-height: 1.85; color: var(--text2); margin-bottom: 18px; }
.about-copy p strong { color: var(--text); font-weight: 600; }
.about-cbs-badge {
  background: #1C2B3A; color: #fff;
  border-radius: var(--r-sm); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  margin: 24px 0; border-left: 4px solid var(--amber2);
}
.about-cbs-badge .cbs-logo { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--amber2); white-space: nowrap; }
.about-cbs-badge .cbs-text { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.about-cbs-badge .cbs-text strong { color: #fff; display: block; margin-bottom: 2px; }

/* Full-width CBS badge — sits below the two-column grid, same width as owner card */
.about-cbs-full {
  width: 100%;
  margin: 32px 0 0 0;
  padding: 20px 28px;
  border-radius: var(--r-md);
  font-size: .9rem;
}
.about-cbs-full .cbs-logo { font-size: 1.3rem; }
.about-cbs-full .cbs-text { font-size: .88rem; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 30px; }
.about-stat { background: var(--surface2); border-radius: var(--r-sm); padding: 18px; border: 1px solid var(--border); }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 1.9rem; color: var(--red); line-height: 1; margin-bottom: 3px; }
.stat-label { font-size: .78rem; color: var(--text3); font-weight: 500; }

.owner-card {
  background: var(--surface2); border-radius: var(--r-md);
  padding: 0; overflow: hidden; margin-top: 40px; border: 1px solid var(--border);
  display: flex; align-items: stretch;
}
.owner-photo { width: 160px; flex-shrink: 0; object-fit: cover; }
.owner-info { padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
.owner-info h4 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 4px; }
.owner-info p { font-size: .82rem; color: var(--text2); line-height: 1.55; }
.owner-placeholder { font-size: .78rem; color: var(--text3); font-style: italic; margin-top: 6px; }

/* Full-width owner card below the two-column grid */
.owner-card-full {
  background: var(--surface2);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 28px;
  padding: 0; overflow: hidden;
  margin-top: 32px;
  /* Extend to match both columns — no max-width constraint */
  width: 100%;
}
.owner-photo-full {
  width: 180px; height: 180px;
  object-fit: cover; object-position: center;
  flex-shrink: 0; display: block;
}
.owner-info-full {
  padding: 24px 32px; flex: 1;
}
.owner-info-full h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; color: var(--text);
  margin-bottom: 10px;
}
.owner-info-full p {
  font-size: .9rem; color: var(--text2); line-height: 1.7; margin-bottom: 8px;
}
.owner-info-full p:last-child { margin-bottom: 0; }
.owner-placeholder {
  font-size: .76rem; color: var(--text3); font-style: italic;
}

.about-feature { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.about-feature h3 { font-family: 'DM Serif Display', serif; font-size: 1.35rem; margin-bottom: 11px; }
.about-feature p { font-size: .95rem; color: var(--text2); line-height: 1.78; }

/* ── CONTACT PAGE ─────────────────────────────────── */
.contact-page { max-width: 1240px; margin: 0 auto; padding: 40px 36px 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 60px; }
.cg { margin-bottom: 32px; }
.cg-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: 10px; display: block; }
.cg-val { font-size: .97rem; color: var(--text); line-height: 1.7; }
.cg-val a { color: var(--red); }
.cg-val a:hover { text-decoration: underline; }
.hours-list { list-style: none; }
.hrs { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.hrs:last-child { border-bottom: none; }
.hrs.cl { opacity: .4; }
.hrs.today { background: rgba(191,59,43,.06); margin: 0 -8px; padding: 9px 8px; border-radius: 6px; }
.hrs-day { font-weight: 500; }
.hrs-time { font-weight: 700; }
.hrs-time.cl { font-weight: 400; color: var(--text3); }
.hrs-today-tag { font-size: .65rem; font-weight: 700; text-transform: uppercase; background: var(--red); color: #fff; padding: 2px 7px; border-radius: 50px; margin-left: 8px; letter-spacing: .05em; }

.open-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 700;
  padding: 7px 14px; border-radius: 50px; margin-bottom: 20px;
}
.open-status.open { background: rgba(43,84,73,.12); color: var(--green); }
.open-status.closed { background: rgba(191,59,43,.1); color: var(--red); }
.open-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.open-status.open .open-status-dot { background: var(--green); box-shadow: 0 0 0 3px rgba(43,84,73,.2); }
.open-status.closed .open-status-dot { background: var(--red); box-shadow: 0 0 0 3px rgba(191,59,43,.2); }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; min-height: 380px; display: block; }

.contact-form-section { margin-top: 32px; }
.contact-form-section h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: .78rem; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: .06em; }
.form-field input, .form-field textarea, .form-field select {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: var(--text); background: var(--surface);
  transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--red); outline: none;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--red); color: #fff; border: none; border-radius: 50px;
  padding: 13px 32px; font-size: .9rem; font-weight: 700;
  transition: all .2s; box-shadow: 0 4px 14px rgba(191,59,43,.35);
  align-self: flex-start;
}
.form-submit:hover { background: var(--red2); transform: translateY(-1px); }
.form-note { font-size: .78rem; color: var(--text3); margin-top: 4px; }
.callout { background: var(--surface2); border-radius: var(--r-md); padding: 22px; border: 1px solid var(--border); margin-top: 22px; }
.callout-title { font-family: 'DM Serif Display', serif; font-size: 1.05rem; margin-bottom: 7px; }
.callout-text { font-size: .875rem; color: var(--text2); line-height: 1.65; }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: #0D0804; padding: 52px 36px 38px; }
.ft-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px; }
.ft-brand-col { max-width: 220px; }
.ft-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.ft-logo-wrap svg { height: 32px; width: auto; }
.ft-logo-text { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: #fff; }
.ft-tagline { font-size: .78rem; color: rgba(255,255,255,.38); line-height: 1.6; }
.ft-tagline2 { font-size: .74rem; color: rgba(255,255,255,.25); margin-top: 8px; font-style: italic; }
.ft-col { display: flex; flex-direction: column; gap: 7px; min-width: 120px; }
.ft-col-label { font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.28); margin-bottom: 3px; }
.ft-link, .ft-btn {
  font-size: .82rem; color: rgba(255,255,255,.48); background: none; border: none;
  padding: 0; text-align: left; transition: color .2s; font-family: 'DM Sans', sans-serif;
}
.ft-link:hover, .ft-btn:hover { color: var(--amber2); }
.ft-social {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.48);
  background: none; border: none; padding: 0;
  transition: color .2s; font-family: 'DM Sans', sans-serif;
}
.ft-social:hover { color: var(--amber2); }
.ft-social:hover svg path { fill: var(--amber2); }
.ft-social svg path { transition: fill .2s; }
.ft-bottom {
  max-width: 1240px; margin: 28px auto 0;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
}
.ft-copy { font-size: .73rem; color: rgba(255,255,255,.2); }

/* ── RESPONSIVE ─────────────────────────────────────*/
@media (max-width: 960px) {
  .nav-center, #nav-cta, .nav-phone { display: none; }
  #burger { display: flex; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card.editorial { flex-direction: column; height: auto; grid-column: span 2; }
  .feat-card.editorial .card-photo { width: 100%; height: 220px; }
  .feat-card.editorial .card-body { padding: 26px 28px 30px; }
  .trust-item { padding: 6px 12px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-chip { bottom: 14px; right: 14px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .feat-card.editorial { grid-column: span 1; }

  #mobile-call-bar { display: flex; }
  body { padding-bottom: 60px; }
  .hero-body { padding: 0 22px 72px; }
  .hero-pill { top: 68px; right: 20px; }
  .overlap-strip { padding: 14px 22px; border-radius: var(--r-md) var(--r-md) 0 0; }
  .home-cards, .home-reviews { padding-left: 16px; padding-right: 16px; }
  .menu-boards-grid { grid-template-columns: 1fr; }
  .owner-card-full { flex-direction: column; }
  .owner-photo-full { width: 100%; height: 200px; }
  .owner-info-full { padding: 20px 24px; }
  .menu-page, .about-page, .contact-page { padding-left: 20px; padding-right: 20px; }
  .banner-copy { padding-left: 20px; padding-right: 20px; }
  footer { padding-left: 20px; padding-right: 20px; }
  .ft-bottom { padding: 22px 20px 0; margin: 28px -20px 0; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { gap: 0; padding: 12px 16px; }
  .trust-item { font-size: .75rem; padding: 5px 10px; }
  .owner-card { flex-direction: column; }
  .owner-photo { width: 100%; height: 180px; }
  .menu-special-banner { flex-direction: column; }
}


/* ── MENU BOARDS SECTION ─────────────────────────────*/
.menu-boards-section {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.menu-boards-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; margin-bottom: 24px; color: var(--text);
}
.menu-boards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.menu-board-card {
  background: var(--surface); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--sh-md);
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s;
  cursor: zoom-in;
}

.menu-board-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.menu-board-card img {
  width: 100%; height: auto; display: block;
  transition: transform .4s ease;
}
.menu-board-card:hover img { transform: scale(1.02); }
.menu-board-label {
  display: block; text-align: center;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text2);
  padding: 12px; background: var(--surface2);
}


/* ── LIGHTBOX ────────────────────────────────────────*/
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,5,2,0.93); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 20px;
  animation: lbIn .22s ease both;
}
.lightbox.open { display: flex; }
@keyframes lbIn { from { opacity:0; } to { opacity:1; } }

.lightbox-content {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
  animation: lbScale .22s cubic-bezier(.4,0,.2,1) both;
}
@keyframes lbScale { from { transform: scale(.92); opacity:0; } to { transform: scale(1); opacity:1; } }

#lightbox-img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain; border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: block;
}
.lightbox-caption {
  color: rgba(255,255,255,0.7); font-size: .85rem;
  margin-top: 12px; text-align: center; letter-spacing: .02em;
}
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev.hidden, .lightbox-next.hidden { opacity: 0; pointer-events: none; }

/* ── PRINT STYLES ────────────────────────────────── */
@media print {
  #nav, #drawer, #mobile-call-bar, footer, .hero-btns,
  .home-reviews, .home-cards, .trust-bar, .overlap-strip,
  .tabs-row, .menu-dl-btn, .menu-special-banner { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; padding-bottom: 0; }
  .page { display: block !important; }
  .page-banner { height: 80px; margin-top: 0; }
  .menu-page { padding: 16pt; max-width: 100%; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12pt; }
  .menu-card { box-shadow: none; border: 1px solid #ccc; }
  .menu-card-img-wrap, .menu-card-ph { height: 80pt; }
  .menu-note { border: 1px solid #ccc; }
  h1, h2 { color: #000; }
  a { color: #000; text-decoration: none; }
  .print-header { display: block !important; text-align: center; margin-bottom: 16pt; }
  .print-header h2 { font-size: 18pt; }
  .print-header p { font-size: 10pt; color: #555; }
}
.print-header { display: none; }
