/* ═══════════════════════════════════════════════
   La Romantica – style.css
   ═══════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────── */
:root {
  --bg:          #fdf6ec;
  --bg-warm:     #f5e6d0;
  --bg-dark:     #2b1608;
  --bg-mid:      #3d2212;
  --accent:      #c0392b;
  --accent-dark: #962d22;
  --accent-glow: rgba(192,57,43,.18);
  --text:        #3d2b1f;
  --text-mid:    #6b4c3b;
  --text-light:  #9c7a68;
  --border:      #e4cdb5;
  --gold:        #9b7a2e;
  --white:       #ffffff;

  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Source Sans 3', system-ui, sans-serif;

  --nav-h:   72px;
  --max-w:   1160px;
  --radius:  4px;
  --radius-lg: 10px;
  --shadow:  0 4px 24px rgba(61,43,31,.10);
  --shadow-lg: 0 10px 48px rgba(61,43,31,.16);
  --tr:      .25s ease;
}

/* ── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── UTILITIES ──────────────────────────────────── */
.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}
.container-narrow {
  width: min(100% - 2.5rem, 680px);
  margin-inline: auto;
}
.hidden { display: none !important; }

/* ── SCROLL ANIMATIONS ──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in {
  opacity: 0;
  transition: opacity .7s ease;
}
.fade-up.visible,
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--tr), color var(--tr), border-color var(--tr), box-shadow var(--tr);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-full { width: 100%; }
.btn-spin { animation: btn-spin .7s linear infinite; flex-shrink: 0; }
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ── SECTION SHARED ─────────────────────────────── */
.section { padding: 6rem 0; }
.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.section-warm { background: var(--bg-warm); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.section-eyebrow.light { color: #e8b49a; }
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
}
.section-title.light { color: var(--white); }
.section-desc {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--text-mid);
  font-size: 1rem;
}
.section-desc.light { color: rgba(255,255,255,.7); }

/* ── NAVIGATION ─────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: auto;
  min-height: var(--nav-h);
  transition: background var(--tr), box-shadow var(--tr);
}
#site-header:not(.scrolled) { background: transparent; }
#site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(61,43,31,.10);
  border-bottom: 1px solid var(--bg-warm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
  gap: 1.5rem;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  transition: color var(--tr);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--tr);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
#site-header.scrolled .nav-links a { color: var(--text-mid); }
#site-header.scrolled .nav-links a:hover { color: var(--accent); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.lang-sep { color: rgba(255,255,255,.4); }
#site-header.scrolled .lang-sep { color: var(--border); }
.lang-btn {
  color: rgba(255,255,255,.6);
  transition: color var(--tr);
  padding: 2px 4px;
}
.lang-btn.active { color: var(--white); }
.lang-btn:hover  { color: var(--white); }
#site-header.scrolled .lang-btn { color: var(--text-light); }
#site-header.scrolled .lang-btn.active { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}
#site-header.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────── */
#hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,8,2,.55) 0%,
    rgba(20,8,2,.45) 60%,
    rgba(20,8,2,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  color: var(--white);
  max-width: 760px;
}
.hero-eyebrow {
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  margin-bottom: 1rem;
}
.btn-ext {
  font-size: .8em;
  margin-left: .15em;
  opacity: .85;
  display: inline-block;
  transform: translateY(-1px);
}

.hero-logo-img {
  display: block;
  width: min(520px, 72vw);
  height: auto;
  margin-inline: auto;
}
.hero-sub {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 3;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background var(--tr), transform var(--tr);
  padding: 0;
}
.dot.active {
  background: var(--white);
  transform: scale(1.3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  right: 2rem;
  color: rgba(255,255,255,.5);
  z-index: 3;
  animation: bounce 2s infinite;
  transition: color var(--tr);
}
.hero-scroll-hint:hover { color: var(--white); }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── ABOUT STRIP ────────────────────────────────── */
.about-strip {
  background: var(--bg-dark);
  padding: 1.25rem 1.5rem;
}
.about-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--max-w);
  margin-inline: auto;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 2rem;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .04em;
}
.strip-icon { font-size: 1.1rem; }
.strip-divider {
  width: 1px;
  height: 1.5rem;
  background: rgba(255,255,255,.15);
}

/* ── PHONE PILLS STRIP ──────────────────────────── */
.phone-pills-strip {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.phone-pills-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .6rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  font-family: var(--font-b);
  text-decoration: none;
  transition: background var(--tr), border-color var(--tr), color var(--tr), box-shadow var(--tr);
}
.phone-pill svg { color: var(--accent); flex-shrink: 0; }
.phone-pill-label {
  font-size: .75rem;
  color: var(--text-light);
  letter-spacing: .03em;
}
.phone-pill-num { font-weight: 600; letter-spacing: .01em; }
.phone-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px var(--accent-glow);
}
.phone-pill:hover svg { color: var(--white); }
.phone-pill:hover .phone-pill-label { color: rgba(255,255,255,.75); }

/* ── MENU SECTION ───────────────────────────────── */
#menu { background: var(--bg); }

.menu-tabs-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: var(--bg);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.menu-tabs {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(192,57,43,.35) transparent;
  padding: 0 .5rem .4rem;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { height: 3px; }
.menu-tabs::-webkit-scrollbar-track { background: transparent; }
.menu-tabs::-webkit-scrollbar-thumb { background: rgba(192,57,43,.35); border-radius: 2px; }
.tab {
  flex-shrink: 0;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1.5px solid transparent;
  transition: all var(--tr);
}
.tab:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.tab.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.menu-body { display: flex; flex-direction: column; gap: 3rem; }

.menu-category {}
.cat-title {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  padding-bottom: .6rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: .85rem;
  position: relative;
}
.cat-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 3rem; height: 2px;
  background: var(--accent);
}
.cat-note {
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(192,57,43,.1);
  padding: .2rem .6rem;
  border-radius: 100px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  column-gap: 3.5rem;
  row-gap: 0;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.item-info { flex: 1; min-width: 0; }
.item-name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}
.item-desc {
  font-style: italic;
  font-size: .83rem;
  color: var(--text-light);
  margin-top: .2rem;
  line-height: 1.45;
}
.item-price {
  flex-shrink: 0;
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  padding-top: .1rem;
}
.item-price.dual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
  font-size: 1rem;
}
.item-price.dual span:first-child { color: var(--text-mid); font-weight: 600; }
.item-price.dual span:last-child  { color: var(--accent); font-weight: 700; }

.menu-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ── WEEKLY SPECIALS ────────────────────────────── */
.specials-meta {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.wm-day {
  margin-bottom: 3rem;
}
.wm-day--past {
  opacity: 0.38;
  pointer-events: none;
}
.wm-day--past .wm-meal-card {
  box-shadow: none;
}
.wm-day-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.wm-day-date {
  font-size: .85em;
  font-weight: 400;
  color: var(--text-light);
}
.wm-day-badge {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  background: var(--accent);
  color: var(--white);
  padding: .2em .55em;
  border-radius: 99px;
  margin-left: .1rem;
}

.wm-meals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.wm-meal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 8px rgba(61,43,31,.07);
  border: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.wm-meal-card:hover { box-shadow: 0 4px 18px rgba(61,43,31,.12); }
.wm-meal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
}
.wm-meal-name { font-weight: 600; font-size: .97rem; color: var(--text); line-height: 1.3; }
.wm-meal-price {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.wm-meal-sides {
  font-size: .79rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: .3rem;
  line-height: 1.4;
}

.wm-empty {
  color: var(--text-light);
  font-style: italic;
  font-size: .92rem;
  padding: .5rem 0;
}
.wm-closed {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: .5rem 0;
}

.wm-pizza-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .85rem;
  padding: .75rem 1.25rem;
  background: rgba(192,57,43,.05);
  border: 1px solid rgba(192,57,43,.2);
  border-radius: var(--radius);
}
.wm-pizza-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  white-space: nowrap;
}
.wm-pizza-name { font-weight: 600; font-size: .95rem; color: var(--text); flex: 1; }
.wm-pizza-price {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.specials-note {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── KONTAKT QUICKBAR ───────────────────────────── */
.kontakt-quickbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.kontakt-quick-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--tr), box-shadow var(--tr);
  box-shadow: 0 1px 4px rgba(61,43,31,.06);
}
.kontakt-quick-item:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(192,57,43,.12);
  color: var(--accent);
}
.kontakt-quick-icon { font-size: 1rem; line-height: 1; }
.kontakt-quick-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}
.kontakt-quick-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.kontakt-form-wrap {
  max-width: 640px;
  margin-inline: auto;
}
.kontakt-form-title {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ── RESERVATION ────────────────────────────────── */
#reservation { background: var(--bg-warm); }

.reservation-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-row.form-row-three {
  grid-template-columns: 1fr 1fr 1fr;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group:last-child { margin-bottom: 1.25rem; }
label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
}
input, select, textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
input.error, select.error { border-color: var(--accent); }
textarea { resize: vertical; min-height: 90px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%239c7a68' stroke-width='2'%3E%3Cpolyline points='1 1 6 7 11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-right: 2.5rem;
}
.form-note {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}
.form-legal {
  margin-top: 1rem;
  padding: .8rem 1rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.form-legal-row {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.form-legal-row + .form-legal-row {
  margin-top: .55rem;
  padding-top: .55rem;
  border-top: 1px solid var(--border);
}
.form-legal-row a, .form-legal-row .info-link {
  font-size: inherit;
  font-weight: inherit;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-legal-row a:hover, .form-legal-row .info-link:hover { color: var(--accent-dark); }

.res-error {
  background: #fef2f2;
  color: var(--accent-dark);
  border: 1px solid rgba(192,57,43,.25);
  border-radius: var(--radius);
  padding: .875rem 1rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  line-height: 1.5;
}

.res-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.res-success h3 {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.res-success p { color: var(--text-mid); }

/* ── CONTACT / FIND US ──────────────────────────── */
#contact { background: var(--bg); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-block {}
.info-label {
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}
.info-block p, .info-block a {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.info-link { color: var(--text); font-size: 1.2rem; font-weight: 600; }
.info-link:hover { color: var(--accent); }

.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td {
  padding: .3rem 0;
  font-size: .95rem;
  color: var(--text-mid);
}
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--text); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map iframe {
  width: 100%; height: 100%;
  min-height: 360px;
  border: none;
  display: block;
}
.map-placeholder {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}
.map-placeholder p { font-size: .95rem; margin-bottom: .4rem; }
.map-sub { font-size: .8rem; color: var(--text-light); opacity: .7; }
#maps-consent-wrap { width: 100%; height: 100%; min-height: 360px; display: flex; align-items: center; justify-content: center; }
.map-consent-placeholder { width: 100%; padding: 2rem 1.5rem; text-align: center; }
.map-consent-inner { max-width: 340px; margin: 0 auto; }
.map-consent-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.map-consent-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.map-consent-text { font-size: .82rem; color: var(--text-light); line-height: 1.5; margin-bottom: 1rem; }
.map-consent-note { font-size: .75rem; margin-top: .75rem; color: var(--text-light); }

/* ── HOMEPAGE SHARED ────────────────────────────── */
.hp-section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 5rem 1.5rem;
}
.section-eyebrow {
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.section-heading {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2.75rem;
  line-height: 1.15;
}

/* ── FEATURED MENU ───────────────────────────────── */
.hp-featured { background: var(--bg); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.featured-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  transition: box-shadow .2s, transform .2s;
}
.featured-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
.featured-card-cat {
  font-family: var(--font-b);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}
.featured-card-name {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin: 0;
}
.featured-card-desc {
  font-size: .88rem;
  color: var(--text-mid);
  flex: 1;
  margin: 0;
}
.featured-card-price {
  font-family: var(--font-b);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-top: .5rem;
}
.featured-cta { text-align: center; }

/* ── OPENING HOURS + LOCATION ────────────────────── */
.hp-hours-loc { background: var(--bg-warm); }
.hp-hours-loc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hours-block .section-heading { margin-bottom: 1.5rem; }
.hours-line {
  font-family: var(--font-b);
  font-size: .95rem;
  color: var(--text-mid);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-line:first-of-type { border-top: 1px solid var(--border); }
.hours-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.hours-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-b);
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.hours-phone:hover { color: var(--accent); }
.hours-phone-label {
  font-size: .75rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: .05em;
}
.hours-address {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text-mid);
}
.loc-map { height: 100%; min-height: 280px; }
.loc-map iframe { width: 100%; height: 100%; min-height: 280px; border-radius: 10px; display: block; }
@media (max-width: 700px) {
  .hp-hours-loc-inner { grid-template-columns: 1fr; }
  .loc-map { min-height: 240px; }
}

/* ── REVIEWS ─────────────────────────────────────── */
.hp-reviews { background: var(--bg); }
.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  touch-action: pan-y;
}
.reviews-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}
.review-stars {
  color: var(--accent);
  font-size: 1.25rem;
  letter-spacing: .12em;
}
.review-text {
  font-family: var(--font-h);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-name {
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.review-date {
  font-size: .82rem;
  color: var(--text-light);
}
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.reviews-nav-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color var(--tr), color var(--tr), background var(--tr);
  flex-shrink: 0;
}
.reviews-nav-btn:hover { border-color: var(--accent); color: var(--accent); }
.reviews-dots {
  display: flex;
  gap: .5rem;
}
.reviews-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
}
.reviews-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

/* ── FOOTER ─────────────────────────────────────── */
#site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 1.5rem 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.footer-logo img { display: none; }
.footer-tagline  { display: none; }

/* three-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .9rem;
}

/* nav column */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-nav a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--tr);
  width: fit-content;
}
.footer-nav a:hover { color: var(--white); }

/* social links under nav */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: .9rem;
}
.footer-social a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: color var(--tr);
}
.footer-social a:hover { color: var(--white); }

/* phones column */
.footer-phone {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  margin-bottom: .65rem;
  text-decoration: none;
  width: fit-content;
}
.footer-phone:last-child { margin-bottom: 0; }
.footer-phone-label {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.footer-phone span:last-child {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  transition: color var(--tr);
}
.footer-phone:hover span:last-child { color: var(--white); }

/* hours column */
.footer-hours {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.footer-addr-link {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-addr-link:hover { color: var(--white); text-decoration: underline; }

/* bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  padding: 1.1rem 0 1.4rem;
  font-size: .75rem;
}
.footer-copy { color: rgba(255,255,255,.3); }
.footer-made {
  color: rgba(255,255,255,.3);
  transition: color var(--tr);
}
.footer-made:hover { color: rgba(255,255,255,.7); }
.footer-legal {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.2);
}
.footer-legal a {
  color: rgba(255,255,255,.3);
  transition: color var(--tr);
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── CLOSED BANNER ──────────────────────────────── */
.closed-banner {
  background: #7f1d1d;
  color: #fecaca;
  text-align: center;
  padding: .75rem 1.5rem;
  font-size: .92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.closed-banner-icon { font-size: 1.1rem; }

body.restaurant-closed a[href^="tel:"] {
  pointer-events: none;
  opacity: 0.4;
  cursor: default;
  text-decoration: line-through;
}

/* ── PHONE ENTRIES ───────────────────────────────── */
.phone-entry { display: flex; align-items: baseline; gap: .6rem; margin-bottom: .35rem; }
.phone-entry:last-child { margin-bottom: 0; }
.phone-label-txt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

/* ── INNER PAGES ─────────────────────────────────── */
.inner-main { padding-top: var(--header-h, var(--nav-h)); }

.page-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  background: var(--bg);
}
.page-hero.section-warm { background: var(--bg-warm); }
.page-hero.section-dark { background: var(--bg-dark); }

.page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  margin-top: .4rem;
}
.page-hero-title.light { color: var(--white); }

.page-hero-desc {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}
.page-hero-desc.light { color: rgba(255,255,255,.7); }

.nav-active { color: var(--accent) !important; }
.nav-active::after { transform: scaleX(1) !important; }

/* ── CONTACT / RESERVATION LAYOUT ───────────────── */
.contact-reservation-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.info-link-lg { font-size: 1.5rem; font-weight: 700; }

.contact-form-title {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* ── MENU PAGE ───────────────────────────────────── */
.menu-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2.5rem;
  padding-bottom: .25rem;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .specials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-reservation-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, box-shadow .35s;
    box-shadow: none;
  }
  .nav-links.open {
    max-height: 500px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
  }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text) !important;
    font-size: .9rem;
  }
  .nav-links a::after { display: none; }

  .lang-sep { color: var(--border) !important; }
  .lang-btn  { color: var(--text-light) !important; }
  .lang-btn.active { color: var(--accent) !important; }

  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: center; }

  .about-strip-inner { gap: 0; }
  .strip-item { padding: .5rem 1rem; font-size: .8rem; }
  .strip-divider { display: none; }

  .form-row,
  .form-row.form-row-three { grid-template-columns: 1fr; }
  .reservation-form { padding: 1.75rem 1.25rem; }

  .specials-grid { grid-template-columns: 1fr 1fr; }

  .menu-grid { grid-template-columns: 1fr; }

  .section { padding: 4rem 0; }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .footer-legal { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .specials-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .strip-item { width: 50%; justify-content: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:last-child { grid-column: auto; }
}

/* ── LEGAL PAGES ─────────────────────────────────── */
.legal-content {
  padding: .5rem 0 3rem;
  line-height: 1.75;
}
.legal-content h2 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.25rem 0 .6rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h2:first-of-type { margin-top: 1rem; }
.legal-content p { margin-bottom: .85rem; color: var(--text-mid); }
.legal-content ul { margin: .5rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--text-mid); margin-bottom: .35rem; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-updated {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.cookie-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.cookie-table th,
.cookie-table td {
  padding: .6rem .85rem;
  border: 1px solid var(--border);
  vertical-align: top;
}
.cookie-table th {
  background: var(--bg-warm);
  font-weight: 600;
  text-align: left;
  color: var(--text);
}
.cookie-table td { color: var(--text-mid); }
.cookie-table code {
  background: var(--bg-warm);
  padding: .1em .35em;
  border-radius: var(--radius);
  font-size: .8rem;
  color: var(--accent-dark);
}

/* ── Allergen badges & legend ────────────────────────────────────────── */
.item-allergens { display: flex; flex-wrap: wrap; gap: .25rem; margin-top: .35rem; }

.allergen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 .2rem;
  border-radius: 50%;
  background: rgba(192,57,43,.10);
  font-size: .85rem;
  line-height: 1;
  cursor: default;
  border: 1px solid rgba(192,57,43,.22);
}

.allergen-legend {
  margin: 2rem 0 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  background: var(--bg-warm);
}
.allergen-legend summary {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.allergen-legend summary::before { content: '▸'; font-size: .7rem; color: var(--accent); transition: transform .2s; }
.allergen-legend[open] summary::before { transform: rotate(90deg); }
.allergen-legend summary::-webkit-details-marker { display: none; }

.allergen-legend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .5rem .75rem;
  margin-top: .75rem;
}
.allergen-legend-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-mid);
}
.allergen-legend-note {
  margin-top: .75rem;
  font-size: .78rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── COOKIE BANNER ──────────────────────────────── */
/* ── COOKIE MODAL ───────────────────────────────────── */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9998;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.cookie-overlay[hidden] { display: none; }
.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, calc(100vw - 2rem));
  background: #2a1a12;
  color: #f0e6da;
  border-radius: 12px;
  padding: 2rem 2rem 1.75rem;
  z-index: 9999;
  box-shadow: 0 8px 48px rgba(0,0,0,.55);
  text-align: center;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-icon {
  font-size: 2.25rem;
  margin-bottom: .75rem;
  display: block;
}
.cookie-banner-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f0e6da;
  margin: 0 0 .75rem;
  font-family: Georgia, serif;
  letter-spacing: .02em;
}
.cookie-banner-text {
  margin: 0 0 1.5rem;
  font-size: .875rem;
  line-height: 1.65;
  color: #c8b9aa;
}
.cookie-banner-text a { color: #e0897d; text-decoration: underline; }
.cookie-banner-text a:hover { color: #fff; }
.cookie-banner-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cookie-banner-link {
  display: block;
  margin-top: 1rem;
  font-size: .78rem;
  color: #7a6558;
  text-decoration: underline;
}
.cookie-banner-link:hover { color: #c8b9aa; }
.cookie-banner-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .65rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex: 1;
  max-width: 180px;
}
.cookie-banner-btn:hover { background: #a93226; }
.cookie-banner-btn--outline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.25);
}
.cookie-banner-btn--outline:hover { background: rgba(255,255,255,.08); color: #fff; }
