/* ============================================================
   SAUCED & TOSSED — STYLES
   Palette + fonts are the "brand layer": retheme for a new
   client by changing the variables below.
   ============================================================ */

:root {
  --ink: #1d1a16;          /* near-black warm charcoal */
  --ink-soft: #4c463f;
  --cream: #faf6ef;        /* page background */
  --cream-dim: #f1e9dc;
  --accent: #c0362c;        /* accent — tomato red */
  --accent-deep: #99251d;
  --gold: #b98a2e;
  --white: #fffdf9;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --shadow: 0 18px 50px -18px rgba(29, 26, 22, .35);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
img { max-width: 100%; display: block; }
a { color: inherit; }

.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .9rem;
}
.eyebrow-dark { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: .85rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: .55rem 1.15rem; font-size: .85rem; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { border-color: rgba(255,253,249,.55); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,253,249,.1); }
.btn-ghost-dark { border-color: rgba(29,26,22,.3); color: var(--ink); background: transparent; }
.btn-ghost-dark:hover { border-color: var(--ink); }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--ink); color: var(--cream);
  text-align: center; padding: .55rem 1rem; font-size: .88rem;
}
.announce p { opacity: .92; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 2rem;
  padding: .9rem clamp(1rem, 4vw, 3rem);
  background: rgba(250, 246, 239, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29,26,22,.08);
}
.brand {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
}
.brand .amp { color: var(--accent); font-style: italic; }
.nav-links { display: flex; gap: 1.6rem; margin-right: auto; }
.nav-links a {
  text-decoration: none; font-size: .92rem; font-weight: 500;
  color: var(--ink-soft); transition: color .15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

.open-badge {
  font-size: .78rem; font-weight: 600; padding: .3rem .75rem;
  border-radius: 999px; white-space: nowrap;
}
.open-badge.is-open { background: #e5f3e4; color: #1e6b2e; }
.open-badge.is-closed { background: #f6e3dd; color: #9c3a1c; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-media, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(20,15,10,.82) 0%, rgba(20,15,10,.45) 55%, rgba(20,15,10,.25) 100%);
}
.hero-content {
  position: relative; color: var(--white);
  padding: clamp(2rem, 6vw, 6rem); max-width: 780px;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 1.2rem; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.25rem); opacity: .9; max-width: 32rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .eyebrow { color: #ecc98e; }

/* ---------- image placeholder fallback ---------- */
.ph {
  width: 100%; height: 100%; min-height: 240px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(200,85,27,.35), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(185,138,46,.3), transparent 55%),
    var(--ink);
  color: var(--cream); font-family: var(--serif); font-size: 1.1rem;
  text-align: center; padding: 1rem;
}

/* ---------- special ---------- */
.special { padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem); }
.special-card {
  display: grid; grid-template-columns: 1fr 1.1fr; max-width: 1060px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(29,26,22,.06);
}
.special-photo { min-height: 340px; position: relative; }
.special-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.special-body { padding: clamp(1.8rem, 3.5vw, 3.2rem); align-self: center; }
.special-desc { color: var(--ink-soft); margin: 1rem 0 1.4rem; font-size: 1.05rem; }
.special-meta { display: flex; align-items: baseline; gap: 1rem; }
.price { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--accent); }
.until { font-size: .88rem; color: var(--ink-soft); }
.pulse-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); margin-left: .35rem; vertical-align: 2px;
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* ---------- menu ---------- */
.menu-section { padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem); background: var(--cream-dim); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.section-sub { color: var(--ink-soft); margin-top: .8rem; }

.menu-tabs { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.menu-tab {
  border: 1.5px solid rgba(29,26,22,.22); background: transparent; color: var(--ink);
  padding: .55rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .92rem;
  cursor: pointer; font-family: var(--sans); transition: all .15s ease;
}
.menu-tab:hover { border-color: var(--accent); color: var(--accent); }
.menu-tab.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.menu-grid {
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 3rem;
}
.menu-item { padding: 1.1rem 0; border-bottom: 1px dashed rgba(29,26,22,.18); }
.menu-item-top { display: flex; align-items: baseline; gap: .6rem; }
.menu-item h3 { font-size: 1.12rem; }
.menu-item .dots { flex: 1; border-bottom: 2px dotted rgba(29,26,22,.25); transform: translateY(-4px); }
.menu-item .item-price { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; }
.menu-item p { color: var(--ink-soft); font-size: .92rem; margin-top: .25rem; }
.tag {
  display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .05em;
  padding: .1rem .4rem; border-radius: 4px; vertical-align: 2px; margin-left: .45rem;
}
.tag-v { background: #e5f3e4; color: #1e6b2e; }
.tag-gf { background: #f0ead8; color: #7c5f14; }
.menu-legend { text-align: center; margin-top: 2.2rem; font-size: .85rem; color: var(--ink-soft); }
.menu-legend .tag { margin-left: 0; }

/* ---------- about ---------- */
.about {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
  background: var(--ink); color: var(--cream);
}
.about-photo { position: relative; min-height: 320px; }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-body { padding: clamp(2.5rem, 5vw, 5rem); align-self: center; max-width: 620px; }
.about-body h2 { margin-bottom: 1.4rem; }
.about-body p { opacity: .85; margin-bottom: 1.1rem; }
.about .btn { margin-top: .8rem; border-color: rgba(250,246,239,.4); color: var(--cream); }
.about .btn:hover { border-color: var(--cream); }

/* ---------- gallery ---------- */
.gallery-section { padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem); }
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  max-width: 1100px; margin: 0 auto;
}
.gallery figure {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: 0 10px 30px -14px rgba(29,26,22,.3);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.045); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem .9rem .7rem;
  background: linear-gradient(transparent, rgba(20,15,10,.75));
  color: var(--white); font-size: .85rem; font-weight: 500;
}

/* ---------- visit ---------- */
.visit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
  background: var(--cream-dim); align-items: start;
  max-width: 1160px; margin: 0 auto;
}
.visit h2 { margin-bottom: 1.6rem; }
.hours { list-style: none; margin-bottom: 2rem; max-width: 26rem; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .5rem 0; border-bottom: 1px dashed rgba(29,26,22,.15); font-size: .95rem;
}
.hours li.today { font-weight: 700; color: var(--accent-deep); }
.hours li.today::after { content: "· today"; font-weight: 500; font-size: .8rem; align-self: center; color: var(--ink-soft); }
.visit-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.visit .btn-ghost { border-color: rgba(29,26,22,.3); color: var(--ink); }
.visit .btn-ghost:hover { border-color: var(--ink); background: transparent; }

.map-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem;
  text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(29,26,22,.06);
}
.map-pin { font-size: 2.4rem; margin-bottom: .8rem; }
.map-address { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin-bottom: .6rem; }
.map-note { font-size: .88rem; color: var(--ink-soft); }

/* ---------- footer ---------- */
.footer {
  background: var(--ink); color: var(--cream);
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
  padding: 2.2rem clamp(1rem, 4vw, 3rem);
}
.brand-footer { font-size: 1.5rem; }
.footer-tag { opacity: .7; font-size: .88rem; }
.footer-updated { font-size: .82rem; opacity: .65; }

/* ---------- pitch mode (sales demo only) ---------- */
.pitch-fab {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--ink); color: var(--cream); border: none; font-size: 1.25rem;
  cursor: pointer; box-shadow: var(--shadow); transition: transform .15s;
}
.pitch-fab:hover { transform: scale(1.07); }
.pitch-panel {
  position: fixed; right: 1.2rem; bottom: 5.4rem; z-index: 90; width: 320px;
  background: var(--white); border-radius: var(--radius); padding: 1.4rem;
  box-shadow: var(--shadow); border: 1px solid rgba(29,26,22,.1);
}
.pitch-panel h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.pitch-hint { font-size: .8rem; color: var(--ink-soft); margin-bottom: 1rem; }
.pitch-panel label { display: block; font-size: .78rem; font-weight: 600; margin-bottom: .8rem; }
.pitch-panel input, .pitch-panel textarea {
  display: block; width: 100%; margin-top: .25rem; padding: .5rem .6rem;
  border: 1px solid rgba(29,26,22,.25); border-radius: 8px;
  font-family: var(--sans); font-size: .88rem; resize: vertical;
}
.pitch-panel input:focus, .pitch-panel textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .special-card, .about, .visit { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .nav-right .btn { display: none; }
}
@media (max-width: 680px) {
  .nav { flex-wrap: wrap; gap: .8rem 1.2rem; }
  .nav-toggle { display: block; order: 3; }
  .nav-right { order: 2; margin-left: auto; }
  .nav-links {
    display: none; order: 4; width: 100%; flex-direction: column; gap: .9rem; padding: .5rem 0 .3rem;
  }
  .nav-links.open { display: flex; }
  .gallery { grid-template-columns: 1fr; }
  .footer { flex-direction: column; text-align: center; }
}
