:root {
  --green-dark: #142b20;
  --green: #1f4a35;
  --green-mid: #2c6b4a;
  --red: #b5382b;
  --red-dark: #8f2b21;
  --cream: #faf6ec;
  --cream-2: #f1ead9;
  --gold: #d4a94f;
  --ink: #23281f;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 14px 34px rgba(20, 43, 32, 0.16);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ---------- Intro splash ---------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at 50% 45%, #0f2019 0%, #0a1510 70%, #060c09 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity .5s ease, visibility .5s ease;
}
.splash.splash-hide { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-title {
  font-family: 'Baloo Da 2', var(--font-body);
  font-weight: 500;
  font-size: clamp(2.4rem, 7.5vw, 4rem);
  color: #eafff2;
  margin: 0;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: neonFlicker 1.1s linear .3s forwards;
}
.splash-word { text-shadow: 0 0 4px #fff, 0 0 14px #6df0a4, 0 0 30px #2ecc71, 0 0 54px rgba(46,204,113,.55); }
.splash-leaf {
  height: 1.28em;
  width: auto;
  object-fit: contain;
  transform: translateY(0.04em);
  filter: drop-shadow(0 0 8px rgba(120,230,160,.85)) drop-shadow(0 0 20px rgba(46,204,113,.55));
}
@keyframes neonFlicker {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  14%  { opacity: .2; }
  22%  { opacity: 1; }
  28%  { opacity: .15; }
  38%  { opacity: 1; }
  100% { opacity: 1; }
}
.splash-subtitle {
  font-family: 'Baloo Da 2', var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 14px 0 0;
  opacity: 0;
  animation: splashSubtitleIn .6s ease 1.55s forwards;
}
@keyframes splashSubtitleIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .splash-leaf, .splash-title, .splash-subtitle { animation: none; opacity: 1; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .4em; }
p { margin: 0 0 1em; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-fluid { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
section { padding: 90px 0; }
.section-label {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: #4d564b;
  font-size: 1.05rem;
}
.section-intro.light { color: var(--cream-2); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 43, 32, 0.92);
  backdrop-filter: saturate(160%) blur(6px);
  transition: background .2s;
}
.site-header.scrolled { background: var(--green-dark); box-shadow: 0 2px 14px rgba(0,0,0,.2); }
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; }
.brand img {
  height: 78px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  display: block;
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,.7))
    drop-shadow(0 0 8px rgba(120,220,160,.55))
    drop-shadow(0 0 18px rgba(60,190,120,.35));
}
@media (max-width: 520px) {
  .brand img { height: 58px; }
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  padding: 10px 16px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 8px;
  transition: background .15s;
}
.nav-links a:hover { background: rgba(255,255,255,.08); }
.nav-links a.btn-order {
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  margin-left: 6px;
}
.nav-links a.btn-order:hover { background: var(--red-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroCrossfade 24s infinite;
  transform: scale(1.08);
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
@keyframes heroCrossfade {
  0% { opacity: 0; transform: scale(1.08); }
  4% { opacity: 1; }
  22% { opacity: 1; transform: scale(1.15); }
  28% { opacity: 0; }
  100% { opacity: 0; }
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,16,.55) 0%, rgba(10,22,16,.55) 40%, rgba(8,18,13,.92) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-script {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.hero-script.light { color: var(--gold); }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 3px 20px rgba(0,0,0,.35);
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--cream-2);
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .01em;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 24px rgba(181,56,43,.4); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { background: rgba(255,255,255,.1); color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-secondary:hover { background: rgba(255,255,255,.2); }
.btn:hover { transform: translateY(-2px); }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }

/* ---------- Twirl badge (smooth vector animation, no video needed) ---------- */
.twirl-badge {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 150px;
  height: 150px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 43, 32, 0.55);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.twirl-badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: twirlRingSpin 16s linear infinite;
  text-transform: uppercase;
}
@keyframes twirlRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.twirl-badge-icon {
  width: 58%;
  height: 58%;
  overflow: visible;
}
.twirl-strand {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 100;
  animation: twirlWind 2.4s cubic-bezier(.45,0,.55,1) infinite;
  transform-origin: 50px 60px;
}
.twirl-strand-2 { animation-delay: .25s; stroke: #e6c374; }
.twirl-strand-3 { animation-delay: .5s; stroke: var(--gold); opacity: .85; }
@keyframes twirlWind {
  0%   { stroke-dashoffset: 100; opacity: 0; }
  15%  { opacity: 1; }
  55%  { stroke-dashoffset: 0; opacity: 1; }
  85%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -100; opacity: 0; }
}
.twirl-fork {
  stroke: var(--cream);
  stroke-width: 4;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  animation: twirlFork 2.4s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes twirlFork {
  0%   { transform: translateY(4px) rotate(0deg); }
  50%  { transform: translateY(-8px) rotate(180deg); }
  100% { transform: translateY(4px) rotate(360deg); }
}
@media (max-width: 860px) {
  .twirl-badge { width: 108px; height: 108px; right: 4%; bottom: 4%; }
}
@media (prefers-reduced-motion: reduce) {
  .twirl-badge-ring, .twirl-strand, .twirl-fork { animation: none; }
}
.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
}

/* ---------- Since 2010 banner ---------- */
.since-banner {
  background: var(--gold);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 24px;
  flex-wrap: wrap;
  text-align: center;
}
.since-banner-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  border-right: 2px solid rgba(20,43,32,.3);
  padding-right: 18px;
}
.since-banner-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .01em;
}
@media (max-width: 520px) {
  .since-banner-year { border-right: none; padding-right: 0; font-size: 1.6rem; }
  .since-banner { flex-direction: column; gap: 4px; padding: 14px; }
}

/* ---------- Signature dishes ---------- */
.signature-section { background: var(--cream); }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.dish-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(20,43,32,.28); }
.dish-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dish-card:hover .dish-card-img { transform: scale(1.08); }
.dish-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(10,18,12,.88) 100%);
  z-index: 1;
}
.dish-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.dish-card-body h3 { color: var(--white); font-size: 1.15rem; margin: 0; line-height: 1.25; }
.dish-card-price {
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-display);
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .95rem;
  white-space: nowrap;
}

/* Smaller card grid used inside menu tab panels */
.dish-grid-menu {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 22px;
}
.dish-grid-menu .dish-card { aspect-ratio: 1/1; }
.dish-grid-menu .dish-card-body { padding: 14px 16px; }
.dish-grid-menu .dish-card-body h3 { font-size: .98rem; }
.dish-grid-menu .dish-card-price { font-size: .82rem; padding: 4px 10px; }

/* ---------- Menu ---------- */
.menu-section { background: var(--cream-2); }
.menu-note {
  text-align: center;
  font-style: italic;
  color: #7a6a3a;
  background: var(--white);
  border: 1px solid #e6d9b8;
  border-radius: var(--radius);
  padding: 10px 16px;
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: .92rem;
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.menu-tab {
  background: var(--white);
  border: 1.5px solid #e3dac2;
  color: var(--green-dark);
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: all .15s;
}
.menu-tab:hover { border-color: var(--green-mid); }
.menu-tab.active { background: var(--red); color: var(--white); border-color: var(--red); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: none; } }

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 40px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 28px;
  box-shadow: var(--shadow);
}
.menu-item {
  padding: 18px 0;
  border-bottom: 1px dashed #e3dac2;
}
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.menu-item-head h4 { font-size: 1.08rem; color: var(--green-dark); margin: 0; }
.menu-item-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
  font-size: 1.05rem;
}
.menu-item-desc { font-size: .9rem; color: #5c6357; margin: 6px 0 0; }
.tag { font-size: .78rem; margin-left: 6px; display: inline-flex; align-items: center; }
.tag-veg { color: var(--green-mid); font-weight: 700; }
.tag-icon-svg { width: 15px; height: 15px; color: var(--red); vertical-align: -2px; }

/* ---------- Build your own ---------- */
.byo-section { background: var(--green-dark); color: var(--cream); position: relative; overflow: hidden; }
.byo-section .section-title { color: var(--white); }
.byo-section .section-intro { color: var(--cream-2); }
.byo-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  margin-bottom: 44px;
  align-items: start;
}
.byo-image {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  border: 4px solid rgba(255,255,255,.08);
}
.byo-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.byo-step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 18px;
  transition: background .2s, transform .2s;
}
.byo-step:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.byo-step-num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212,169,79,.15);
  border: 2px solid var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.byo-step-tag {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  color: var(--gold);
  font-weight: 700;
}
.byo-step-body { min-width: 0; flex: 1; }
.byo-step-body h4 { color: var(--white); margin: 4px 0 12px; }
.byo-options { display: flex; flex-wrap: wrap; gap: 8px; }
.byo-chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--cream-2);
  padding: 6px 13px;
  border-radius: 999px;
  font-size: .84rem;
}
.byo-note { color: var(--gold); font-size: .85rem; margin: 12px 0 0; }
.byo-step-wide { grid-column: 1 / -1; }

.pasta-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 16px;
}
.pasta-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.pasta-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--cream);
  border: 2.5px solid rgba(212,169,79,.7);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.pasta-icon-card:hover .pasta-icon-circle { border-color: var(--gold); transform: translateY(-3px); }
.pasta-icon-photo { width: 100%; height: 100%; object-fit: contain; display: block; padding: 9%; box-sizing: border-box; }
.pasta-icon-label { font-size: .78rem; color: var(--cream-2); line-height: 1.2; }
.byo-price-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.byo-stamp {
  background: var(--gold);
  color: var(--green-dark);
  width: 168px; height: 168px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: rotate(-8deg);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  border: 4px dashed rgba(20,43,32,.35);
}
.byo-stamp-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.byo-stamp-price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; }
.byo-pricenote { color: var(--cream-2); font-size: .85rem; text-align: center; max-width: 420px; }

/* ---------- Atmosphere strip ---------- */
.atmosphere-section { background: var(--cream); padding-bottom: 60px; }
.atmosphere-section .container { margin-bottom: 30px; }
.atmosphere-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  height: 420px;
}
.atmosphere-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .35s ease;
}
.atmosphere-grid img:hover { transform: scale(1.015); }
.atmosphere-single { grid-template-columns: 1fr; }

/* ---------- Order online ---------- */
.order-section {
  position: relative;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.order-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,43,32,.88), rgba(10,20,14,.94)); }
.order-section .container { position: relative; z-index: 1; }
.delivery-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.delivery-btn {
  background: var(--white);
  padding: 22px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}
.delivery-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.delivery-logo { height: 26px; width: auto; }

/* ---------- Location ---------- */
.location-section { background: var(--cream-2); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.location-card h3 { color: var(--green-dark); }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-2);
  font-size: .95rem;
}
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.location-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }
.contact-line { display: flex; align-items: center; gap: 10px; margin: 14px 0; font-size: 1.05rem; }
.contact-icon { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.contact-line strong { color: var(--green-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: var(--cream-2);
  padding: 44px 0 26px;
  text-align: center;
}
.footer-logo {
  height: 64px;
  width: auto;
  margin: 0 auto 20px;
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,.6))
    drop-shadow(0 0 6px rgba(120,220,160,.45));
}
.footer-thanks { max-width: 520px; margin: 0 auto 24px; font-size: .92rem; color: var(--cream-2); }
.footer-social { display: flex; gap: 18px; justify-content: center; margin-bottom: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.footer-social a:hover { background: rgba(255,255,255,.1); }
.footer-fine { font-size: .82rem; color: #9fae9e; margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 8px; }
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .dish-grid-menu { grid-template-columns: 1fr 1fr; }
  .menu-list { grid-template-columns: 1fr; padding: 6px 20px; }
  .byo-layout { grid-template-columns: 1fr; }
  .byo-image { position: static; aspect-ratio: 16/9; }
  .byo-steps { grid-template-columns: 1fr; }
  .atmosphere-grid { grid-template-columns: 1fr; height: auto; }
  .atmosphere-grid img { height: 220px; }
  .location-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
@media (max-width: 520px) {
  .dish-grid { grid-template-columns: 1fr; }
  .dish-grid-menu { grid-template-columns: 1fr; }
}

/* ---------- Content pages, About, FAQ (SEO sections) ---------- */
.section-more { text-align: center; margin: 34px 0 0; font-weight: 600; }
.section-more a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.section-more.light a { color: var(--gold); }
.container.narrow { max-width: 860px; }

.prose { max-width: 860px; margin: 0 auto; padding: 56px 24px 34px; }
.prose h2 { color: var(--green-dark); font-size: clamp(1.5rem, 3vw, 2rem); margin: 40px 0 12px; }
.prose p, .prose li { color: #3f473c; font-size: 1.04rem; }
.prose a:not(.btn):not(.delivery-btn) { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.about-section { background: var(--cream); }
.about-section .prose { padding-top: 84px; padding-bottom: 60px; }
.about-section .section-title { margin-bottom: 22px; }
.about-links { margin-top: 26px; font-weight: 600; }

.faq-section { background: var(--cream-2); }
.faq details { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 14px; padding: 4px 22px; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--green-dark); padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 18px; color: #4d564b; }

.location-address { font-style: normal; }
.location-note { font-size: .92rem; color: #5c6357; margin: 4px 0 0; }
.location-note a { color: var(--red); text-decoration: underline; }
.footer-nav { display: flex; gap: 8px 22px; justify-content: center; flex-wrap: wrap; margin: 0 0 22px; }
.footer-nav a { color: var(--cream-2); text-decoration: underline; text-underline-offset: 3px; font-size: .92rem; }
.footer-address { font-style: normal; }

.page-hero { background: radial-gradient(circle at 50% 0%, #1f4a35 0%, var(--green-dark) 72%); color: var(--white); text-align: center; padding: 70px 0 58px; }
.page-hero h1 { font-size: clamp(2rem, 4.8vw, 3.2rem); line-height: 1.12; margin-bottom: 14px; }
.page-hero .lead { max-width: 700px; margin: 0 auto 26px; color: var(--cream-2); font-size: 1.1rem; }
.crumbs { font-size: .85rem; color: var(--cream-2); opacity: .85; margin-bottom: 16px; }
.crumbs a { text-decoration: underline; }
.cta-band { background: var(--green-dark); color: var(--white); text-align: center; padding: 64px 24px; }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.cta-band p { color: var(--cream-2); margin-bottom: 24px; }

.menu-page { max-width: 1080px; margin: 0 auto; padding: 52px 24px 30px; }
.menu-cat { margin-bottom: 52px; }
.menu-cat h2 { color: var(--green-dark); font-size: clamp(1.6rem, 3vw, 2.1rem); border-bottom: 2px solid var(--gold); padding-bottom: 10px; margin-bottom: 20px; }
.menu-cards { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 30px; }
.menu-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 14px; box-shadow: 0 8px 22px rgba(20,43,32,.10); }
.menu-card img { width: 118px; height: 118px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.menu-card h3 { margin: 0 0 4px; font-size: 1.08rem; color: var(--green-dark); }
.menu-card .price { font-family: var(--font-display); font-weight: 800; color: var(--red); }
.menu-card p { font-size: .92rem; color: #5c6357; margin: 6px 0 0; }
.menu-tag { display: inline-block; font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: #fbe3df; color: var(--red-dark); border-radius: 999px; padding: 2px 9px; vertical-align: middle; margin-left: 4px; }
.menu-tag-veg { background: #dff0e2; color: var(--green-mid); }
.menu-byo { font-size: 1.05rem; }
.menu-byo a { color: var(--red); text-decoration: underline; }

.price-callout { display: flex; align-items: baseline; justify-content: center; gap: 12px; flex-wrap: wrap; background: var(--white); border: 2px dashed var(--gold); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 8px; text-align: center; }
.price-callout span { text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; font-weight: 700; color: #7a6a3a; }
.price-callout strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--red); }
.price-callout small { color: #5c6357; }
.byo-page-step { margin-bottom: 8px; }
.chip-grid { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid #e6d9b8; border-radius: 999px; padding: 4px 16px 4px 4px; font-size: .92rem; color: var(--ink); }
.chip img { width: 34px; height: 34px; border-radius: 50%; background: var(--cream); border: 1.5px solid rgba(212,169,79,.6); padding: 3px; }
.chip:not(:has(img)) { padding-left: 16px; }
.step-note { font-size: .9rem; color: #7a6a3a; }
.hours-block { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 8px 22px; max-width: 460px; }
.prose .delivery-links { justify-content: flex-start; margin: 18px 0 8px; }
.prose .delivery-btn { box-shadow: 0 8px 22px rgba(20,43,32,.14); border: 1px solid #ece3cb; }

@media (max-width: 860px) {
  .menu-cards { grid-template-columns: 1fr; }
  .page-hero { padding: 52px 0 44px; }
}
