/* ==========================================================================
   Cá Gỗ Haldensleben — Vietnamesisch-japanisches Restaurant
   Palette sampled from the Cá Gỗ menu (dark lacquer + gold + cream).
   ========================================================================== */

/* ── Local fonts (self-hosted) ───────────────────────────────────────── */
@font-face {
  font-family: 'CDA Independence Deck';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/CDAIndependenceDeck-ExtraBold.woff2') format('woff2');
}
@font-face {
  font-family: 'CDA Independence Deck';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/CDAIndependenceDeck-Black.woff2') format('woff2');
}
@font-face {
  font-family: 'CDA Independence Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/CDAIndependenceText-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'CDA Independence Text';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/CDAIndependenceText-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'CDA Independence Text';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/CDAIndependenceText-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'CDA Independence Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/CDAIndependenceText-Bold.woff2') format('woff2');
}

:root {
  /* ── Brand palette (sampled from menu + interior) ────────────────── */
  --ink:        #120C08;   /* primary background — near-black lacquer brown */
  --ink-800:    #1E150E;   /* alternate section background — still dark, one step up */
  --ink-700:    #241A11;   /* card background on dark */
  --brown-700:  #3C2B1B;   /* plaque / title-box brown */
  --brown-600:  #4C3624;

  --gold-700:   #8C6B24;   /* deep gold / borders */
  --gold-500:   #C9A227;   /* mid gold */
  --gold-400:   #D9B558;   /* primary accent gold */
  --gold-300:   #E8CE86;   /* bright gold — headings on dark */
  --gold-100:   #F3E4C0;   /* pale gold text */

  --text-on-dark:        #EDE3CC;
  --text-muted-on-dark:  rgba(237,227,204,.68);
  --border-on-dark:      rgba(217,181,88,.22);

  --font-display: 'CDA Independence Deck', 'Arial Narrow', sans-serif;
  --font-body:    'CDA Independence Text', system-ui, -apple-system, sans-serif;

  --radius:    16px;
  --radius-sm: 8px;
  --ease:      0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 10px rgba(0,0,0,.28);
  --shadow-md: 0 10px 30px rgba(0,0,0,.35);
  --shadow-lg: 0 20px 54px rgba(0,0,0,.45);

  --max-w:    1200px;
  --header-h: 76px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-on-dark);
  background: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--gold-500); color: var(--ink);
  padding: .6rem 1rem; border-radius: var(--radius-sm);
  z-index: 2000; transition: top var(--ease);
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}

section[id] { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, .kicker { font-family: var(--font-display); font-weight: 800; letter-spacing: .01em; }
h1, h2, h3 { color: var(--gold-100); line-height: 1.1; text-transform: uppercase; }
p { color: var(--text-muted-on-dark); }

.kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--gold-400);
  margin-bottom: .7rem;
}
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: .7rem; }
.section-sub { color: var(--text-muted-on-dark); max-width: 56ch; }
.section-head { text-align: center; margin-bottom: 2.8rem; }
.section-head .section-sub { margin-inline: auto; }
.section-cta { display: flex; justify-content: center; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }

.prose p { margin-bottom: 1rem; max-width: 68ch; color: var(--text-muted-on-dark); }
.prose h2 { font-size: 1.4rem; margin: 2rem 0 .8rem; color: var(--gold-300); }
.prose h2:first-child { margin-top: 0; }
.prose--centered { max-width: 68ch; margin-inline: auto; text-align: center; }
.prose--centered p { margin-inline: auto; }

/* ── Ornaments ─────────────────────────────────────────────────── */
.corner-ornament {
  position: absolute; width: 46px; height: 46px;
  color: var(--gold-400); opacity: .8; z-index: 2;
}
.corner-ornament--tl { top: 20px; left: 20px; }
.corner-ornament--tr { top: 20px; right: 20px; transform: scaleX(-1); }
.corner-ornament--bl { bottom: 20px; left: 20px; transform: scaleY(-1); }
.corner-ornament--br { bottom: 20px; right: 20px; transform: scale(-1,-1); }

.ornament-divider { width: min(260px, 70%); height: 18px; margin: 1.6rem auto; color: var(--gold-400); }
.divider--hero { margin: 1.4rem auto; }
.divider--section { display: block; width: min(260px, 70%); margin: 0 auto 2.5rem; color: var(--gold-700); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-300), var(--gold-400)); box-shadow: var(--shadow-md); }

.btn-secondary { background: transparent; color: var(--gold-300); border: 2px solid var(--gold-500); }
.btn-secondary:hover { background: rgba(217,181,88,.12); }

.btn-outline { border: 2px solid var(--gold-400); color: var(--gold-300); }
.btn-outline:hover { background: var(--gold-400); color: var(--ink); }

.btn-large { padding: 1rem 2.1rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .82rem; }

/* ── Header / Nav ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  height: var(--header-h);
  background: rgba(18,12,8,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-on-dark);
  transition: box-shadow var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1rem;
}
.logo-link { display: flex; align-items: center; gap: .6rem; }
.logo-img { height: 48px; width: auto; border-radius: 100%; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--gold-300);
  text-transform: uppercase;
}
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .55rem;
  letter-spacing: .16em;
  color: var(--text-muted-on-dark);
  text-transform: uppercase;
  margin-top: .25rem;
}

.main-nav { display: flex; align-items: center; }
#nav-menu { display: flex; align-items: center; gap: .1rem; }
#nav-menu li a {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .95rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-on-dark);
  border-radius: 999px;
  transition: color var(--ease), background var(--ease);
}
#nav-menu li a:hover { color: var(--gold-300); }
#nav-menu li a svg { width: 14px; height: 14px; flex-shrink: 0; }
#nav-menu li a.active { color: var(--ink); background: var(--gold-400); }
.nav-close-item, .nav-lang-mobile, .nav-cta-mobile { display: none; }

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

.lang-switch { display: flex; align-items: center; gap: .3rem; font-size: .8rem; font-weight: 700; }
.lang-switch__item { padding: .3rem .5rem; border-radius: 6px; color: var(--text-muted-on-dark); }
.lang-switch__item.is-active { color: var(--ink); background: var(--gold-400); }
.lang-switch__item:not(.is-active):hover { color: var(--gold-300); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--gold-300); border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-close { display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--gold-300); line-height: 1; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(94vh, 780px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,181,88,.14), transparent 60%),
    linear-gradient(180deg, rgba(18,12,8,.45) 0%, rgba(18,12,8,.78) 60%, rgba(18,12,8,.94) 100%),
    url('/images/gallery/gallery-09.jpg') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding-block: 6rem 5rem; display: flex; flex-direction: column; align-items: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .82rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 5.6rem);
  color: var(--gold-100);
  text-transform: uppercase;
  line-height: .95;
  text-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.hero-title__sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(.85rem, 1.8vw, 1.05rem);
  color: var(--text-muted-on-dark);
  letter-spacing: .3em;
  margin-top: .8rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted-on-dark);
  max-width: 46ch;
  margin: 0 auto 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Marquee ───────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  background: var(--ink-800);
  border-block: 1px solid var(--border-on-dark);
  padding: 1.1rem 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 32s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: .06em;
  color: var(--gold-300);
  text-transform: uppercase;
  white-space: nowrap;
  padding-inline: 1.2rem;
}
.marquee-sep { color: var(--gold-700); font-size: .8rem; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-12.5%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ── Intro ─────────────────────────────────────────────────────── */
.intro { padding: 4.5rem 0 1rem; background: var(--ink-800); }
.intro-inner { max-width: 70ch; margin-inline: auto; text-align: center; }
.intro-inner p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-on-dark); line-height: 1.7; }
.intro-inner strong { color: var(--gold-300); }

/* ── Story (Über uns) ──────────────────────────────────────────── */
.story { padding: 4.5rem 0; background: var(--ink); }
.story-inner {
  display: grid; grid-template-columns: .9fr 1fr; gap: 3.5rem; align-items: center;
}
.story-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-text p { margin: 0 0 1rem; }
.story-quote {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 600;
  border-left: 3px solid var(--gold-500);
  padding-left: 1rem;
  margin-top: 1.4rem !important;
}

/* ── Values ────────────────────────────────────────────────────── */
.values { padding: 1rem 0 4.5rem; background: var(--ink-800); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--ink);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon { width: 44px; height: 44px; margin: 0 auto 1.1rem; color: var(--gold-400); }
.value-card h3 { font-size: 1rem; margin-bottom: .6rem; color: var(--gold-200, var(--gold-300)); }
.value-card p { font-size: .9rem; color: var(--text-muted-on-dark); }

/* ── Dishes ────────────────────────────────────────────────────── */
.dishes { padding: 4.5rem 0; background: var(--ink); }
.dishes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.dish-card {
  background: var(--ink-700);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.dish-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold-500); }
.dish-icon { width: 40px; height: 40px; margin: 0 auto .9rem; color: var(--gold-400); }
.dish-card h3 { font-size: 1rem; margin-bottom: .5rem; text-transform: none; font-family: var(--font-body); font-weight: 700; color: var(--gold-300); }
.dish-card p { font-size: .87rem; line-height: 1.55; color: var(--text-muted-on-dark); }
/* ── Gallery teaser (home, fixed crop) ────────────────────────────── */
.gallery-teaser { padding: 4.5rem 0; background: var(--ink-800); }
.gallery-teaser-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.gallery-teaser-item {
  display: block; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.gallery-teaser-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery-teaser-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── Gallery page: masonry grid, natural aspect ratios ────────────── */
.lightbox-grid {
  columns: 4 16rem;
  column-gap: 1.1rem;
}
.lightbox-thumb {
  display: block; width: 100%;
  break-inside: avoid; margin-bottom: 1.1rem;
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.lightbox-thumb:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.lightbox-thumb img { display: block; width: 100%; height: auto; }

.lightbox-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 3000;
  align-items: center; justify-content: center;
  padding: 3rem 1.5rem;
  background: rgba(10,7,4,.92);
}
.lightbox-overlay:target { display: flex; }
.lightbox-overlay img { max-width: min(90vw, 900px); max-height: 85vh; width: auto; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 1.4rem; right: 1.6rem;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; line-height: 1; color: var(--ink);
  background: var(--gold-400);
}
.lightbox-close:hover { background: var(--gold-300); }

/* ── Contact ───────────────────────────────────────────────────── */
.contact { padding: 4.5rem 0 5rem; background: var(--ink); color: var(--text-on-dark); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-subhead { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-400); margin: 1.8rem 0 .8rem; }
.contact-subhead:first-of-type { margin-top: 1.4rem; }
.contact address, .contact p { color: var(--text-muted-on-dark); font-size: .95rem; line-height: 1.8; }
.contact a[href^="tel:"] { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-300); font-weight: 600; }
.contact a[href^="tel:"] svg { width: 16px; height: 16px; }
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.contact .btn-outline { border-color: var(--gold-500); color: var(--gold-300); }
.contact .btn-outline:hover { background: var(--gold-500); color: var(--ink); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; border: 1px solid var(--border-on-dark); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) sepia(.18) saturate(1.1); }

/* ── Page hero (gallery / legal) ──────────────────────────────── */
.page-hero {
  position: relative;
  padding: 7.5rem 0 4.5rem;
  color: var(--gold-100);
  overflow: hidden;
  text-align: center;
  background: linear-gradient(155deg, var(--ink) 0%, var(--ink-800) 60%, var(--brown-700) 140%);
}
.page-hero .eyebrow { color: var(--gold-300); }
.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--gold-100);
}
.page-hero-sub { color: var(--text-muted-on-dark); max-width: 56ch; margin: 1rem auto 0; }

/* ── Generic page body ─────────────────────────────────────────── */
.page-body { padding: 4.5rem 0; background: var(--ink-800); }
.page-body-text { max-width: 70ch; margin-inline: auto; }

/* ── Hours ─────────────────────────────────────────────────────── */
.hours-list { display: flex; flex-direction: column; gap: .45rem; max-width: 340px; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.hours-row dt { color: var(--text-muted-on-dark); }
.hours-row dd { font-weight: 700; color: var(--gold-300); }
.footer-col .hours-row dt { color: rgba(237,227,204,.55); }
.footer-col .hours-row dd { color: var(--gold-300); }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: var(--text-muted-on-dark); padding: 4rem 0 0; margin-top: 0; border-top: 1px solid var(--border-on-dark); }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2.2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-on-dark);
}
.footer-logo { height: 56px; width: auto; margin-bottom: .9rem; }
.footer-tagline { font-size: .87rem; color: var(--text-muted-on-dark); max-width: 26ch; }
.footer-col h4 {
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: .9rem;
}
.footer-col address, .footer-col p { font-size: .87rem; line-height: 1.8; color: var(--text-muted-on-dark); }
.footer-col a { display: inline-flex; align-items: center; gap: .4rem; transition: color var(--ease); }
.footer-col a:hover { color: var(--gold-300); }
.footer-col a svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold-400); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0; font-size: .8rem; color: rgba(237,227,204,.4); flex-wrap: wrap; gap: .75rem;
}
.footer-bottom .lang-switch__item { color: rgba(237,227,204,.5); }
.footer-bottom .lang-switch__item.is-active { color: var(--ink); background: var(--gold-400); }
.footer-bottom a { color: rgba(237,227,204,.55); text-decoration: underline; text-underline-offset: 2px; transition: color var(--ease); }
.footer-bottom a:hover { color: var(--gold-300); }
.footer-legal-links { display: flex; gap: 1rem; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-teaser-grid { grid-template-columns: repeat(3, 1fr); }
  .lightbox-grid { columns: 3 13rem; }
}

@media (max-width: 860px) {
  .story-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .story-media { aspect-ratio: 16 / 9; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .header-actions { display: none; }
  #nav-menu {
    display: flex;
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .3rem;
    background: var(--ink);
    padding: 2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s var(--ease), visibility 0s linear .35s;
  }
  #nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .15s var(--ease), visibility 0s linear 0s;
  }
  #nav-menu li { width: 100%; text-align: center; }
  #nav-menu li a { font-size: 1.3rem; padding: .9rem; justify-content: center; }
  .nav-close-item { display: block; position: absolute; top: 1.2rem; right: 1.2rem; }
  .nav-lang-mobile, .nav-cta-mobile { display: block; margin-top: 1rem; }
  .nav-lang-mobile .lang-switch { justify-content: center; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-content { padding-block: 4rem 3.5rem; }
  .corner-ornament { width: 32px; height: 32px; }
  .corner-ornament--tl, .corner-ornament--bl { left: 12px; }
  .corner-ornament--tr, .corner-ornament--br { right: 12px; }
  .corner-ornament--bl, .corner-ornament--br { bottom: 12px; }

  .dishes-grid { grid-template-columns: 1fr; }
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-grid { columns: 2 11rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .lightbox-grid { columns: 1; }
}

@media (max-width: 440px) {
  .logo-text small { display: none; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
