/* =========================================================================
   MADLOBA — Georgisches Restaurant · Event & Hochzeitslocation Berlin
   Design system & styles
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --cream:      #f7f3ec;
  --cream-2:    #efe7d9;
  --paper:      #fffdf9;
  --ink:        #1b1714;
  --ink-soft:   #2b2520;
  --muted:      #6d6359;
  --muted-2:    #8a7f73;
  --wine:       #7a1f2b;
  --wine-deep:  #4f141d;
  --wine-bright:#9c2a38;
  --gold:       #c2a25a;
  --gold-soft:  #d9c290;
  --line:       rgba(27, 23, 20, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 20px rgba(27, 23, 20, 0.08);
  --shadow-md: 0 18px 50px rgba(27, 23, 20, 0.16);
  --shadow-lg: 0 30px 80px rgba(27, 23, 20, 0.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Language toggle visibility ---------- */
[data-lang] { display: none; }
html[lang="de"] [data-lang="de"] { display: inline; }
html[lang="en"] [data-lang="en"] { display: inline; }
/* block-level translatable wrappers */
html[lang="de"] [data-lang="de"].lang-block,
html[lang="en"] [data-lang="en"].lang-block { display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: 0.005em; }

.kicker {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.kicker.centered { justify-content: center; }
.kicker.centered::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.kicker.light { color: var(--gold-soft); }

.section-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 500;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}
.section-title em { font-style: italic; color: var(--wine); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--muted);
  font-weight: 300;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 110px); }
.center { text-align: center; }
.eyebrow-num {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05em 2.2em;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--wine); color: #fff; }
.btn--primary:hover { background: var(--wine-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: currentColor; color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--light { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--sm { padding: 0.8em 1.5em; font-size: 0.74rem; }

/* ---- Premium CTA shimmer (diagonal light streak, transform + opacity only) ---- */
.btn--shimmer { position: relative; overflow: hidden; }
.btn--shimmer::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -10%;
  width: 32%;
  height: 220%;
  --shimmer-alpha: 0.5;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,var(--shimmer-alpha)) 50%, rgba(255,255,255,0) 100%);
  filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transform: rotate(22deg) translate(-360%, -8%);
  animation: btnShimmer 6s linear infinite;
  will-change: transform, opacity;
}
@keyframes btnShimmer {
  0%   { opacity: 0; transform: rotate(22deg) translate(-360%, -8%); }
  6%   { opacity: 1; }
  40%  { opacity: 1; }
  46%  { opacity: 0; transform: rotate(22deg) translate(360%, 8%); }
  100% { opacity: 0; transform: rotate(22deg) translate(360%, 8%); }
}
.btn--shimmer:hover::after { --shimmer-alpha: 0.82; animation-duration: 4.2s; }

.link-arrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: gap 0.35s var(--ease), border-color 0.35s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform 0.35s var(--ease); }
.link-arrow:hover { gap: 1em; border-color: var(--gold); }
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow.light { color: var(--gold-soft); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.3rem;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header.scrolled {
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.85rem;
}

/* Brand / logo (CSS wordmark — replaceable with official asset) */
.brand { line-height: 1; text-align: left; transition: color 0.4s var(--ease); }
.brand__word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  display: block;
  color: inherit;
}
.brand__sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.56rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.85;
}
/* On transparent hero, header text is light */
.header:not(.scrolled) .brand,
.header:not(.scrolled) .nav__link,
.header:not(.scrolled) .lang-switch,
.header:not(.scrolled) .nav__toggle { color: #fff; }
.header:not(.scrolled) .nav__link::after { background: var(--gold-soft); }

.nav { display: flex; align-items: center; gap: 2.4rem; }
.nav__list { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--wine);
  transition: width 0.35s var(--ease);
}
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1.3rem; }

.lang-switch {
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  font-weight: 400;
}
.lang-switch button {
  padding: 0.25em 0.45em;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
  text-transform: uppercase;
}
.lang-switch button.active { opacity: 1; font-weight: 500; }
.lang-switch .sep { opacity: 0.4; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px; height: 22px;
  justify-content: center;
  z-index: 120;
}
.nav__toggle span {
  display: block; height: 1.5px; width: 100%;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: var(--ink) center/cover no-repeat;
  z-index: -2;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,14,0.55) 0%, rgba(20,16,14,0.25) 35%, rgba(20,16,14,0.65) 100%),
    radial-gradient(120% 90% at 50% 40%, rgba(20,16,14,0.1) 0%, rgba(20,16,14,0.7) 100%);
  z-index: -1;
}
.hero__inner { max-width: 880px; padding-inline: var(--gutter); padding-top: 80px; }
.hero__greeting {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-soft);
  margin-bottom: 1.6rem;
}
.hero__title {
  font-size: clamp(3.6rem, 11vw, 8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 0.98;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.hero__tag { display:block; font-style: italic; font-size: 0.42em; font-weight: 400; letter-spacing: 0.06em; color: var(--gold-soft); margin-top: 0.4em; }
.hero__word { display: block; }
.hero__word > span { display: inline-block; will-change: transform, opacity; }

/* ---- Hero entry animations (on page load) ---- */
@keyframes heroRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes heroLetter { 0% { opacity: 0; transform: translateY(0.6em) rotate(4deg); } 60% { opacity: 1; } 100% { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

.hero__greeting  { opacity: 0; animation: heroRise 0.9s var(--ease) 0.15s both; }
.hero__word > span { opacity: 0; animation: heroLetter 0.72s var(--ease) both; animation-delay: calc(0.4s + var(--i, 0) * 0.075s); }
.hero__tag       { opacity: 0; animation: heroRise 0.95s var(--ease) 1.05s both; }
.hero__sub       { opacity: 0; animation: heroRise 0.95s var(--ease) 1.28s both; }
.hero__badge-wrap{ opacity: 0; animation: heroRise 0.95s var(--ease) 1.5s both; }
.hero__cta       { opacity: 0; animation: heroRise 0.95s var(--ease) 1.72s both; }
.hero__scroll    { opacity: 0; animation: heroFade 1.2s var(--ease) 2.15s both; }
.hero__sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1.8rem;
  color: rgba(255,255,255,0.92);
}
.hero__cta { margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 46px;
  background: linear-gradient(rgba(255,255,255,0.7), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Google rating badge ---------- */
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  padding: 0.7rem 1.25rem;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-sans);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gbadge:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gbadge__g { width: 24px; height: 24px; flex: none; }
.gbadge__txt { text-align: left; line-height: 1.25; }
.gbadge__score { font-weight: 500; font-size: 0.98rem; display: flex; align-items: center; gap: 0.4rem; }
.gbadge__score b { font-size: 1.05rem; font-weight: 600; }
.gstars { display: inline-flex; gap: 1px; }
.gstars svg { width: 15px; height: 15px; }
.gbadge__count { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted); }
.hero .gbadge { margin: 0 auto 0.2rem; }
.hero__badge-wrap { margin-bottom: 2rem; display:flex; justify-content:center; }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%; aspect-ratio: 3/3.5; object-fit: cover;
  border-radius: 3px; box-shadow: var(--shadow-md);
}
.about__media::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold); border-radius: 3px; z-index: -1;
}
.about__body p { margin-top: 1.4rem; color: var(--muted); }
.about__body p.lead { color: var(--ink-soft); }
.about__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  margin-top: 2rem;
  padding-left: 1.6rem;
  border-left: 2px solid var(--gold);
}
.about__quote cite { display:block; font-family: var(--font-sans); font-style: normal; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 0.9rem; }

.stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem,5vw,3.5rem); margin-top: 2.6rem; }
.stat__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; color: var(--wine); line-height: 1; }
.stat__label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

/* =========================================================================
   MENU / SPECIALITIES
   ========================================================================= */
.menu { background: var(--ink); color: var(--cream); }
.menu .section-title { color: var(--cream); }
.menu .lead { color: rgba(247,243,236,0.7); }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.dish {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--ink-soft);
}
.dish__img { aspect-ratio: 4/5; overflow: hidden; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.dish:hover .dish__img img { transform: scale(1.07); }
.dish__body {
  position: absolute; inset: auto 0 0 0;
  padding: 1.5rem 1.4rem 1.4rem;
  background: linear-gradient(transparent, rgba(15,12,10,0.55) 30%, rgba(15,12,10,0.92));
}
.dish__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: #fff; }
.dish__name span:first-child { display:block; font-size: 0.72rem; font-family: var(--font-sans); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 0.3rem; }
.dish__desc { font-size: 0.86rem; color: rgba(247,243,236,0.72); margin-top: 0.5rem; line-height: 1.5; }
.menu__cta { margin-top: 3.2rem; display:flex; justify-content:center; gap: 1rem; flex-wrap: wrap; }

/* =========================================================================
   FEATURE BANDS (wine / events split)
   ========================================================================= */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}
.feature__media { overflow: hidden; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.feature__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 7vw, 6rem);
}
.feature--wine .feature__content { background: var(--wine-deep); color: var(--cream); }
.feature--wine .section-title { color: #fff; }
.feature--wine .feature__content p { color: rgba(247,243,236,0.78); margin-top: 1.3rem; }
.feature--wine .kicker { color: var(--gold-soft); }
.feature--events .feature__content { background: var(--cream-2); }
.feature--events .feature__content p { color: var(--muted); margin-top: 1.3rem; }
.feature--reverse .feature__media { order: 2; }

.feature__list { margin-top: 1.8rem; display: grid; gap: 0.9rem; }
.feature__list li { display: flex; align-items: baseline; gap: 0.8rem; font-size: 0.98rem; }
.feature__list li::before { content: "✦"; color: var(--gold); font-size: 0.8rem; }

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 3.2rem;
}
.gallery__item { overflow: hidden; border-radius: 3px; cursor: pointer; position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: "+"; position: absolute; inset: 0; display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size: 2rem; color: #fff;
  background: rgba(27,23,20,0); opacity: 0; transition: all 0.45s var(--ease);
}
.gallery__item:hover::after { background: rgba(27,23,20,0.35); opacity: 1; }
.gallery__item.tall { grid-row: span 2; }
.gallery__item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,12,10,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 3px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 24px; right: 30px; font-size: 2rem; color: #fff; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.4rem; color: #fff; padding: 1rem; opacity: 0.7; transition: opacity 0.3s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav.prev { left: 1.5vw; }
.lightbox__nav.next { right: 1.5vw; }

/* =========================================================================
   REVIEWS BAND
   ========================================================================= */
.reviews { background: var(--cream-2); }
.reviews__head { display:flex; flex-direction: column; align-items:center; text-align:center; }
.reviews__badge-lg {
  display: inline-flex; align-items: center; gap: 1.2rem;
  background: var(--paper); padding: 1.3rem 2rem; border-radius: 6px;
  box-shadow: var(--shadow-sm); margin-top: 1.8rem;
}
.reviews__badge-lg .gbadge__g { width: 40px; height: 40px; }
.reviews__big { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; color: var(--ink); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3.4rem; }
.review-card {
  background: var(--paper); padding: 2.2rem 2rem; border-radius: 4px;
  box-shadow: var(--shadow-sm); display:flex; flex-direction:column; gap: 1rem;
}
.review-card .gstars svg { width: 17px; height: 17px; }
.review-card__text { font-family: var(--font-display); font-style: italic; font-size: 1.22rem; line-height: 1.5; color: var(--ink-soft); }
.review-card__author { display:flex; align-items:center; gap: 0.8rem; margin-top: auto; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--wine); color:#fff; display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-size: 1.1rem; }
.review-card__name { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; }
.review-card__meta { font-size: 0.72rem; color: var(--muted); }

/* =========================================================================
   RESERVE CTA
   ========================================================================= */
.reserve {
  position: relative; color: #fff; text-align: center;
  background: var(--ink) center/cover no-repeat fixed;
}
.reserve__overlay { position:absolute; inset:0; background: rgba(15,12,10,0.7); }
.reserve__inner { position: relative; z-index: 1; }
.reserve .section-title { color: #fff; }
.reserve p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 1.3rem auto 0; }
.reserve__cta { margin-top: 2.4rem; display:flex; gap: 1rem; justify-content:center; flex-wrap: wrap; }
.reserve__phone { margin-top: 2rem; font-family: var(--font-display); font-size: 1.8rem; }
.reserve__phone a { border-bottom: 1px solid var(--gold); }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: stretch; }
.contact__info { display:flex; flex-direction: column; }
.info-block { padding-block: 1.4rem; border-bottom: 1px solid var(--line); }
.info-block:first-of-type { border-top: 1px solid var(--line); }
.info-block__label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display:flex; align-items:center; gap:0.6rem; }
.info-block__value { font-size: 1.12rem; margin-top: 0.4rem; color: var(--ink); }
.info-block__value a:hover { color: var(--wine); }
.contact__socials { display:flex; gap: 1rem; margin-top: 1.8rem; }
.contact__socials a {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  display:flex; align-items:center; justify-content:center; transition: all 0.35s var(--ease);
}
.contact__socials a:hover { background: var(--wine); color:#fff; border-color: var(--wine); transform: translateY(-3px); }
.contact__socials svg { width: 19px; height: 19px; }
.contact__map { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-sm); min-height: 420px; }
.contact__map iframe { width:100%; height:100%; min-height: 420px; border:0; filter: grayscale(0.2) contrast(1.05); }
.map-consent { height:100%; min-height: 420px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap: 0.9rem; padding: 2rem; background: var(--cream-2); }
.map-consent__pin { width: 44px; height: 44px; color: var(--wine); }
.map-consent__title { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.map-consent__note { font-size: 0.82rem; color: var(--muted); max-width: 340px; line-height: 1.5; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ink); color: rgba(247,243,236,0.7); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer__top { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.footer .brand__word { color: var(--cream); font-size: 2.1rem; }
.footer .brand__sub { color: var(--gold-soft); }
.footer__about { margin-top: 1.3rem; max-width: 320px; font-size: 0.92rem; line-height: 1.7; }
.footer__col h4 { font-family: var(--font-sans); font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.2rem; }
.footer__col a, .footer__col p { display:block; font-size: 0.92rem; padding-block: 0.35rem; color: rgba(247,243,236,0.7); transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom { display:flex; justify-content: space-between; align-items:center; gap: 1rem; flex-wrap: wrap; padding-top: 2rem; font-size: 0.78rem; }
.footer__bottom a:hover { color: var(--gold-soft); }
.footer__legal { display:flex; gap: 1.5rem; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* =========================================================================
   SUB-PAGE (Impressum / Datenschutz)
   ========================================================================= */
.page-hero { padding: clamp(140px, 18vh, 200px) 0 clamp(40px,6vw,70px); background: var(--cream-2); text-align:center; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.legal { padding-block: clamp(50px, 7vw, 90px); }
.legal__wrap { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: 1.7rem; margin-top: 2.6rem; margin-bottom: 0.8rem; color: var(--wine); }
.legal h3 { font-family: var(--font-sans); font-weight: 500; font-size: 1.02rem; letter-spacing: 0.04em; margin-top: 1.6rem; margin-bottom: 0.4rem; }
.legal p { margin-bottom: 1rem; color: var(--ink-soft); }
.legal p.muted, .legal small { color: var(--muted); }
.legal a { color: var(--wine); border-bottom: 1px solid var(--line); }
.legal a:hover { border-color: var(--wine); }
.legal strong { font-weight: 500; }
.legal ul { margin: 0 0 1rem 1.2rem; list-style: disc; }
.legal ul li { margin-bottom: 0.4rem; color: var(--ink-soft); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline:auto; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    background: var(--cream); flex-direction: column; justify-content: center;
    gap: 0; padding: 3rem 2.4rem; transform: translateX(100%);
    transition: transform 0.5s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav-open .nav { transform: translateX(0); }
  .header:not(.scrolled) .nav .nav__link { color: var(--ink); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav__link { font-size: 1.05rem; padding-block: 0.9rem; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__actions { flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-top: 2rem; width: 100%; }
  .header:not(.scrolled) .nav .lang-switch { color: var(--ink); }
  body.nav-open { overflow: hidden; }
  .nav__backdrop { position: fixed; inset:0; background: rgba(15,12,10,0.5); opacity:0; pointer-events:none; transition: opacity 0.4s; z-index: 90; }
  .nav-open .nav__backdrop { opacity:1; pointer-events:auto; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__media { max-width: 460px; }
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media img { min-height: 320px; max-height: 60vh; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .reserve { background-attachment: scroll; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .dish-grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item.wide { grid-column: span 2; }
  .stats { gap: 1.6rem; }
  .stat__num { font-size: 2.1rem; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
