@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Playfair+Display+SC:wght@400;700&family=Playfair+Display:ital,wght@1,400;1,700&display=swap');

/* ─── Tokens ─────────────────────────────────────── */
:root {
  --c-bg:          #0C0A0B;
  --c-surface:     #141012;
  --c-card:        #1D1518;
  --c-card-hover:  #231C1E;
  --c-text:        #F0E8D8;
  --c-text-muted:  #9A8578;
  --c-text-faint:  #5C4E47;
  --c-red:         #C41E3A;
  --c-red-hover:   #A8182F;
  --c-gold:        #C4854A;
  --c-gold-light:  #D9A07A;
  --c-border:      rgba(196,133,74,.16);
  --c-border-hover:rgba(196,133,74,.4);

  --font-display: 'Playfair Display SC', serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Karla', sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 4px;

  --ease: cubic-bezier(.22,1,.36,1);
  --t-fast: 150ms;
  --t-med:  250ms;
  --t-slow: 400ms;
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
address { font-style: normal; }

/* ─── Utilities ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section { padding-block: clamp(5rem, 10vw, 9rem); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-text);
  margin-bottom: 1rem;
}

.section__subtitle {
  color: var(--c-text-muted);
  font-size: 1.0625rem;
  max-width: 520px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .875rem;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  margin: 1.5rem auto;
  opacity: .5;
}

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
.btn:active { transform: scale(.97); }

.btn--primary {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.btn--primary:hover { background: var(--c-red-hover); border-color: var(--c-red-hover); }

.btn--ghost {
  background: transparent;
  border-color: rgba(240,232,216,.35);
  color: var(--c-text);
}
.btn--ghost:hover { border-color: var(--c-text); background: rgba(240,232,216,.06); }

.btn--outline {
  background: transparent;
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.btn--outline:hover { background: var(--c-gold); color: var(--c-bg); }

.btn--lg { padding: .9375rem 2.25rem; font-size: 1rem; }

/* ─── Navigation ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              transform .35s var(--ease);
}
.nav.nav--scrolled {
  background: rgba(12,10,11,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(196,133,74,.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--c-text);
  letter-spacing: .04em;
  transition: color var(--t-fast) var(--ease);
}
.nav__logo:hover { color: var(--c-gold); }
.nav__logo img { height: 44px; width: auto; display: block; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__link {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(240,232,216,.75);
  text-transform: uppercase;
  transition: color var(--t-fast) var(--ease);
}
.nav__link:hover,
.nav__link--active { color: var(--c-text); }

.nav__link--cta {
  padding: .5rem 1.25rem;
  border: 1.5px solid var(--c-gold);
  border-radius: var(--radius);
  color: var(--c-gold);
  text-transform: uppercase;
}
.nav__link--cta:hover { background: var(--c-gold); color: var(--c-bg); }

.nav__reserve { display: none; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .18;
  filter: sepia(20%) saturate(70%);
}

/* Candlelight glow — the signature design element */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 55% at 50% 80%, rgba(196,133,74,.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 30% 85%, rgba(196,30,58,.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 28% at 72% 82%, rgba(196,133,74,.09) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(12,10,11,.5) 0%, rgba(12,10,11,.2) 40%, rgba(12,10,11,.75) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--nav-h) 1.5rem 4rem;
}

.hero__location {
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .02em;
  color: var(--c-text);
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--c-text-muted);
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--c-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color var(--t-fast) var(--ease);
  animation: scrollBob 2.5s ease-in-out infinite;
}
.hero__scroll:hover { color: var(--c-gold); }

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── About ──────────────────────────────────────── */
.about { background: var(--c-surface); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__text .section__title { text-align: left; margin-bottom: 1.25rem; }
.about__text p {
  color: var(--c-text-muted);
  margin-bottom: 1rem;
  max-width: 480px;
}

.about__image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about__image:hover img { transform: scale(1.03); }
.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-border);
  border-radius: 2px;
  pointer-events: none;
}

/* ─── Gallery ─────────────────────────────────────── */
.gallery { background: var(--c-bg); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: .75rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform .7s var(--ease), filter .4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); filter: brightness(1.1); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--tall img { min-height: 100%; }
.gallery__item--wide { grid-column: span 2; }

.gallery__cta { text-align: center; margin-top: 3rem; }

/* ─── Menu Teaser ────────────────────────────────── */
.menu-teaser { background: var(--c-surface); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease);
}
.card:hover {
  background: var(--c-card-hover);
  border-color: var(--c-border-hover);
  transform: translateY(-3px);
}
.card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,133,74,.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: var(--c-gold);
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: .75rem;
  color: var(--c-text);
}
.card__text { color: var(--c-text-muted); font-size: .9375rem; }

.menu-teaser__cta { text-align: center; }

/* ─── Hours ──────────────────────────────────────── */
.hours { background: var(--c-bg); }

.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
}
.hours__block .section__title { text-align: left; margin-bottom: 1.75rem; }

.hours__table { width: 100%; border-collapse: collapse; }
.hours__table td {
  padding: .875rem 0;
  border-bottom: 1px solid rgba(196,133,74,.1);
  font-size: .9375rem;
  color: var(--c-text-muted);
}
.hours__table td:last-child { text-align: right; color: var(--c-text); }
.hours__table tr:last-child td { border-bottom: none; }
.hours__lunch td { color: var(--c-gold) !important; }

.contact { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__item {
  display: flex;
  align-items: center;
  gap: .875rem;
  color: var(--c-text-muted);
  font-size: .9375rem;
}
.contact__item svg { flex-shrink: 0; color: var(--c-gold); }
.contact__item a { color: var(--c-text); transition: color var(--t-fast); }
.contact__item a:hover { color: var(--c-gold); }

/* ─── Footer ─────────────────────────────────────── */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

/* Öffnungszeiten + Kontakt Block oben im Footer */
.footer__top {
  padding-block: clamp(4rem, 8vw, 6rem);
  border-bottom: 1px solid var(--c-border);
}

/* Hauptbereich: Logo, Nav, Rechtliches */
.footer__main { padding-block: 3.5rem 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--c-text);
  display: block;
  margin-bottom: .875rem;
}
.footer__logo img { height: 38px; width: auto; display: block; }
.footer__brand p { color: var(--c-text-muted); font-size: .9375rem; max-width: 260px; }

.footer__nav h3 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .75rem; }
.footer__nav a {
  font-size: .9375rem;
  color: var(--c-text-muted);
  transition: color var(--t-fast) var(--ease);
}
.footer__nav a:hover { color: var(--c-text); }

.footer__bottom {
  border-top: 1px solid rgba(196,133,74,.1);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--c-text-faint);
  font-size: .875rem;
}

/* ─── Speisekarte Page ───────────────────────────── */
.menu-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 3rem;
  text-align: center;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}
.menu-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: .875rem;
}
.menu-hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--c-text-muted);
  font-size: 1.125rem;
}

.menu-page { padding-block: clamp(4rem, 8vw, 7rem); }

.menu-category {
  margin-bottom: 4rem;
}
.menu-category:last-child { margin-bottom: 0; }

.menu-category__header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-border);
}
.menu-category__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--c-text);
}
.menu-category__sub {
  font-size: .875rem;
  color: var(--c-text-faint);
  font-style: italic;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .375rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .875rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--t-fast) var(--ease);
}
.menu-item:hover { background: var(--c-card); }

.menu-item__name { font-size: .9375rem; color: var(--c-text); font-weight: 500; }
.menu-item__desc {
  font-size: .8125rem;
  color: var(--c-text-muted);
  margin-top: .2rem;
}
.menu-item__name-wrap { display: flex; flex-direction: column; }

.menu-note {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(196,133,74,.07);
  border-left: 2px solid var(--c-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .875rem;
  color: var(--c-text-muted);
}

/* ─── Static Pages (Impressum, Datenschutz) ──────── */
.static-page {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 6rem;
}
.static-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 3rem;
  color: var(--c-text);
}
.static-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-gold);
  margin-top: 2.5rem;
  margin-bottom: .875rem;
}
.static-page p { color: var(--c-text-muted); margin-bottom: .875rem; line-height: 1.7; font-size: .9375rem; }
.static-page a { color: var(--c-gold); }
.static-page a:hover { text-decoration: underline; }

/* ─── Keyframes ──────────────────────────────────── */
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Nav load animation ─────────────────────────── */
.nav {
  animation: navSlideDown .7s cubic-bezier(.22,1,.36,1) .05s both;
}

/* ─── Hero load animations ───────────────────────── */
.hero__location {
  animation: heroFadeUp .8s cubic-bezier(.22,1,.36,1) .35s both;
}
.hero__title {
  animation: heroFadeUp 1.1s cubic-bezier(.22,1,.36,1) .55s both;
}
.hero__subtitle {
  animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) .85s both;
}
.hero__actions {
  animation: heroFadeUp .8s cubic-bezier(.22,1,.36,1) 1.1s both;
}
.hero__scroll {
  animation: heroFadeIn .8s cubic-bezier(.22,1,.36,1) 1.6s both,
             scrollBob 2.5s ease-in-out 2.4s infinite;
}

/* ─── Scroll Reveal ─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s cubic-bezier(.22,1,.36,1),
              transform 1s cubic-bezier(.22,1,.36,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bilder: sanftes Herauszoomen */
[data-reveal="scale"] {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(.22,1,.36,1),
              transform 1.2s cubic-bezier(.22,1,.36,1);
}
[data-reveal="scale"].is-visible {
  opacity: 1;
  transform: scale(1);
}

[data-reveal="delay-1"] { transition-delay: .12s; }
[data-reveal="delay-2"] { transition-delay: .24s; }
[data-reveal="delay-3"] { transition-delay: .36s; }
[data-reveal="delay-4"] { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal="scale"] {
    opacity: 1; transform: none; transition: none; animation: none;
  }
  .nav, .hero__location, .hero__title, .hero__subtitle,
  .hero__actions, .hero__scroll { animation: none; }
  .hero__scroll { animation: scrollBob 2.5s ease-in-out infinite; }
  * { transition-duration: .01ms !important; }
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  /* !important schlägt animation fill-mode: both */
  .nav--hidden { transform: translateY(-100%) !important; }
}

@media (max-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: auto; }
}

/* ── Hamburger sichtbar auf allen iPhone-Größen (inkl. Querformat) ── */
@media (max-width: 1024px) {
  .nav { z-index: 200; }
  .nav__toggle { display: flex !important; position: relative; z-index: 250; }
}

/* ── Fullscreen mobile menu ── */
@media (max-width: 1024px) {
  .nav__list {
    position: fixed;
    inset: 0;
    height: 100dvh;
    z-index: 150;
    background: rgba(12,10,11,.97);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 2.25rem 3rem;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s var(--ease), visibility 0s .35s;
    overflow: hidden;
  }
  .nav__list.nav__list--open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: opacity .35s var(--ease), visibility 0s;
  }

  .nav__list li {
    width: 100%;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
  }
  .nav__list--open li:nth-child(1) { opacity: 1; transform: none; transition-delay: .08s; }
  .nav__list--open li:nth-child(2) { opacity: 1; transform: none; transition-delay: .14s; }
  .nav__list--open li:nth-child(3) { opacity: 1; transform: none; transition-delay: .20s; }
  .nav__list--open li:nth-child(4) { opacity: 1; transform: none; transition-delay: .26s; }
  .nav__list--open li:nth-child(5) { opacity: 1; transform: none; transition-delay: .32s; }
  .nav__list--open li:nth-child(6) { opacity: 1; transform: none; transition-delay: .38s; }
  .nav__list--open li:nth-child(7) { opacity: 1; transform: none; transition-delay: .44s; }

  .nav__link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 400;
    text-transform: none;
    letter-spacing: .02em;
    padding: .75rem 0;
    display: block;
    border-bottom: 1px solid rgba(240,232,216,.07);
    color: rgba(240,232,216,.75);
  }
  .nav__link:hover,
  .nav__link--active { color: var(--c-text); }

  .nav__link--cta { display: none; }

  .nav__reserve { display: list-item !important; margin-top: 2.5rem; border-bottom: none !important; }
  .nav__reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(20,16,18,.85);
    border: 1px solid rgba(196,133,74,.3);
    border-radius: var(--radius);
    color: var(--c-text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .02em;
    backdrop-filter: blur(12px);
    transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  }
  .nav__reserve-btn:active {
    background: rgba(196,133,74,.12);
    border-color: rgba(196,133,74,.5);
    color: var(--c-gold);
  }

  body.nav-open { overflow: hidden; }
}

/* ── Layout adjustments ── */
@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__image { order: -1; }
  .about__image img { aspect-ratio: 16/9; }
  .cards { grid-template-columns: 1fr; }
  .hours__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .menu-items { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: .625rem; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item img { height: 100%; object-fit: cover; aspect-ratio: unset; }
  .back-to-top { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(3rem, 18vw, 5rem); }
  .hero__actions { flex-wrap: nowrap; gap: .625rem; }
  .hero__actions .btn { flex: 1; justify-content: center; font-size: .875rem; padding: .75rem .625rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .gallery__grid { grid-auto-rows: 160px; }
}

/* ─── Mobile Bottom Bar ──────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  align-items: center;
  gap: .625rem;
  padding: .875rem 1rem;
  padding-bottom: calc(.875rem + env(safe-area-inset-bottom));
  background: transparent;
}

.mobile-bar__menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 48px;
  background: rgba(20,16,18,.85);
  border: 1px solid rgba(196,133,74,.25);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
}
.mobile-bar__menu:active {
  background: rgba(196,133,74,.12);
  border-color: rgba(196,133,74,.5);
  color: var(--c-gold);
}

.mobile-bar__reserve-wrap {
  position: relative;
  flex: 1;
}

.mobile-bar__top {
  position: absolute;
  top: -56px;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(20,16,18,.85);
  border: 1px solid rgba(196,133,74,.25);
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.mobile-bar__top:active {
  background: rgba(196,133,74,.12);
  color: var(--c-gold);
  border-color: rgba(196,133,74,.5);
}

.mobile-bar__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0 1.125rem;
  height: 48px;
  width: 100%;
  background: rgba(20,16,18,.85);
  border: 1px solid rgba(196,133,74,.25);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.mobile-bar__call:active {
  background: rgba(196,133,74,.12);
  border-color: rgba(196,133,74,.5);
  color: var(--c-gold);
}

@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

/* ─── Back to Top Button ─────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20,16,18,.85);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease),
              background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: rgba(196,133,74,.12);
  border-color: rgba(196,133,74,.45);
  color: var(--c-gold);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-top { display: none; }
}
