* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #2f7d4f;
  --green-dark: #24623d;
  --green-soft: #e7f2ea;
  --gold: #e8a33d;
  --gold-dark: #c9822a;
  --gold-soft: #fbf0dc;
  --ink: #1e2320;
  --ink-soft: #6b7169;
  --muted: #9aa09a;
  --cream: #faf6ef;
  --line: #eae5da;
  --paper: #ffffff;
  --max: 1200px;
  --ease: cubic-bezier(.32,.72,0,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo span, .rating-card strong, .value-serif {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--gold-soft); color: var(--ink); }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.eyebrow.light { color: #fff; background: rgba(255,255,255,0.14); }
.eyebrow.light::before { background: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 24px -12px rgba(47,125,79,0.55); }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 12px 28px -12px rgba(47,125,79,0.65); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0) scale(0.97); box-shadow: 0 6px 14px -10px rgba(47,125,79,0.5); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--cream); border-color: var(--green); }
.btn-ghost:active { transform: scale(0.97); }
.btn-outline:active { transform: scale(0.97); }
.play-dot {
  width: 20px; height: 20px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.link-arrow {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.link-arrow:hover { color: var(--green); }
.link-arrow.small { font-size: 0.85rem; color: var(--green); }

.section-head {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2.5rem 2.5rem;
}
.section-head h2 { font-size: 2rem; font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px -18px rgba(20,23,15,0.35); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.3rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
}
.logo span { display: flex; flex-direction: column; color: var(--ink); line-height: 1.1; }
.logo small { font-size: 0.55rem; letter-spacing: 0.06em; color: var(--ink-soft); font-weight: 600; }

.main-nav { display: flex; gap: 1.8rem; flex: 1; justify-content: center; }
.main-nav a { font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); }
.main-nav a.active { color: var(--green); font-weight: 600; }
.main-nav a:hover { color: var(--green); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions button {
  background: none; border: none; color: var(--ink); position: relative; display: flex;
}
.cart-btn { position: relative; }
.cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--green); color: #fff;
  font-size: 0.6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.hero-text h1 span { color: var(--green); font-style: italic; }
.lead { color: var(--ink-soft); max-width: 42ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 2.6rem; flex-wrap: wrap; }

.hero-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
.hero-features li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--green); }
.hero-features li svg { background: var(--green-soft); color: var(--green-dark); padding: 0.5rem; border-radius: 50%; box-sizing: content-box; flex-shrink: 0; }
.hero-features li:nth-child(2n) svg { background: var(--gold-soft); color: var(--gold-dark); }
.hero-features li span { display: flex; flex-direction: column; color: var(--ink); font-size: 0.85rem; font-weight: 600; }
.hero-features li small { color: var(--ink-soft); font-weight: 400; font-size: 0.78rem; }

.hero-image { position: relative; z-index: 0; }
.hero-image::before {
  content: '';
  position: absolute;
  inset: -12% -14%;
  background:
    radial-gradient(circle at 25% 20%, rgba(232,163,61,0.28), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(47,125,79,0.22), transparent 55%);
  filter: blur(30px);
  z-index: -1;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 5 / 4.4;
  object-fit: cover;
  border-radius: 24px;
}
.rating-card {
  position: absolute;
  bottom: -1.6rem;
  right: 1.5rem;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.25);
}
@media (prefers-reduced-motion: no-preference) {
  .rating-card { animation: floaty 4.5s ease-in-out infinite; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.avatars { display: flex; }
.avatars img {
  width: 30px; height: 30px; border-radius: 50%; object-fit: cover;
  border: 2px solid #fff; margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }
.rating-card strong { font-size: 1rem; }
.rating-card p { font-size: 0.72rem; color: var(--ink-soft); }
.stars { color: #f5b23e; font-size: 0.78rem; letter-spacing: 1px; }

/* ---------- Dishes ---------- */
.dishes { padding: 3rem 0 5rem; background: linear-gradient(180deg, var(--green-soft) 0%, var(--paper) 100%); }
.dish-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.dish-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -26px rgba(30,35,32,0.35); background: #fff; }
.dish-img { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 1rem; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.dish-card:hover .dish-img img { transform: scale(1.08); }
.fav-btn {
  position: absolute; top: 0.6rem; right: 0.6rem;
  width: 28px; height: 28px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.9); font-size: 0.95rem;
  transition: transform 0.15s ease;
}
.fav-btn:hover { transform: scale(1.12); }
.fav-btn.active { color: #e0455f; }
.dish-badge {
  position: absolute; top: 0.6rem; left: 0.6rem; z-index: 2;
  background: var(--gold); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 0.35em 0.7em; border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(232,163,61,0.6);
}
.dish-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.dish-card p {
  font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dish-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.dish-footer span { font-weight: 700; font-family: 'Fraunces', serif; font-size: 1.05rem; }
.add-circle {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--green); color: #fff; font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.15s ease;
}
.add-circle:hover { background: var(--green-dark); transform: scale(1.08); }
.add-circle:active { transform: scale(0.92); }

/* ---------- Offer banner ---------- */
.offer-banner {
  max-width: var(--max);
  margin: 0 auto 5rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  min-height: 260px;
}
.offer-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.offer-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,20,15,0.94) 45%, rgba(15,20,15,0.55) 100%);
  z-index: 1;
}
.offer-content { position: relative; z-index: 2; color: #fff; max-width: 480px; }
.offer-content h2 { font-size: 2.1rem; font-weight: 700; margin-bottom: 0.8rem; }
.offer-content p { color: #d4d8d2; margin-bottom: 1.6rem; }
.offer-badge {
  position: absolute; z-index: 2; right: 4rem; top: 50%; transform: translateY(-50%);
  width: 110px; height: 110px; border-radius: 50%;
  border: 2px dashed rgba(232,163,61,0.7);
  background: rgba(232,163,61,0.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
}
.offer-badge span { font-size: 1.6rem; font-weight: 700; font-family: 'Fraunces', serif; color: var(--gold); }
.offer-badge small { font-size: 0.75rem; letter-spacing: 0.05em; }
@media (prefers-reduced-motion: no-preference) {
  .offer-badge { animation: floaty 5s ease-in-out infinite; }
}

/* ---------- Reviews ---------- */
.reviews-wrap { background: var(--gold-soft); padding: 4rem 0 4.5rem; margin-bottom: 5rem; }
.reviews { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; }
.review-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 1.6rem; }
.review-card { background: #fff; border-radius: 18px; padding: 1.8rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 36px -26px rgba(30,35,32,0.3); }
.quote { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.4rem; min-height: 4.6em; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.reviewer img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.reviewer strong { font-size: 0.92rem; display: block; }
.reviewer small { color: var(--ink-soft); font-size: 0.78rem; }
.review-nav { display: flex; justify-content: flex-end; gap: 0.6rem; }
.review-nav button {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; font-size: 0.9rem;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.review-nav button:hover { background: var(--green); color: #fff; border-color: var(--green); }
.review-nav button:active { transform: scale(0.9); }

/* ---------- Blog ---------- */
.blog { padding-bottom: 5rem; }
.blog-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.blog-card { transition: transform 0.3s var(--ease); }
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; aspect-ratio: 16/10.5; object-fit: cover; border-radius: 16px; margin-bottom: 1rem; transition: transform 0.5s var(--ease); }
.blog-card:hover img { transform: scale(1.05); }
.blog-meta { display: inline-block; font-size: 0.72rem; color: var(--green-dark); background: var(--green-soft); font-weight: 600; padding: 0.3em 0.8em; border-radius: 999px; margin-bottom: 0.7rem; }
.blog-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; line-height: 1.35; }

/* ---------- Newsletter ---------- */
.newsletter {
  max-width: var(--max); margin: 0 auto 3rem;
  background: var(--cream); border-radius: 20px;
  padding: 2.2rem 2.5rem;
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
}
.newsletter-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green);
  color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.newsletter-text { flex: 1; min-width: 220px; }
.newsletter-text strong { font-size: 1.1rem; display: block; margin-bottom: 0.2rem; }
.newsletter-text p { color: var(--ink-soft); font-size: 0.88rem; }
.newsletter-form { display: flex; gap: 0.7rem; flex: 1; min-width: 280px; }
.newsletter-form input {
  flex: 1; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.8em 1.3em; font-family: inherit; font-size: 0.88rem; outline: none;
}
.newsletter-form input:focus { border-color: var(--green); }

/* ---------- Footer ---------- */
.site-footer { background: #14170f; color: #cfd3ca; padding: 3.5rem 2.5rem 1.5rem; }
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #7cc499; margin-bottom: 0.8rem; }
.footer-brand .logo span { color: #fff; }
.footer-brand p { font-size: 0.85rem; color: #9aa094; margin-bottom: 1.2rem; }
.social-icons { display: flex; gap: 0.6rem; }
.social-icons a {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: #cfd3ca;
}
.social-icons a:hover { background: var(--green); color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.85rem; color: #9aa094; margin-bottom: 0.7rem; }
.footer-col a:hover { color: #7cc499; }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 1.5rem; font-size: 0.8rem; color: #7d8377; text-align: center; }

[hidden] { display: none !important; }

/* ---------- Dish card add-to-cart / qty stepper ---------- */
.dish-footer .qty-stepper { display: flex; align-items: center; gap: 0.6rem; }
.qty-stepper button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; transition: background 0.15s ease, transform 0.15s ease; }
.qty-stepper button:hover { background: var(--green); color: #fff; border-color: var(--green); }
.qty-stepper button:active { transform: scale(0.9); }
.qty-stepper button:disabled { opacity: 0.35; cursor: not-allowed; }
.qty-stepper button:disabled:hover { background: #fff; color: inherit; border-color: var(--line); }
.qty-stepper .qty-num { font-weight: 700; font-size: 0.9rem; min-width: 1.2em; text-align: center; }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(20,23,15,0.5); z-index: 100; display: flex; justify-content: flex-end; opacity: 0; transition: opacity 0.3s ease; }
.cart-overlay.open { opacity: 1; }
.cart-drawer { background: #fff; width: 100%; max-width: 420px; height: 100%; display: flex; flex-direction: column; box-shadow: -20px 0 40px -20px rgba(0,0,0,0.3); transform: translateX(100%); transition: transform 0.35s var(--ease); }
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--line); }
.cart-drawer-head h3 { font-size: 1.15rem; font-weight: 700; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.6rem; }
.cart-item { display: flex; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.cart-item-body { flex: 1; }
.cart-item-body strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.cart-item-body .cart-item-price { color: var(--green); font-weight: 700; font-size: 0.88rem; margin-bottom: 0.4rem; }
.cart-item-remove { background: none; border: none; color: var(--ink-soft); font-size: 0.76rem; text-decoration: underline; cursor: pointer; margin-left: auto; }
.cart-drawer-foot { padding: 1.2rem 1.6rem 1.6rem; border-top: 1px solid var(--line); }
.cart-line { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.btn.full { width: 100%; justify-content: center; }
.no-results { text-align: center; color: var(--ink-soft); padding: 1.5rem 1rem; }
#cartEmpty { margin: 2rem 1.6rem; }
.checkout-form-col { min-width: 0; }

/* ---------- Generic modal (sign in) ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(20,23,15,0.55); display: flex; align-items: center; justify-content: center; z-index: 110; padding: 1.5rem; opacity: 0; transition: opacity 0.25s ease; }
.modal-overlay.open { opacity: 1; }
.modal-box { background: #fff; border-radius: 18px; max-width: 640px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; transform: translateY(14px) scale(0.98); transition: transform 0.3s var(--ease); }
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-box-sm { max-width: 400px; }
.modal-close { position: absolute; top: 0.8rem; right: 0.9rem; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,0.05); border: none; font-size: 1.3rem; line-height: 1; cursor: pointer; z-index: 2; color: var(--ink); }
.modal-box .modal-close { top: 1.2rem; right: 1.2rem; }
.modal-body { padding: 1.8rem; }
.modal-body h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; }
.modal-trim { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 1.2rem; }
.form-success { margin-top: 1rem; color: var(--green); font-weight: 600; font-size: 0.9rem; background: var(--cream); border-radius: 10px; padding: 0.9rem 1rem; }

/* ---------- Forms (shared across pages) ---------- */
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea { border: 1px solid var(--line); border-radius: 10px; padding: 0.75em 0.9em; font-size: 0.9rem; font-family: inherit; }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-card { background: var(--cream); border-radius: 18px; padding: 2rem; max-width: 640px; }
.radio-row { display: flex; gap: 1.4rem; margin-bottom: 1.2rem; }
.radio-row label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 600; }

/* ---------- Subpages: hero, sections ---------- */
.page-hero { background: var(--cream); padding: 3.5rem 2.5rem; text-align: center; }
.page-hero h1 { font-size: 2.3rem; font-weight: 700; margin-bottom: 0.8rem; }
.page-hero p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto; }
.page-section { max-width: var(--max); margin: 0 auto; padding: 3.5rem 2.5rem; }
.page-section + .page-section { border-top: 1px solid var(--line); }
.page-section h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 0.6rem; }
.page-section .section-lead { color: var(--ink-soft); margin-bottom: 2rem; max-width: 60ch; }
.page-section.alt { background: var(--cream); }

/* ---------- Menu page ---------- */
.menu-tabs { display: flex; gap: 0.7rem; flex-wrap: wrap; max-width: var(--max); margin: 0 auto 2.5rem; padding: 0 2.5rem; }
.menu-tab { padding: 0.6em 1.4em; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; }
.menu-tab.active { background: var(--green); border-color: var(--green); color: #fff; }
.menu-grid { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem 5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

/* ---------- Checkout ---------- */
.checkout-grid { max-width: var(--max); margin: 0 auto; padding: 3rem 2.5rem 5rem; display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: start; }
.order-summary { background: var(--cream); border-radius: 18px; padding: 1.8rem; position: sticky; top: 100px; }
.order-summary h3 { font-size: 1.1rem; margin-bottom: 1.2rem; }
.summary-item { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 0.7rem; color: var(--ink-soft); }
.summary-item strong { color: var(--ink); font-weight: 600; }
.summary-totals { border-top: 1px solid var(--line); margin-top: 1rem; padding-top: 1rem; }
.summary-totals div { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 0.5rem; }
.summary-totals .grand-total { font-size: 1.1rem; font-weight: 700; color: var(--ink); border-top: 1px solid var(--line); padding-top: 0.7rem; margin-top: 0.5rem; }
.confirmation { max-width: 560px; margin: 0 auto; text-align: center; padding: 2rem 0; }
.confirmation-icon {
  width: 68px; height: 68px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.8rem;
  animation: pop-in 0.5s var(--ease);
}
@keyframes pop-in {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
.confirmation h2 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.confirmation p { color: var(--ink-soft); margin-bottom: 0.6rem; }
.order-number { font-weight: 700; color: var(--green); font-size: 1.1rem; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 0.9rem; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: #fff; border: none; padding: 1.1rem 1.3rem; font-size: 0.95rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q .chev { width: 18px; height: 18px; transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; background: var(--cream); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 1.3rem 1.1rem; color: var(--ink-soft); font-size: 0.88rem; }

/* ---------- Team / careers / press ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.team-card { text-align: center; }
.team-avatar { width: 84px; height: 84px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; margin: 0 auto 0.9rem; }
.team-card strong { display: block; font-size: 0.95rem; }
.team-card span { color: var(--ink-soft); font-size: 0.82rem; }

.job-list { display: flex; flex-direction: column; gap: 1rem; max-width: 720px; }
.job-card { border: 1px solid var(--line); border-radius: 12px; padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.job-card strong { display: block; font-size: 0.95rem; }
.job-card span { color: var(--ink-soft); font-size: 0.82rem; }

.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 800px; }
.press-card { border: 1px solid var(--line); border-radius: 12px; padding: 1.4rem; }
.press-card strong { display: block; font-size: 0.95rem; margin-bottom: 0.4rem; }
.press-card p { color: var(--ink-soft); font-size: 0.85rem; }

/* ---------- Blog full page ---------- */
.blog-card .blog-excerpt { color: var(--ink-soft); font-size: 0.86rem; margin-bottom: 0.6rem; }
.blog-card .blog-full { display: none; color: var(--ink-soft); font-size: 0.86rem; margin-bottom: 0.6rem; }
.blog-card.expanded .blog-excerpt { display: none; }
.blog-card.expanded .blog-full { display: block; }
.read-more { background: none; border: none; color: var(--green); font-weight: 600; font-size: 0.85rem; cursor: pointer; padding: 0; }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 1.1rem; margin: 1.6rem 0 0.6rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 0.9rem; }
.legal-note { background: var(--cream); border-radius: 10px; padding: 1rem 1.2rem; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 2rem; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 40;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px -14px rgba(20,23,15,0.5);
  opacity: 0; transform: translateY(12px) scale(0.9); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease), background 0.2s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { background: var(--green); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .review-track { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; padding: 1.1rem 1.4rem; }
  .nav-toggle { display: flex; order: 2; }
  .header-actions { order: 3; margin-left: auto; }
  .main-nav {
    order: 4; width: 100%; flex-direction: column; align-items: flex-start;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 300px; padding-top: 1rem; }
  .main-nav a { padding: 0.5rem 0; width: 100%; }

  .hero { padding: 2.2rem 1.4rem 3rem; }
  .hero-text h1 { font-size: 2.3rem; }
  .hero-features { grid-template-columns: 1fr; }
  .rating-card { position: static; margin-top: 1rem; }

  .section-head { padding: 0 1.4rem 1.6rem; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .dish-grid, .blog-grid { padding: 0 1.4rem; grid-template-columns: 1fr; }
  .offer-banner { margin: 0 1.4rem 3rem; padding: 2.4rem 1.6rem; flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .offer-badge { position: static; transform: none; }
  .reviews { padding: 0 1.4rem 3rem; }
  .newsletter { margin: 0 1.4rem 2rem; flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 2.5rem 1.4rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-section { padding: 2.5rem 1.4rem; }
  .menu-tabs { padding: 0 1.4rem; }
  .menu-grid { grid-template-columns: 1fr; padding: 0 1.4rem 3rem; }
  .checkout-grid { padding: 2rem 1.4rem 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .cart-drawer { max-width: 100%; }
}

/* ---------- Dish detail page ---------- */
.breadcrumb { max-width: var(--max); margin: 0 auto; padding: 1.6rem 2.5rem 0; font-size: 0.82rem; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 0.4rem; }

.pdp { max-width: var(--max); margin: 0 auto; padding: 1.6rem 2.5rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.pdp-gallery { position: relative; }
.pdp-gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 18px; background: var(--cream); }
.pdp-gallery .dish-badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; }
.pdp-category { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green); margin-bottom: 0.6rem; }
.pdp-info h1 { font-size: 2rem; font-weight: 700; margin-bottom: 0.6rem; font-family: 'Fraunces', serif; }
.pdp-meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; }
.pdp-meta .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.review-count { font-size: 0.82rem; color: var(--ink-soft); }
.pdp-price { font-size: 1.5rem; font-weight: 700; font-family: 'Fraunces', serif; margin-bottom: 1.1rem; color: var(--green-dark); }
.pdp-desc { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 1.8rem; max-width: 48ch; }

.pdp-buy-row { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.qty-stepper.standalone { display: flex; align-items: center; gap: 0.7rem; border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.7rem; }
.qty-stepper.standalone .qty-num { min-width: 1.4em; text-align: center; font-weight: 700; }
.pdp-fav { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 1.05rem; }

.pdp-perks { list-style: none; margin-bottom: 2rem; color: var(--ink-soft); font-size: 0.85rem; display: flex; flex-direction: column; gap: 0.5rem; }

.pdp-tabs { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.pdp-tab-heads { display: flex; gap: 1.8rem; margin-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.pdp-tab-head { background: none; border: none; padding: 0 0 0.9rem; font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; }
.pdp-tab-head.active { color: var(--green-dark); border-color: var(--green); }
.pdp-tab-panel { display: none; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.75; }
.pdp-tab-panel.active { display: block; }
.review { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: none; }
.review .stars { display: block; color: var(--gold); margin-bottom: 0.4rem; }
.review p { color: var(--ink); margin-bottom: 0.3rem; }
.review small { color: var(--ink-soft); }

.menu-related { padding-top: 1rem; }
.dish-card { cursor: pointer; }

@media (max-width: 860px) {
  .pdp { grid-template-columns: 1fr; gap: 2rem; padding: 1.2rem 1.4rem 3rem; }
  .breadcrumb { padding: 1.2rem 1.4rem 0; }
}
