/* ============================================================
   Ristorante Cafe Roma — Dausenau
   Editorial-rustic Italian trattoria design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&family=Work+Sans:wght@300;400;500;600;700;800&family=Caveat:wght@500;600;700&display=swap');

:root {
  /* palette — warm linen paper, terracotta, wine, olive */
  --paper: #f6efe1;
  --paper-2: #efe4cf;
  --paper-edge: #e7d8ba;
  --card: #fffbf2;
  --ink: #2c1e14;
  --ink-soft: #5b4a3a;
  --terracotta: #c1502e;
  --terracotta-deep: #9c3d22;
  --terracotta-tint: #f1d9ce;
  --wine: #6e1f2a;
  --wine-deep: #591722;
  --olive: #5c6b3d;
  --olive-deep: #47542d;
  --gold: #c8963c;
  --line: rgba(44, 30, 20, 0.14);

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Work Sans", -apple-system, sans-serif;
  --font-script: "Caveat", cursive;

  --shadow-soft: 0 12px 30px -12px rgba(44, 30, 20, 0.28);
  --shadow-card: 0 18px 40px -18px rgba(44, 30, 20, 0.35);
  --radius: 6px;

  --container: 1180px;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; color: var(--ink); }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

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

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--terracotta-deep);
  display: inline-block;
  margin-bottom: 0.15em;
  transform: rotate(-2deg);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--terracotta-deep); font-weight: 500; }

.section-intro { max-width: 640px; color: var(--ink-soft); font-size: 1.08rem; }

.section { position: relative; padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--ink); color: #efe4d3; }
.section--dark .section-title { color: #f7efe1; }
.section--dark .section-intro { color: #cbb9a4; }

/* torn paper edge divider */
.torn { position: relative; }
.torn::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 22px;
  background: inherit;
  background-color: var(--paper);
  clip-path: polygon(0% 100%,3% 20%,6% 100%,9% 30%,12% 100%,15% 15%,18% 100%,21% 35%,24% 100%,27% 10%,30% 100%,33% 25%,36% 100%,39% 15%,42% 100%,45% 30%,48% 100%,51% 10%,54% 100%,57% 25%,60% 100%,63% 15%,66% 100%,69% 30%,72% 100%,75% 10%,78% 100%,81% 25%,84% 100%,87% 15%,90% 100%,93% 30%,96% 100%,100% 15%,100% 100%);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 0.9em 1.6em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--terracotta); color: #fff8ef; box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: var(--terracotta-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(156,61,34,.5); }
.btn--ghost { border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { border-color: rgba(255,255,255,.6); color: #fff8ef; }
.btn--light:hover { background: #fff8ef; color: var(--ink); }
.btn--wine { background: var(--wine); color: #fbe9df; box-shadow: var(--shadow-soft); }
.btn--wine:hover { background: var(--wine-deep); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 20px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled { background: rgba(246,239,225,.94); backdrop-filter: blur(10px); padding: 12px 0; box-shadow: 0 6px 20px -14px rgba(44,30,20,.4); }

.brand { display: flex; flex-direction: column; line-height: 1; color: inherit; }
.brand small { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; opacity: .82; }
.brand strong { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.9rem; letter-spacing: 0.01em; }
.site-header:not(.is-scrolled) .brand { color: #fff8ef; }
.site-header.is-scrolled .brand { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 34px; font-weight: 600; font-size: 0.94rem; }
.site-header:not(.is-scrolled) .nav-links a:not(.btn) { color: #fff8ef; }
.site-header.is-scrolled .nav-links a:not(.btn) { color: var(--ink); }
.nav-links a:not(.btn) { position: relative; padding-bottom: 4px; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--terracotta);
  transition: width .25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a.is-active::after { width: 100%; }

.lang-switch { display: flex; align-items: center; gap: 2px; font-size: .78rem; font-weight: 700; letter-spacing: .03em; }
.lang-switch a { padding: 4px 7px; border-radius: 5px; opacity: .6; transition: opacity .2s ease, background .2s ease; text-transform: uppercase; }
.lang-switch a:hover { opacity: 1; }
.lang-switch a.is-active { opacity: 1; background: rgba(193,80,46,.16); color: var(--terracotta-deep); }
.site-header:not(.is-scrolled) .lang-switch a.is-active { background: rgba(255,248,239,.22); color: #fff8ef; }
.site-header:not(.is-scrolled) .lang-switch a { color: #fff8ef; }
.site-header.is-scrolled .lang-switch a { color: var(--ink); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 6px 0; transition: transform .25s ease, opacity .25s ease; }
.site-header:not(.is-scrolled) .nav-toggle { color: #fff8ef; }
.site-header.is-scrolled .nav-toggle { color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  background-size: cover; background-position: center 30%;
  color: #fff8ef;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,18,10,.35) 0%, rgba(30,18,10,.35) 40%, rgba(20,12,7,.88) 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: 96px; width: 100%; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,248,239,.14); border: 1px solid rgba(255,248,239,.35);
  backdrop-filter: blur(6px);
  padding: 8px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  transition: background .25s ease, transform .25s ease;
}
.hero-badge:hover { background: rgba(255,248,239,.26); transform: translateY(-1px); }
.hero-badge .stars { color: var(--gold); letter-spacing: 2px; }
.hero-badge--review { background: rgba(193,80,46,.35); border-color: rgba(240,185,138,.55); color: #ffe9d6; }
.hero-badge--review:hover { background: rgba(193,80,46,.5); }
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem); line-height: 0.98; font-weight: 700; letter-spacing: -0.01em;
  max-width: 15ch; color: #fff8ef;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.hero h1 em { font-style: italic; color: #f0b98a; font-weight: 600; }
.hero-sub { font-size: 1.2rem; max-width: 46ch; margin: 22px 0 34px; color: #f3e6d6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute; right: 40px; bottom: 40px; z-index: 2;
  writing-mode: vertical-rl; text-transform: uppercase; letter-spacing: .3em; font-size: .72rem; font-weight: 600;
  display: flex; align-items: center; gap: 14px; color: #f3e6d6;
}
.hero-scroll::after { content: ""; width: 1px; height: 60px; background: currentColor; opacity: .6; display: block; }

/* ---------- welcome / story ---------- */
.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.story-photo { position: relative; }
.story-photo img { border-radius: var(--radius); box-shadow: var(--shadow-card); }
.story-photo .tag {
  position: absolute; bottom: -22px; left: -22px; background: var(--card);
  padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow-card);
  font-family: var(--font-script); font-size: 1.3rem; color: var(--wine); transform: rotate(-3deg);
  border: 1px solid var(--line);
}
.story-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.story-fact { border-left: 3px solid var(--terracotta); padding-left: 16px; }
.story-fact strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--terracotta-deep); }
.story-fact span { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- dish cards ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 56px; }
.dish-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.dish-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -20px rgba(44,30,20,.45); }
.dish-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dish-card:hover .dish-photo img { transform: scale(1.07); }
.dish-price {
  position: absolute; top: 14px; right: 14px; background: var(--terracotta); color: #fff8ef;
  width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-direction: column; font-weight: 700; font-size: 0.95rem; box-shadow: 0 8px 20px -6px rgba(0,0,0,.4);
  border: 2px dashed rgba(255,248,239,.55);
}
.dish-price small { font-size: .55rem; font-weight: 600; opacity: .85; }
.dish-tag {
  position: absolute; top: 14px; left: 14px; background: var(--wine); color: #fbe9df;
  padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.dish-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.dish-body h3 { font-size: 1.28rem; margin-bottom: 8px; }
.dish-body p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; flex: 1; }

.dish-cta { text-align: center; margin-top: 54px; }

/* ---------- gallery ---------- */
.gallery-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px 18px; margin-top: 56px; }
.polaroid {
  background: #fff; padding: 10px 10px 40px; box-shadow: var(--shadow-card);
  cursor: pointer; transition: transform .35s ease, box-shadow .35s ease, z-index 0s;
  position: relative;
}
.polaroid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.polaroid span {
  position: absolute; bottom: 12px; left: 12px; right: 12px; font-family: var(--font-script);
  font-size: 1.05rem; color: var(--ink-soft); text-align: center;
}
.polaroid:hover { transform: rotate(0deg) scale(1.06) translateY(-6px); box-shadow: var(--shadow-soft); z-index: 5; }
.polaroid:nth-child(6n+1){ grid-column: span 2; grid-row: span 2; transform: rotate(-2deg); }
.polaroid:nth-child(6n+2){ transform: rotate(2deg); margin-top: 26px; }
.polaroid:nth-child(6n+3){ transform: rotate(-1deg); }
.polaroid:nth-child(6n+4){ transform: rotate(3deg); margin-top: 14px; }
.polaroid:nth-child(6n+5){ grid-column: span 2; transform: rotate(-2deg); }
.polaroid:nth-child(6n+6){ transform: rotate(1deg); margin-top: 30px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(20,12,7,.92); z-index: 900; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 84vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: 26px; right: 34px; color: #f6efe1; font-size: 2.2rem; cursor: pointer; line-height: 1; background:none; border:none; }
.lightbox-cap { position: absolute; bottom: 34px; left: 0; right: 0; text-align: center; font-family: var(--font-script); font-size: 1.4rem; color: #f6efe1; }

/* ---------- feier / community split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-panel { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.split-panel.img { padding: 0; min-height: 480px; background-size: cover; background-position: center; position: relative; }
.split-panel.img::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(20,12,7,.55), transparent 55%); }
.split-panel h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }
.split-panel.olive { background: var(--olive); color: #eef1e2; }
.split-panel.olive h2 { color: #eef1e2; }
.split-panel.olive .btn--ghost { border-color: #eef1e2; color: #eef1e2; }
.split-panel.olive .btn--ghost:hover { background: #eef1e2; color: var(--olive-deep); }
.split-panel.terracotta { background: var(--terracotta-deep); color: #fbe6d8; }
.split-panel.terracotta h2 { color: #fbe6d8; }

/* ---------- reviews / awards ---------- */
.review-strip { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; }
.review-block { display: flex; align-items: center; gap: 18px; }
.review-block .num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--terracotta-deep); line-height: 1; }
.review-block .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.1rem; }
.review-block small { display: block; color: var(--ink-soft); font-size: .86rem; margin-top: 4px; }
.award-badge { display: flex; align-items: center; gap: 14px; background: var(--card); border: 1px solid var(--line); padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.award-badge .medal { font-size: 1.8rem; }
.award-badge strong { display:block; font-family: var(--font-display); font-size: 1.05rem; }
.award-badge span { font-size: .82rem; color: var(--ink-soft); }
.quote { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; max-width: 640px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- hours / contact cta ---------- */
.cta-panel {
  background: var(--ink); color: #f2e6d5; border-radius: 18px; padding: 64px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-panel::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: radial-gradient(circle at 20% 20%, var(--terracotta) 0, transparent 45%), radial-gradient(circle at 85% 80%, var(--olive) 0, transparent 45%);
}
.cta-panel > * { position: relative; z-index: 1; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 18px; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid rgba(242,230,213,.16); font-size: 0.98rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.closed td:last-child { color: #d99a80; }
.contact-lines a { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 1.15rem; margin-bottom: 14px; }
.contact-lines a:hover { color: var(--terracotta); }
.social-row { display: flex; gap: 14px; margin-top: 22px; }
.social-row a {
  width: 42px; height: 42px; border: 1px solid rgba(242,230,213,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background .25s ease, transform .25s ease;
}
.social-row a:hover { background: var(--terracotta); transform: translateY(-3px); border-color: var(--terracotta); }

/* ---------- footer ---------- */
.site-footer { background: #1c130c; color: #cbb9a4; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-grid h4 { color: #f2e6d5; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.footer-grid li { margin-bottom: 10px; font-size: 0.94rem; }
.footer-grid a:hover { color: var(--terracotta); }
.footer-brand strong { font-family: var(--font-display); font-style: italic; font-size: 1.7rem; color: #f2e6d5; }
.footer-bottom { border-top: 1px solid rgba(203,185,164,.18); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }

/* ---------- hero load-in (deterministic CSS-only animation, no JS/observer dependency) ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge, .hero h1, .hero-sub, .hero-cta { animation: fadeUp .9s ease both; }
.hero h1 { animation-delay: .1s; }
.hero-sub { animation-delay: .22s; }
.hero-cta { animation-delay: .34s; }

/* ============ SPEISEKARTE PAGE ============ */
.menu-hero { padding: 168px 0 60px; text-align: center; background: var(--paper-2); }
.menu-jump { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 34px; position: sticky; top: 76px; z-index: 100; }
.menu-jump a {
  background: var(--card); border: 1px solid var(--line); padding: 9px 18px; border-radius: 999px;
  font-size: 0.86rem; font-weight: 600; transition: background .2s ease, color .2s ease;
}
.menu-jump a:hover, .menu-jump a.is-active { background: var(--terracotta); color: #fff8ef; border-color: var(--terracotta); }

.menu-category { padding: 70px 0; border-bottom: 1px dashed var(--line); }
.menu-category:last-of-type { border-bottom: none; }
.menu-cat-head { text-align: center; margin-bottom: 46px; }
.menu-cat-head .eyebrow { display: block; }
.menu-cat-note { color: var(--ink-soft); font-size: 0.92rem; margin-top: 8px; }

.menu-list { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 6px 60px; }
.menu-item { display: flex; align-items: baseline; flex-wrap: nowrap; gap: 8px; padding: 15px 0; border-bottom: 1px solid var(--line); min-width: 0; }
.menu-item-name { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; flex: 0 0 auto; white-space: nowrap; }
.menu-item-num { color: var(--terracotta-deep); font-weight: 700; font-size: .82rem; margin-right: 2px; flex: 0 0 auto; }
.menu-item-leader { flex: 1 1 auto; min-width: 16px; border-bottom: 2px dotted var(--line); position: relative; top: -4px; }
.menu-item-price { font-weight: 700; color: var(--terracotta-deep); white-space: nowrap; font-size: 1.05rem; flex: 0 0 auto; }
.menu-item-desc { color: var(--ink-soft); font-size: 0.87rem; flex: 0 1 auto; }
.menu-item-desc::before { content: "— "; }

.menu-item-code { color: var(--terracotta); font-size: .68em; font-weight: 700; margin-left: 2px; }

.menu-legend { max-width: 900px; margin: 40px auto 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 40px; }
.menu-legend h3 { font-size: 1.1rem; margin-bottom: 10px; }
.menu-legend > p { color: var(--ink-soft); font-size: .88rem; margin-bottom: 20px; }
.legend-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.legend-cols h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--terracotta-deep); margin-bottom: 10px; }
.legend-row { font-size: .82rem; color: var(--ink-soft); margin-bottom: 5px; }
.legend-row b { color: var(--terracotta); margin-right: 6px; }

.menu-note-box {
  max-width: 760px; margin: 70px auto 0; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 36px; text-align: center; color: var(--ink-soft); font-size: 0.92rem;
}

/* small-portion tables (senior/kids) */
.mini-table { width: 100%; max-width: 560px; margin: 0 auto; border-collapse: collapse; }
.mini-table td { padding: 12px 4px; border-bottom: 1px solid var(--line); }
.mini-table td:last-child { text-align: right; font-weight: 700; color: var(--terracotta-deep); }

/* ============ KONTAKT PAGE ============ */
.contact-hero { padding: 168px 0 70px; background: var(--paper-2); text-align: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 50px; align-items: start; }
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-soft); }
.contact-card h3 { font-size: 1.5rem; margin-bottom: 22px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; font-size: 1.02rem; }
.contact-row .ic { font-size: 1.3rem; margin-top: 2px; }
.contact-row a:hover { color: var(--terracotta-deep); }
.map-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); position: relative; height: 480px; background-size: cover; background-position: center 35%; display: flex; align-items: flex-end; }
.map-card::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(20,12,7,.75), transparent 60%); }
.map-card-inner { position: relative; z-index: 1; padding: 30px; color: #fff8ef; width: 100%; }

/* ============ LEGAL PAGES ============ */
.legal-hero { padding: 168px 0 40px; background: var(--paper-2); }
.legal-body { max-width: 760px; margin: 0 auto; padding: 60px 0 100px; }
.legal-body h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; list-style: disc; }
.legal-body a { color: var(--terracotta-deep); text-decoration: underline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .story-grid, .split, .cta-panel, .contact-grid { grid-template-columns: 1fr; }
  .split-panel.img { min-height: 320px; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .cta-panel { padding: 44px 32px; }
}

@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 0 0 0 30%; background: var(--ink); flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px; gap: 26px; transform: translateX(100%); transition: transform .4s ease; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a:not(.btn) { color: #f2e6d5 !important; font-size: 1.3rem; }
  .nav-toggle { display: block; z-index: 600; }
  .nav-toggle.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2){ opacity: 0; }
  .nav-toggle.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
  .site-header.is-scrolled .nav-toggle.is-open,
  .nav-toggle.is-open { color: #f2e6d5; }

  .hero h1 { max-width: none; }
  .hero-scroll { display: none; }
  .dish-grid { grid-template-columns: 1fr; }
  .gallery-wall { grid-template-columns: repeat(2, 1fr); }
  .polaroid:nth-child(6n+1), .polaroid:nth-child(6n+5) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 64px 0; }
  .review-strip { flex-direction: column; align-items: flex-start; }
  .menu-item-name { white-space: normal; flex-shrink: 1; }
  .menu-item-leader { min-width: 8px; }
}
