:root {
  --cream: #fdf8f0;
  --dark: #2b1d16;
  --burgundy: #8c2f2f;
  --gold: #c9962e;
  --muted: #7a6a5d;
  --card: #ffffff;
  --border: #eee2d0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Nunito Sans", sans-serif; background: var(--cream); color: var(--dark); line-height: 1.65; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
p { color: var(--muted); }
a { text-decoration: none; color: inherit; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 0.5rem; }
.center { text-align: center; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--burgundy); color: #fff; box-shadow: 0 8px 24px rgba(140, 47, 47, 0.3); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-ghost { border: 2px solid rgba(255,255,255,0.7); color: #fff; background: transparent; }

/* Demo ribbon */
.demo-ribbon {
  background: var(--burgundy);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
}
.demo-ribbon a { color: var(--gold); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: "Playfair Display", serif; font-weight: 800; font-size: 1.3rem; }
.logo span { color: var(--burgundy); }
.nav-links { display: flex; gap: 1.6rem; font-weight: 700; font-size: 0.9rem; align-items: center; }
.nav-links a:hover, .nav-links a.current { color: var(--burgundy); }

/* Hero */
.hero {
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(201, 150, 46, 0.25), transparent),
    linear-gradient(135deg, #3d2318, #241109);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin: 0.8rem 0 1rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { color: #d8c9b8; max-width: 34rem; margin: 0 auto 2rem; font-size: 1.05rem; }
.hero .btn + .btn { margin-left: 0.8rem; }
.hero-meta { margin-top: 2.6rem; display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; font-size: 0.85rem; color: #d8c9b8; }
.hero-meta strong { display: block; color: var(--gold); font-size: 1.05rem; }

/* Small hero for subpages */
.page-hero {
  background: linear-gradient(135deg, #3d2318, #241109);
  color: #fff;
  padding: 3.2rem 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: #d8c9b8; margin-top: 0.5rem; }

/* Menu */
.menu-tabs { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0 1.8rem; }
.menu-tab {
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}
.menu-tab.active { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.dish {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dish:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(43, 29, 22, 0.1); }
.dish-img { height: 110px; display: grid; place-items: center; font-size: 3rem; }
.dish-body { padding: 0.9rem 1.1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.dish-body h3 { font-size: 1.02rem; }
.dish-body .veg { font-size: 0.7rem; font-weight: 800; }
.veg.v { color: #2e7d32; } .veg.nv { color: #b3261e; }
.dish-body p { font-size: 0.82rem; margin: 0.3rem 0 0.8rem; }
.dish-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.dish-price { font-weight: 800; font-size: 1rem; }
.dish-add {
  background: var(--gold); color: #fff;
  border: none; border-radius: 10px;
  padding: 0.4rem 1rem;
  font-weight: 800; font-size: 0.82rem;
  cursor: pointer; font-family: inherit;
}
.dish-add:active { transform: scale(0.93); }

/* Cart bar */
.cart-bar {
  position: fixed;
  left: 50%; bottom: 1.2rem;
  transform: translateX(-50%) translateY(140%);
  background: var(--dark);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 0.8rem 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 50;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
  max-width: calc(100vw - 2rem);
}
.cart-bar.show { transform: translateX(-50%) translateY(0); }
.cart-bar strong { color: var(--gold); }
.cart-bar .btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* Toast */
.toast {
  position: fixed;
  top: 5rem; left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 70;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(30, 18, 10, 0.55);
  display: none;
  place-items: center;
  z-index: 60;
  padding: 1rem;
}
.modal-overlay.open { display: grid; }
.modal {
  background: var(--card);
  border-radius: 22px;
  width: 100%;
  max-width: 440px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 1.6rem;
}
.modal h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.order-line { display: flex; justify-content: space-between; align-items: center; padding: 0.45rem 0; border-bottom: 1px dashed var(--border); font-size: 0.9rem; }
.order-line .q { display: flex; gap: 0.55rem; align-items: center; }
.order-line button { width: 22px; height: 22px; border-radius: 7px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-weight: 800; color: var(--burgundy); }
.order-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.05rem; padding: 0.9rem 0; }
.field { margin-bottom: 0.8rem; }
.field label { font-size: 0.78rem; font-weight: 800; display: block; margin-bottom: 0.3rem; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
  color: var(--dark);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.radio-row { display: flex; gap: 0.7rem; }
.radio-row label {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--muted);
}
.radio-row input { display: none; }
.radio-row input:checked + span { color: var(--burgundy); }
.radio-row label:has(input:checked) { border-color: var(--burgundy); background: #fdf3f3; }
.success-box { text-align: center; padding: 1.5rem 0.5rem; }
.success-box .big { font-size: 3rem; margin-bottom: 0.6rem; }
.success-box h3 { margin-bottom: 0.4rem; }
.success-box p { font-size: 0.9rem; }
.modal .close-x { float: right; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--muted); }

/* Split layout + tiles */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.res-card { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 1.8rem; }
.res-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.about-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.about-tile { border-radius: 18px; height: 130px; display: grid; place-items: center; font-size: 3rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.g-tile {
  border-radius: 18px;
  height: 160px;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.g-tile:hover { transform: scale(1.03); }
.g-tile span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(43, 29, 22, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem;
  text-align: center;
}
.g-tile.wide { grid-column: span 2; }

/* Contact page */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 1.5rem; text-align: center; }
.info-card .ic { font-size: 1.9rem; margin-bottom: 0.6rem; }
.info-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.info-card p { font-size: 0.85rem; }
.map-box {
  margin-top: 2rem;
  background: linear-gradient(135deg, #efe3cd, #f7efe0);
  border: 1px solid var(--border);
  border-radius: 22px;
  height: 230px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.quote { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 1.4rem; font-size: 0.9rem; }
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.5rem; }
.quote footer { margin-top: 0.8rem; font-weight: 800; font-size: 0.82rem; color: var(--dark); }

/* Footer */
.footer { background: var(--dark); color: #cbb9a8; padding: 3rem 0 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer h4 { color: #fff; font-family: "Playfair Display", serif; margin-bottom: 0.7rem; }
.footer p, .footer li { font-size: 0.88rem; color: #cbb9a8; list-style: none; padding: 0.15rem 0; }
.footer a:hover { color: var(--gold); }
.credit { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.2rem; padding-top: 1.2rem; text-align: center; font-size: 0.8rem; }
.credit a { color: var(--gold); font-weight: 800; }

@media (max-width: 860px) {
  .menu-grid, .quotes, .info-cards { grid-template-columns: 1fr 1fr; }
  .split, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 1rem; font-size: 0.8rem; }
  .nav-links .btn { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .menu-grid, .quotes, .info-cards { grid-template-columns: 1fr; }
  .res-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-tile.wide { grid-column: span 1; }
}

/* ============================================================
   HOME PAGE v2 — editorial redesign (index.html only).
   Additive styles; nothing above this line was changed.
   ============================================================ */

/* --- Full-bleed candlelit hero --- */
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  padding: 5rem 0 6.5rem;
  background:
    radial-gradient(900px 480px at 18% 10%, rgba(201, 150, 46, 0.22), transparent 62%),
    radial-gradient(720px 460px at 85% 82%, rgba(140, 47, 47, 0.38), transparent 65%),
    radial-gradient(520px 300px at 80% 16%, rgba(201, 150, 46, 0.14), transparent 60%),
    radial-gradient(640px 420px at 50% 110%, rgba(201, 150, 46, 0.12), transparent 70%),
    linear-gradient(160deg, #2e1a10, #190b05 55%, #241109);
}
.hh-inner { position: relative; z-index: 2; }
.hh-title {
  font-size: clamp(2.6rem, 7.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0.9rem 0 1.3rem;
}
.hh-title .hh-line { display: block; }
.hh-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}
.hh-lede {
  color: #d8c9b8;
  max-width: 36rem;
  margin: 0 auto 2.2rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}
.hh-ctas {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}
.home-hero .hero-meta { margin-top: 3rem; }

/* Floating emoji accents */
.hh-float {
  position: absolute;
  z-index: 1;
  font-size: clamp(1.8rem, 4vw, 3rem);
  opacity: 0.45;
  filter: drop-shadow(0 0 18px rgba(201, 150, 46, 0.55));
  pointer-events: none;
  user-select: none;
}
.hh-f1 { top: 16%; left: 9%; animation: hhDrift 9s ease-in-out infinite; }
.hh-f2 { top: 26%; right: 10%; animation: hhDrift 12s ease-in-out infinite reverse; }
.hh-f3 { bottom: 20%; left: 16%; animation: hhDrift 11s ease-in-out 1.5s infinite; }
@keyframes hhDrift {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  50% { transform: translate(10px, -22px) rotate(5deg); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  animation: hhBob 2.2s ease-in-out infinite;
}
.scroll-hint:hover { border-color: var(--gold); }
@keyframes hhBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Dish-name marquee strip --- */
.marquee {
  overflow: hidden;
  background: var(--burgundy);
  border-top: 1px solid rgba(201, 150, 46, 0.45);
  border-bottom: 1px solid rgba(201, 150, 46, 0.45);
  padding: 0.95rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-seg {
  white-space: nowrap;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: #f3e3c6;
  letter-spacing: 0.04em;
  padding-right: 0.5rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Chef's picks: horizontal scroll-snap rail --- */
.picks { padding-bottom: 3.2rem; }
.picks-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.swipe-hint {
  display: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.8rem;
  animation: hhNudge 1.6s ease-in-out infinite;
}
@keyframes hhNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
.picks-scroller {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1.8rem max(1.25rem, calc((100vw - 1080px) / 2 + 1.25rem)) 1.4rem;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
}
.picks-scroller::-webkit-scrollbar { height: 6px; }
.picks-scroller::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.picks-scroller::-webkit-scrollbar-track { background: transparent; }
.picks-scroller .dish {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.picks-scroller .dish-img { height: 150px; font-size: 3.6rem; }
.picks-cta-mobile { display: none; margin-top: 1.2rem; }

/* --- Asymmetric story band --- */
.story-band {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.pull-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  color: var(--dark);
  margin: 0.7rem 0 1.4rem;
}
.pull-quote em { color: var(--burgundy); }
.story-copy { margin-bottom: 1.8rem; }
.milestones {
  border-left: 2px solid var(--border);
  padding-left: 1.6rem;
  display: grid;
  gap: 1.9rem;
}
.milestone { position: relative; }
.milestone::before {
  content: "";
  position: absolute;
  left: calc(-1.6rem - 2px - 5px);
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 150, 46, 0.2);
}
.milestone-year {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--burgundy);
  display: block;
}
.milestone h3 { font-size: 1.02rem; margin: 0.15rem 0 0.25rem; }
.milestone p { font-size: 0.86rem; }

/* --- Staggered guest book --- */
.reviews-editorial { padding-bottom: 5.5rem; }
.review-stagger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.squote {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.4rem 1.5rem 1.5rem;
  font-size: 0.92rem;
  box-shadow: 0 10px 30px rgba(43, 29, 22, 0.06);
}
.squote::before {
  content: "\201C";
  position: absolute;
  top: -0.4rem;
  left: 1.1rem;
  font-family: "Playfair Display", serif;
  font-size: 4.6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
  pointer-events: none;
}
.squote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.6rem; }
.squote footer { margin-top: 0.9rem; font-weight: 800; font-size: 0.82rem; color: var(--burgundy); }
.squote-lift { transform: translateY(-1.4rem); }
.squote-drop { transform: translateY(1.6rem); }

/* --- Closing CTA band --- */
.cta-band {
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(201, 150, 46, 0.28), transparent 65%),
    linear-gradient(150deg, #3d2318, #190b05);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: #fff;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band-p { color: #d8c9b8; margin: 0.9rem auto 2rem; max-width: 30rem; }
.cta-band + .footer { margin-top: 0; }

/* --- Home v2 responsive --- */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .milestones { margin-top: 0.5rem; }
}
@media (max-width: 860px) {
  .review-stagger { grid-template-columns: 1fr; max-width: 30rem; margin-left: auto; margin-right: auto; }
  .squote-lift, .squote-drop { transform: none; }
}
@media (max-width: 700px) {
  .swipe-hint { display: block; }
  .picks-cta { display: none; }
  .picks-cta-mobile { display: block; }
  .home-hero { min-height: 88vh; }
  .picks-scroller .dish { flex-basis: 250px; }
}

/* --- Reduced motion: stop all decorative movement --- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hh-float, .scroll-hint, .swipe-hint { animation: none; }
}
