/* ===== TOKENS ===== */
:root {
  --cream: #fbf6ed;
  --cream-2: #f3ead8;
  --ink: #2a1f17;
  --ink-soft: #5a4a3c;
  --rust: #b6502b;
  --rust-dark: #8e3d20;
  --olive: #6a7a3e;
  --butter: #f0c878;
  --crust: #c89a5a;
  --line: #e8ddc6;
  --shadow: 0 10px 30px rgba(60, 40, 20, 0.08);
  --shadow-lg: 0 20px 60px rgba(60, 40, 20, 0.14);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: 1.4rem; }

a { color: var(--rust); text-decoration: none; }
a:hover { color: var(--rust-dark); }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 14px;
}

.italic {
  font-style: italic;
  color: var(--rust);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--rust-dark); color: var(--cream); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-rust { background: var(--rust); color: var(--cream); }
.btn-rust:hover { background: var(--rust-dark); color: var(--cream); transform: translateY(-2px); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(251, 246, 237, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav-links a:hover { color: var(--rust); }
.nav-links a.active {
  color: var(--rust);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--rust);
  border-radius: 2px;
}
.nav-links a.btn.active::after { display: none; }
.nav-cta { margin-left: 8px; }
.btn-primary.nav-cta, .btn-primary.nav-cta:hover { color: #ffffff; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin: 26px 0 36px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--rust); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hero-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-2);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-1 {
  top: 0; left: 0;
  width: 62%;
  aspect-ratio: 4 / 5;
  z-index: 2;
}
.hero-card-2 {
  bottom: 0; right: 0;
  width: 56%;
  aspect-ratio: 1 / 1;
  z-index: 1;
}
.hero-card-3 {
  top: 40%; right: 6%;
  width: 36%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 5px solid var(--cream);
  z-index: 3;
}
.hero-card .label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: rgba(255,255,255,0.95);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.hero-card-3 .label {
  bottom: auto; left: auto;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 0.95rem;
}
.hero-card-1::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(42,31,23,0.12) 100%);
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  padding: 150px 0 60px;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  text-align: center;
}
.page-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}
.page-hero h1 { margin-bottom: 22px; }
.page-hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 22px;
}
.page-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 14px;
}
.page-hero .hero-ctas {
  justify-content: center;
  margin-top: 26px;
}

/* ===== SECTIONS ===== */
section { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 14px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream-2);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about h2 { margin-bottom: 20px; }
.about p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 16px; }
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 24px;
  border: 1px solid var(--line);
}
.why-card .ic {
  width: 42px; height: 42px;
  background: var(--rust);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.why-card .ic svg { width: 20px; height: 20px; }
.why-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.why-card p { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }

/* ===== MENU CARDS (homepage tease) ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.menu-card {
  background: var(--cream-2);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.menu-card .visual {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--rust);
  color: var(--cream);
}
.menu-card .visual svg { width: 28px; height: 28px; }
.menu-card.olive .visual { background: var(--olive); }
.menu-card.butter .visual { background: var(--crust); }
.menu-card.ink .visual { background: var(--ink); }
.menu-card.rust .visual { background: var(--rust); }
.menu-card h3 {
  font-family: 'Fraunces', serif;
  margin-bottom: 10px;
  font-size: 1.35rem;
}
.menu-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 18px;
}
.menu-card .ask {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rust);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* ===== STORY STRIP ===== */
.story {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(182, 80, 43, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.story h2 { color: var(--cream); }
.story .eyebrow { color: var(--butter); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.story p {
  color: rgba(251, 246, 237, 0.78);
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}
.stat .num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: var(--butter);
  line-height: 1;
  font-weight: 500;
}
.stat .label {
  color: rgba(251, 246, 237, 0.7);
  font-size: 0.88rem;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.story-visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: var(--rust-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,13,8,0.78) 100%);
}
.story-visual .label {
  z-index: 1;
  position: absolute;
  bottom: 24px; left: 24px;
  color: rgba(255,255,255,0.92);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
}

/* ===== STORY VALUES (about page) ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.value {
  position: relative;
  z-index: 1;
}
.value-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-style: italic;
  color: var(--butter);
  margin-bottom: 12px;
}
.value h3 {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.value p {
  color: rgba(251, 246, 237, 0.78);
  font-size: 1rem;
  margin: 0;
}

/* ===== STATS ROW (about) ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-block {
  padding: 30px 20px;
  background: var(--cream-2);
  border-radius: var(--r-lg);
}
.stat-block .num {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  color: var(--rust);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-block .label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  padding: 30px 18px;
}
.step .num-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 2px solid var(--rust);
  color: var(--rust);
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.step h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--cream-2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.review .stars {
  color: var(--butter);
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.review p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 18px;
}
.review .who {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== QUOTE CARD (about) ===== */
.quote-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  color: var(--rust);
  line-height: 0.5;
  margin-bottom: 12px;
  font-style: italic;
}
.quote-card p {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 22px;
}
.quote-attr {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===== AREA TAGS ===== */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.area {
  display: inline-block;
  padding: 10px 20px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}

/* ===== MENU PAGE ===== */
.menu-nav {
  background: var(--cream);
  padding: 30px 0;
  position: sticky;
  top: 70px;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.pill-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: none;
}
.pill-row::-webkit-scrollbar { display: none; }
.pill {
  padding: 10px 20px;
  background: var(--cream-2);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.pill:hover {
  background: var(--rust);
  color: var(--cream);
}

.menu-section {
  padding: 70px 0;
}
.menu-section.alt {
  background: var(--cream-2);
}
.menu-section-head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.menu-section-head h2 {
  font-family: 'Fraunces', serif;
  margin-bottom: 10px;
}
.menu-section-head p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.menu-list {
  max-width: 720px;
  margin: 0 auto;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: none; }
.m-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.m-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 540px;
}
.m-price {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rust);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.menu-list-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--rust);
  font-style: italic;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rust);
}

.callout {
  padding: 60px 0;
  background: var(--ink);
  color: var(--cream);
}
.callout-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.callout h3 {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.callout p {
  color: rgba(251, 246, 237, 0.78);
  max-width: 560px;
}

/* ===== CATERING PLATTERS ===== */
.platter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.platter {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.platter:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.platter-tag {
  display: inline-block;
  background: var(--rust);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.platter h3 {
  font-family: 'Fraunces', serif;
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.platter-price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--rust);
  font-weight: 600;
  line-height: 1;
  margin: 8px 0 4px;
}
.platter-meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.platter-list {
  list-style: none;
  padding: 0;
}
.platter-list li {
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.platter-list li:last-child { border-bottom: none; }
.platter-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--butter) 100%);
  padding: 90px 0;
}
.cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: 30px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 500;
  padding: 0;
}
.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--rust);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--rust);
  color: var(--cream);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 14px;
}
.faq-a p { color: var(--ink-soft); font-size: 1rem; }

/* ===== CONTACT ===== */
.contact { background: var(--cream-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-info > p {
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-detail .ic {
  width: 42px; height: 42px;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--rust);
}
.contact-detail .ic svg { width: 18px; height: 18px; }
.contact-detail .label-sm {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.contact-detail .val {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-detail .val a { color: var(--ink); }
.contact-detail .val a:hover { color: var(--rust); }

.form {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field { margin-bottom: 14px; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--cream-2);
  transition: border 0.2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--rust);
  background: var(--cream);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; justify-content: center; }

.hours-list {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 4px 0;
}
.hours-row span:first-child { font-weight: 600; color: var(--ink); }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(251, 246, 237, 0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
footer h4 {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
footer .logo { color: var(--cream); margin-bottom: 14px; }
footer .logo .logo-mark { background: var(--rust); color: var(--cream); }
footer .tagline { max-width: 320px; font-size: 0.94rem; line-height: 1.6; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
footer ul li a { color: rgba(251, 246, 237, 0.7); }
footer ul li a:hover { color: var(--butter); }
.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.socials a {
  width: 40px; height: 40px;
  background: rgba(251, 246, 237, 0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: background 0.25s ease;
}
.socials a:hover { background: var(--rust); }
.socials a svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(251, 246, 237, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.86rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whatsapp-float svg { width: 30px; height: 30px; color: white; }
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== CHATBOT ===== */
.chat-button {
  position: fixed;
  bottom: 96px; right: 24px;
  width: 58px; height: 58px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(42, 31, 23, 0.3);
  z-index: 89;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}
.chat-button:hover { transform: scale(1.08); }
.chat-button svg { width: 26px; height: 26px; }
.chat-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  background: var(--rust);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  border: 2px solid var(--cream);
}
.chat-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 40px);
  max-height: 540px;
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(42, 31, 23, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 95;
}
.chat-window.active { display: flex; }
.chat-header {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header-info { display: flex; gap: 12px; align-items: center; }
.chat-avatar {
  width: 38px; height: 38px;
  background: var(--rust);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
}
.chat-name { font-weight: 600; font-size: 0.98rem; }
.chat-status {
  font-size: 0.78rem;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
}
.chat-close {
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.4rem;
  padding: 4px 8px;
  border-radius: 6px;
}
.chat-close:hover { background: rgba(255,255,255,0.1); }
.chat-body {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  background: var(--cream);
  max-height: 360px;
}
.msg {
  margin-bottom: 12px;
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.45;
}
.msg.bot {
  background: var(--cream-2);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.msg.user {
  background: var(--ink);
  color: var(--cream);
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 14px;
}
.chip {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}
.chip:hover { background: var(--cream-2); border-color: var(--rust); }
.chat-footer {
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--cream);
  outline: none;
}
.chat-input:focus { border-color: var(--rust); }
.chat-send {
  background: var(--ink);
  color: var(--cream);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.chat-send:hover { background: var(--rust-dark); }
.chat-send svg { width: 16px; height: 16px; }
.chat-handoff {
  padding: 10px 14px;
  border-top: 1px solid var(--line);
}
.chat-handoff a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25D366;
  color: white;
  padding: 10px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}
.chat-handoff a:hover { background: #1ebe5b; color: white; }

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.34,1.56,.64,1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    font-size: 1.4rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding-top: 80px;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { font-size: 1.5rem; font-family: 'Fraunces', serif; }
  .nav-cta { font-size: 1rem !important; }
  .hamburger { display: block; z-index: 101; }

  .hero { padding: 130px 0 60px; }
  .page-hero { padding: 130px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-ctas .btn { flex: 1; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .platter-grid { grid-template-columns: 1fr; }
  .menu-grid-2col { grid-template-columns: 1fr; gap: 30px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .menu-section { padding: 50px 0; }

  .menu-nav { top: 60px; }
  .callout-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .why-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px; }
  .form { padding: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .chat-window { right: 20px; left: 20px; bottom: 90px; max-width: none; }
  .menu-item { flex-direction: column; gap: 6px; }
}

/* ===== MENU CATEGORY CARDS (photo) ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cat-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-img { aspect-ratio: 4 / 3; overflow: hidden; }
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-img img { transform: scale(1.05); }
.cat-body { padding: 26px 26px 28px; }
.cat-body h3 { font-family: 'Fraunces', serif; font-size: 1.35rem; margin-bottom: 10px; }
.cat-body p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 16px; }
.cat-body .ask { font-size: 0.88rem; font-weight: 600; color: var(--rust); }

/* ===== HOME MENU BOARD ===== */
.home-menu { background: var(--cream-2); }
.menu-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
  max-width: 980px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 46px 50px;
  box-shadow: var(--shadow);
}
.board-title {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  color: var(--rust);
  font-style: italic;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}
.board-item { display: flex; align-items: baseline; gap: 8px; padding: 9px 0; }
.bi-name { font-family: 'Fraunces', serif; font-size: 1.05rem; color: var(--ink); }
.bi-dots {
  flex: 1;
  border-bottom: 1px dotted var(--crust);
  transform: translateY(-3px);
  min-width: 16px;
}
.bi-price { font-family: 'Fraunces', serif; font-weight: 600; color: var(--rust); white-space: nowrap; }

/* ===== GALLERY ===== */
.gallery-section { padding-bottom: 0; }
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; margin-top: 10px; }
.g-item { margin: 0; aspect-ratio: 1 / 1; overflow: hidden; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.06); }

/* ===== MOVING CAROUSEL ===== */
.carousel {
  width: 100%;
  overflow: hidden;
  padding: 14px 0 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.carousel-track {
  display: flex;
  width: max-content;
  animation: carousel-scroll 70s linear infinite;
}
.carousel:hover .carousel-track { animation-play-state: paused; }
.carousel-item {
  flex: 0 0 auto;
  width: 320px;
  margin-right: 16px;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.carousel-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.carousel-item:hover img { transform: scale(1.05); }
@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
  .carousel { overflow-x: auto; }
}
@media (max-width: 560px) {
  .carousel-item { width: 230px; }
}

/* ===== MENU PAGE PHOTOS & NOTES ===== */
.menu-photo {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  margin: 0 auto 26px;
}
.menu-foot-note {
  max-width: 720px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .menu-board { padding: 36px 30px; gap: 26px 40px; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .menu-board { grid-template-columns: 1fr; padding: 30px 22px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .hero-card-3 { width: 40%; }
}

/* ===== FULL-BLEED HERO ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(28,19,12,0.86) 0%, rgba(28,19,12,0.55) 42%, rgba(28,19,12,0.12) 75%, rgba(28,19,12,0.04) 100%),
    linear-gradient(0deg, rgba(28,19,12,0.45) 0%, transparent 30%),
    linear-gradient(180deg, rgba(28,19,12,0.42) 0%, transparent 22%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }

.hero .eyebrow { color: var(--butter); }
.hero h1 { color: var(--cream); }
.hero .italic { color: var(--butter); }
.hero p.lead { color: rgba(251, 246, 237, 0.92); }
.hero .hero-trust { margin-top: 36px; }
.hero .trust-item { color: rgba(251, 246, 237, 0.88); }
.hero .trust-item svg { color: var(--butter); }
.hero .btn-secondary {
  border-color: rgba(251, 246, 237, 0.7);
  color: var(--cream);
}
.hero .btn-secondary:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* Nav sitting over the dark hero (homepage only, before scroll) */
body.home .nav:not(.scrolled) .logo,
body.home .nav:not(.scrolled) .nav-links > li > a:not(.btn) {
  color: var(--cream);
}
body.home .nav:not(.scrolled) .nav-links > li > a:not(.btn):hover {
  color: var(--butter);
}
body.home .nav:not(.scrolled) .hamburger span {
  background: var(--cream);
}
/* When the mobile menu is open (cream overlay), flip back to dark */
body.home .nav:not(.scrolled) .nav-links.active > li > a:not(.btn) {
  color: var(--ink);
}
body.home .nav:not(.scrolled) .nav-links.active > li > a:not(.btn):hover {
  color: var(--rust);
}
body.home .nav .hamburger.active span {
  background: var(--ink);
}

@media (max-width: 900px) {
  .hero { min-height: 86vh; padding: 120px 0 70px; }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(28,19,12,0.82) 0%, rgba(28,19,12,0.6) 60%, rgba(28,19,12,0.4) 100%),
      linear-gradient(0deg, rgba(28,19,12,0.5) 0%, transparent 35%);
  }
}

/* ===== OUR STORY (editorial, photo-led) ===== */
.story-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sf-media {
  position: relative;
}
.sf-main {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-lg);
}
.sf-main img { width: 100%; height: 100%; object-fit: cover; }
.sf-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 6px solid var(--cream-2);
  box-shadow: var(--shadow);
}
.sf-inset img { width: 100%; height: 100%; object-fit: cover; }

/* Story-feature cross-fading carousel */
.sf-carousel { position: relative; background: var(--cream-2); }
.sf-carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: sfCarousel 18s infinite;
}
.sf-carousel img:nth-child(2) { animation-delay: 6s; }
.sf-carousel img:nth-child(3) { animation-delay: 12s; }
@keyframes sfCarousel {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  30%  { opacity: 1; }
  36%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sf-carousel img { animation: none; opacity: 0; }
  .sf-carousel img:first-child { opacity: 1; }
}

.sf-body h2 { margin-bottom: 20px; max-width: 18ch; }
.sf-body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 16px;
  max-width: 52ch;
}
.sf-lead {
  font-size: 1.15rem !important;
  color: var(--ink) !important;
}
.sf-facts {
  margin: 30px 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
}
.sf-fact { border-top: 1.5px solid var(--crust); padding-top: 12px; }
.sf-fact dt {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.sf-fact dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .story-feature { grid-template-columns: 1fr; gap: 44px; }
  .sf-media { max-width: 460px; }
}
@media (max-width: 560px) {
  .sf-facts { grid-template-columns: 1fr; gap: 18px; }
  .sf-body h2 { max-width: none; }
}
