:root {
  --bg: #F4ECDE;
  --surface: #EFE6D4;
  --surface-warm: #E8DEC8;
  --text: #1F1A14;
  --text-muted: #6B5F4F;
  --accent: #7A1F2B;
  --accent-dark: #5C141F;
  --sage: #6B7A4F;
  --hairline: rgba(31, 26, 20, 0.12);
  --hairline-strong: rgba(31, 26, 20, 0.25);
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --space-32: 128px;
  --container: 1240px;
  --radius: 8px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--bg); }
img { max-width: 100%; display: block; }

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

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-block;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
.display em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
}

h1.display { font-size: clamp(64px, 11vw, 156px); font-weight: 900; }
h2.display { font-size: clamp(44px, 7vw, 92px); }

.lede {
  font-size: clamp(15px, 1.25vw, 18px);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-top: var(--space-3);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  background: rgba(244, 236, 222, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline);
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-8);
  align-items: center;
}
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-dark); }

/* ===== HERO ===== */
.hero {
  padding: 110px var(--space-6) 0;
  text-align: center;
  position: relative;
}

.hero-top {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  letter-spacing: 0.25em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 22px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-8);
  font-family: var(--font-display);
  color: var(--text);
}
.hero-badge em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
.hero-badge .dot { color: var(--accent); font-weight: 700; }
.hero-badge .orn { color: var(--accent); font-size: 14px; font-style: italic; }

.hero h1 {
  max-width: 1100px;
  margin: 0 auto var(--space-6);
}

.hero-sub-orn {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 22px);
  color: var(--accent);
  margin-bottom: var(--space-6);
  letter-spacing: 0.02em;
}
.hero-sub-orn em { font-style: italic; }

.hero-sub {
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-12);
  line-height: 1.65;
}

.hero-ctas {
  display: inline-flex;
  align-items: center;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 24px -8px rgba(122, 31, 43, 0.4);
  flex-shrink: 0;
}
.pill-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-4px) rotate(-3deg);
  box-shadow: 0 16px 36px -8px rgba(122, 31, 43, 0.5);
}
.pill-cta .arrow { font-family: var(--font-display); font-size: 20px; opacity: 0.85; }

.text-cta {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.text-cta em { font-style: italic; }
.text-cta:hover { color: var(--accent); border-color: var(--accent); gap: 14px; }

.hero-image-wrap {
  position: relative;
  margin: 0 var(--space-6);
}
.hero-image {
  position: relative;
  height: clamp(420px, 60vh, 640px);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(31, 26, 20, 0.22);
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 26, 20, 0.08), rgba(31, 26, 20, 0.22));
}

.hero-badge-float {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: var(--bg);
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 12px 32px -8px rgba(31, 26, 20, 0.3);
  z-index: 3;
}
.hbf-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(107, 122, 79, 0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hbf-label {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}
.hbf-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  color: var(--text);
}

.hero-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--accent);
  pointer-events: none;
  z-index: 2;
}
.hc-tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.hc-tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.hc-bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.hc-br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

/* ===== SECTIONS ===== */
.section-head {
  margin-bottom: var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.section-head.centered { align-items: center; text-align: center; }
.title-orn { color: var(--accent); font-style: italic; font-size: 0.6em; opacity: 0.7; vertical-align: middle; }

/* ===== PHILOSOPHY ===== */
.philosophy { padding: var(--space-32) 0 var(--space-24); }
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: var(--space-8) 0 var(--space-16);
  position: relative;
  max-width: 1000px;
}
.big-quote em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 1.6em;
  color: var(--accent);
  font-style: italic;
  line-height: 0.6;
  display: inline-block;
  margin-right: 0.1em;
  vertical-align: -0.15em;
  font-weight: 700;
}
.quote-attr {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
  margin-top: var(--space-6);
  letter-spacing: 0.04em;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: stretch;
  margin-top: var(--space-16);
  padding-top: var(--space-12);
  border-top: 1px solid var(--hairline);
}

.philosophy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline-strong);
  border: 1px solid var(--hairline-strong);
}
.ps-card {
  background: var(--bg);
  padding: var(--space-6);
  text-align: left;
}
.ps-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 60px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.03em;
}
.ps-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.philosophy-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--space-4);
}
.philosophy-body p:last-child { margin-bottom: 0; }
.drop-cap {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2.4em;
  color: var(--accent);
  float: left;
  line-height: 0.9;
  padding-right: 8px;
  margin-top: 2px;
}
.philosophy-sign {
  font-family: var(--font-display);
  font-size: 22px !important;
  color: var(--accent);
  padding-top: var(--space-4);
  border-top: 1px solid var(--hairline);
  margin-top: var(--space-6) !important;
}
.philosophy-sign em { font-style: italic; }

.philosophy-image {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  position: relative;
  min-height: 280px;
}
.pi-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(244, 236, 222, 0.95);
  padding: 6px 10px;
  font-size: 9px;
  text-align: center;
  letter-spacing: 0.1em;
}

/* ===== MENU (grid with photos) ===== */
.menu { padding: var(--space-24) 0; background: var(--surface); }

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.dish {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}
.dish:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px -16px rgba(31, 26, 20, 0.28);
  border-color: var(--accent);
}
.dish-hit { border-color: var(--accent); box-shadow: 0 16px 40px -16px rgba(122, 31, 43, 0.25); }
.dish-hit::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(122, 31, 43, 0.05), transparent 50%);
}

.dish-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-warm);
}
.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.dish:hover .dish-img img { transform: scale(1.06); }

.dish-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
  position: relative;
}
.dish-cat {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.2em;
  font-weight: 500;
}
.dish-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
.dish-name em { font-style: italic; color: var(--accent); }
.dish-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  font-family: var(--font-body);
}
.dish-price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--hairline);
}
.dish-tag {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--accent);
  color: var(--bg);
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: var(--radius-pill);
  z-index: 2;
}

@media (max-width: 900px) { .dish-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .dish-grid { grid-template-columns: 1fr; } }

.menu-cta { text-align: center; margin-top: var(--space-16); }
.link-cta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  transition: text-underline-offset 0.2s;
}
.link-cta:hover { text-underline-offset: 10px; }

/* ===== CHEF ===== */
.chef { padding: var(--space-32) 0; }
.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
}
.chef-photo-wrap { display: flex; flex-direction: column; gap: var(--space-4); }
.chef-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
  border: 1px solid var(--hairline);
}
.chef-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--bg);
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
}
.chef-pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  padding: var(--space-4) 0 0;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.chef-text h2 { margin: var(--space-3) 0 var(--space-8); }
.chef-bio {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--space-8);
  max-width: 540px;
}
.chef-bio em { font-style: italic; color: var(--accent); font-family: var(--font-display); font-size: 1.02em; }
.chef-facts {
  list-style: none;
  border-top: 1px solid var(--hairline);
  padding-top: var(--space-6);
}
.chef-facts li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-6);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
}
.chef-facts li:last-child { border-bottom: none; }
.chef-facts .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== GALLERY (Polaroids — FIXED) ===== */
.gallery { padding: var(--space-32) 0; background: var(--surface-warm); }
.gallery h2.display { font-size: clamp(32px, 4.5vw, 60px); }
.polaroids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  margin-top: var(--space-16);
  padding: 0 var(--space-8);
}
.polaroid {
  background: var(--bg);
  padding: 14px 14px 18px;
  border: 1px solid var(--hairline);
  box-shadow: 0 16px 36px -10px rgba(31, 26, 20, 0.22);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.polaroid figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  text-align: center;
  margin-top: 14px;
  padding: 0 4px;
}
.r-1 { transform: rotate(-3deg); }
.r-2 { transform: rotate(2deg) translateY(20px); }
.r-3 { transform: rotate(-1.5deg); }
.polaroid:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.03);
  z-index: 2;
  box-shadow: 0 24px 48px -10px rgba(31, 26, 20, 0.3);
}

/* ===== REVIEWS ===== */
.reviews { padding: var(--space-32) 0; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.review {
  padding: var(--space-8);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform 0.3s;
}
.review:hover { transform: translateY(-4px); }
.review.light {
  background: var(--surface);
  border: 1px solid var(--hairline);
}
.review.dark {
  background: var(--accent);
  color: var(--bg);
}
.review .stars {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.review.dark .stars { color: #F4D7B4; }
.review p {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  font-style: italic;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 4px;
}
.review.dark .review-meta {
  border-top-color: rgba(244, 236, 222, 0.2);
}
.reviewer {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
}
.date {
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ===== BOOKING ===== */
.booking {
  padding: var(--space-32) 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
}
.booking-form {
  max-width: 720px;
  margin: var(--space-16) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-wide { grid-column: span 1; }
.field-full { grid-column: 1 / -1; }
@media (max-width: 720px) {
  .booking-form { grid-template-columns: 1fr 1fr; }
  .field-wide { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .booking-form { grid-template-columns: 1fr; }
}
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  font-weight: 500;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; font-family: var(--font-body); }
.form-submit {
  grid-column: 1 / -1;
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
  margin-top: var(--space-3);
}
.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.form-result {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--sage);
  margin-top: var(--space-4);
  min-height: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: var(--bg);
  padding: var(--space-16) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(244, 236, 222, 0.15);
}
.logo-big {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-3);
}
.logo-big span { color: var(--accent); }
.footer-brand .muted {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(244, 236, 222, 0.7);
}
.footer-brand .muted em { font-style: italic; }
.footer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 236, 222, 0.5);
  margin-bottom: var(--space-3);
}
.footer p { font-size: 14px; color: rgba(244, 236, 222, 0.85); line-height: 1.7; }
.footer-bottom {
  padding-top: var(--space-6);
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(244, 236, 222, 0.5);
  letter-spacing: 0.12em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr 1fr; padding: var(--space-3) var(--space-4); }
  .nav-left { display: none; }
  .nav-right { grid-column: 2; }
  .hero { padding-top: 90px; }
  .hero-ctas { flex-direction: column; gap: var(--space-6); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-image { min-height: 320px; }
  .featured-dishes { grid-template-columns: 1fr; }
  .fd-tall .fd-img { aspect-ratio: 4/5; }
  .chef-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .chef-photo { max-width: 420px; }
  .polaroids { grid-template-columns: 1fr; gap: var(--space-12); padding: 0; }
  .r-2 { transform: rotate(2deg); }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .chef-facts li { grid-template-columns: 1fr; gap: 2px; }
  .hero-badge-float { top: 12px; right: 12px; padding: 8px 12px; }
  .hbf-time { font-size: 12px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { margin: 0; }
  .pill-cta { width: 130px; height: 130px; font-size: 12px; }
  .philosophy-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== CHAT WIDGET ===== */
.chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(122, 31, 43, 0.55);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-toggle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: chat-pulse 2.6s ease-out infinite;
  opacity: 0;
}
@keyframes chat-pulse {
  0% { opacity: 0.85; transform: scale(0.95); }
  100% { opacity: 0; transform: scale(1.45); }
}
.chat-toggle:hover { transform: scale(1.06); }
.chat-toggle svg { width: 28px; height: 28px; }

.chat-window {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 140px));
  background: var(--bg);
  border: 1px solid var(--accent);
  z-index: 100;
  display: none;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px -12px rgba(31, 26, 20, 0.35);
  animation: chat-in 0.25s ease-out;
}
@keyframes chat-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-window.open { display: flex; }

.chat-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
}
.chat-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  color: var(--text);
}
.chat-title-dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  margin-right: 10px;
  animation: pulse-dot 1.6s infinite;
}
.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 6px;
  transition: color 0.2s;
}
.chat-close:hover { color: var(--accent); }

.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg);
}
.chat-msg {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--font-body);
  animation: msg-in 0.3s ease-out;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  background: var(--surface);
  align-self: flex-start;
  border: 1px solid var(--hairline);
  color: var(--text);
}
.chat-msg.user {
  background: var(--accent);
  color: var(--bg);
  align-self: flex-end;
  font-weight: 500;
  font-family: var(--font-display);
  font-style: italic;
}
.chat-options { display: flex; flex-direction: column; gap: 8px; align-self: stretch; }
.chat-option {
  text-align: left;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}
.chat-option:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(122, 31, 43, 0.04);
}
.chat-input-form {
  padding: 12px;
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 8px;
  background: var(--surface);
}
.chat-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  outline: none;
}
.chat-input:focus { border-color: var(--accent); }
.chat-send {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  border-radius: 8px;
}
.chat-send:hover { background: var(--accent-dark); }
