﻿/* ============================================================
   LA VIDA · Brand-Stylesheet · mobile-first
   Wird von allen Seiten (index + Subpages) gelinkt
   ============================================================ */

@font-face {
  font-family: 'pulporust-75';
  src: url('../fonts/pulporust-75.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Espresso-Braun Grundwelt — warm, hochwertig, freundlicher als Schwarz */
  --noche: #2B1E15;       /* Grundton der Seite */
  --carbon: #3A2A1D;      /* Karten & hellere Flächen */
  --carbon-2: #4A3826;    /* Ränder & Linien */
  --sangria: #9A2E27;     /* warmes Terrakotta-Bordeaux */
  --sangria-2: #7C231E;
  --ambar: #D4AA63;       /* warmes Gold — Hauptakzent */
  --ambar-2: #B08A4C;
  --noche-deep: #160F09;  /* tiefes Espresso-Schwarz */
  --vino: #4c2f32;        /* tiefer Wein-Ton — Bar-Vibe & Footer */
  --azulejo: #43314a;     /* Aubergine — getönte Azulejos-Flächen */
  --marron:  #5C3D26;     /* Weinfass-Eiche — Verläufe & Holz */
  --roble:   #6E4B2C;     /* Weinfass-Holz — Rahmen & Divider */
  --roble-2: #8A6038;     /* Holz-Highlight */
  --crema: #F4ECDC;
  --crema-2: #C9B89B;
  --olivo: #5A6B3B;       /* gedämpftes Oliv — Vegan/Vegetarisch-Badges */

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  --r-s: 6px; --r-m: 14px; --r-l: 24px;

  --font-display: 'pulporust-75', 'Playfair Display', 'Georgia', serif;
  --font-accent: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --header-h: 52px;
  --bottom-bar-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--noche);
  color: var(--crema);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: calc(var(--bottom-bar-h) + env(safe-area-inset-bottom));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Bild-Schutz: erschwert "Bild speichern unter" und Drag & Drop für Casual-Nutzer.
     Kein 100% Schutz möglich (DevTools, Screenshot, Cache bleiben offen). */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--sangria); color: var(--crema); }

/* Skip-Link — nur sichtbar bei Tastatur-Fokus */
.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -200px;
  z-index: 300;
  padding: var(--s-3) var(--s-5);
  background: var(--ambar);
  color: var(--noche);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-s);
  transition: top 180ms ease;
}
.skip-link:focus {
  top: var(--s-4);
  outline: 2px solid var(--crema);
  outline-offset: 2px;
}

/* ============================================================
   Globale Hilfsklassen
   ============================================================ */

.container { width: min(100%, 1200px); margin: 0 auto; padding: 0 var(--s-5); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--ambar);
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: var(--s-3);
}

.h-display {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  color: var(--crema);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.h-section {
  font-size: clamp(32px, 7vw, 56px);
  margin-bottom: var(--s-4);
}

.lead {
  color: var(--crema-2);
  font-size: 17px;
  max-width: 56ch;
  margin-bottom: var(--s-6);
}

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 50;
  transition: background-color 250ms ease, box-shadow 250ms ease;
}
.site-header.scrolled {
  background: rgba(43, 30, 21, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(201, 163, 91, 0.15);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-logo { display: flex; align-items: center; }
.header-logo img { height: 40px; width: auto; }

.header-nav { display: none; }
.header-cta-desktop { display: none; }

.hamburger {
  background: transparent;
  border: 0;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  color: var(--crema);
  cursor: pointer;
  border-radius: var(--r-s);
}
.hamburger:focus-visible { outline: 2px solid var(--ambar); outline-offset: 2px; }

/* Nav-Overlay (mobile) */
.nav-overlay {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 120% 85% at 50% 30%, var(--vino) 0%, var(--noche) 68%, #1d140f 100%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: var(--s-6) var(--s-5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 280ms ease, transform 280ms ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-overlay-top img { height: 56px; width: auto; flex-shrink: 0; object-fit: contain; }
.nav-overlay-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-close {
  background: transparent; border: 0;
  width: 48px; height: 48px;
  color: var(--crema); cursor: pointer;
  border-radius: var(--r-s);
}
.nav-overlay-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s-5);
}
.nav-overlay-links a {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: 38px;
  color: var(--crema);
  letter-spacing: -0.01em;
  transition: color 200ms ease;
}
.nav-overlay-links a:hover { color: var(--ambar); }
.nav-overlay-flag {
  margin: 0 auto var(--s-5);
  height: 40px;
  opacity: 0.6;
}
.nav-overlay-cta {
  background: var(--ambar);
  color: var(--noche);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.01em;
  padding: var(--s-4) var(--s-6);
  border-radius: var(--r-m);
  text-align: center;
  margin-bottom: env(safe-area-inset-bottom);
  border: 0;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(43, 30, 21, 0.32) 0%, rgba(43, 30, 21, 0.62) 55%, rgba(43, 30, 21, 0.9) 100%),
    url('../img/hero-ambiente.webp');
  background-size: auto 145%;
  background-position: center 78%;
  background-repeat: no-repeat;
  background-color: var(--marron);
  z-index: -1;
}
@media (min-width: 1024px) {
  .hero-bg {
    background-size: cover;
    background-position: center;
  }
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../img/azulejos-pattern.webp');
  background-size: 400px;
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100dvh;
  padding: calc(var(--header-h) + var(--s-4)) var(--s-5) 10rem;
  width: 100%;
  max-width: 720px;
}
.hero-logo {
  width: clamp(110px, 28vw, 160px);
  margin: 0 auto var(--s-8);
  opacity: 0;
  animation: fadeUp 700ms 200ms ease-out forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 9.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--crema);
  margin-bottom: var(--s-3);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: fadeUp 700ms 500ms ease-out forwards;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--crema-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--s-7);
  opacity: 0;
  animation: fadeUp 700ms 700ms ease-out forwards;
}
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: var(--s-5);
  right: var(--s-5);
  bottom: var(--s-8);
  opacity: 0;
  animation: fadeUp 700ms 900ms ease-out forwards;
}

/* Kurze Viewports (z.B. Instagram In-App-Browser auf dem Smartphone):
   Buttons aus der unteren Fixierung lösen und in den normalen Fluss direkt
   unter den Text setzen — verhindert, dass der Reservieren-Button über den
   Untertitel rutscht. Auf normal hohen Handys bleibt der Button unten am Rand. */
@media (max-width: 1023px) and (max-height: 720px) {
  .hero-content { padding-bottom: var(--s-7); }
  .hero-cta-wrap {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: var(--s-6);
  }
}

.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--s-4) var(--s-7);
  background: var(--ambar);
  border: 2px solid var(--ambar);
  border-radius: var(--r-m);
  color: var(--noche);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  min-height: 64px;
  box-shadow: 0 0 0 0 rgba(201, 163, 91, 0.5);
  animation: gentlePulse 3.6s ease-in-out infinite;
}
.btn-primary-sub {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: rgba(43, 30, 21, 0.7);
  letter-spacing: 0.04em;
  text-transform: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #d9b572;
  border-color: #d9b572;
  color: var(--noche);
  transform: translateY(-2px);
  outline: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-6);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--crema-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms ease;
}
.btn-secondary:hover { color: var(--ambar); }
.btn-secondary .arrow {
  display: inline-block;
  animation: bounceArrow 2s ease-in-out infinite;
}

.btn-tertiary {
  background: transparent;
  border: 0;
  margin-top: var(--s-4);
  padding: 6px 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--crema-2);
  opacity: 0.7;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(245, 232, 211, 0.4);
  cursor: pointer;
  transition: color 200ms ease, opacity 200ms ease, text-decoration-color 200ms ease;
}
.btn-tertiary:hover,
.btn-tertiary:focus-visible {
  color: var(--ambar);
  opacity: 1;
  text-decoration-color: var(--ambar);
  outline: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 163, 91, 0.0); }
  50% { box-shadow: 0 0 24px 4px rgba(201, 163, 91, 0.25); }
}
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================================
   Section base
   ============================================================ */

section.s { padding: var(--s-9) 0; position: relative; }
section.s + section.s { border-top: 0; }

/* Bar-Vibe: warmer Lichtpool aus dem Wein-Ton statt flacher Farbfläche —
   wirkt wie Lampenlicht in der Bar; ersetzt tote Espresso-Flächen */
.bar-glow {
  background: radial-gradient(ellipse 120% 85% at 50% 30%, var(--vino) 0%, var(--noche) 68%, #1d140f 100%);
}

.section-head { text-align: center; margin-bottom: var(--s-8); }

/* Holz-Rahmen — Sektion oben & unten von einer Weinfass-Holzleiste eingefasst */
section.s.holz-frame {
  position: relative;
  /* 92px Holzleiste + ~68px Luft, damit Text/Button nicht an der Leiste kleben */
  padding-top: 160px;
  padding-bottom: 160px;
}
.holz-frame::before,
.holz-frame::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 92px;
  background-image: url('../img/holz-fass-textur.webp');
  background-size: 520px auto;
  background-repeat: repeat-x;
  z-index: 2;
}
.holz-frame::before {
  top: 0;
  box-shadow: inset 0 -2px 0 var(--ambar-2), 0 8px 20px rgba(0, 0, 0, 0.45);
}
.holz-frame::after {
  bottom: 0;
  box-shadow: inset 0 2px 0 var(--ambar-2), 0 -8px 20px rgba(0, 0, 0, 0.45);
}
.holz-frame > * { position: relative; z-index: 1; }
/* Zwei Holzrahmen-Sektionen direkt aneinander: nur EINE Leiste dazwischen */
.holz-frame + .holz-frame::before { display: none; }
.s.holz-frame + .s.holz-frame { padding-top: 68px; }

/* Azulejo Section — Fliesen im Aubergine-Ton, im Holzrahmen */
.bg-azulejos {
  background-color: var(--azulejo);
  background-image:
    linear-gradient(rgba(72, 52, 80, 0.85), rgba(72, 52, 80, 0.85)),
    url('../img/azulejos-pattern.webp');
  background-size: cover, 520px;
  background-repeat: no-repeat, repeat;
  background-blend-mode: multiply, normal;
}
.bg-azulejos .section-head .h-display,
.bg-azulejos .section-head .eyebrow {
  text-shadow: 0 2px 14px rgba(43, 30, 21, 0.85);
}

/* Azulejo-Divider */
.divider-azulejos {
  height: 100px;
  background-image: url('../img/azulejos-pattern.webp');
  background-size: 280px;
  background-position: center;
  opacity: 0.35;
}

/* Reveal-Animation (nur aktiv wenn JS läuft) */
.reveal { opacity: 1; transform: none; }
html.js-active .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
  will-change: opacity, transform;
}
html.js-active .reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Galleries (Tapas + Drinks)
   ============================================================ */

.gallery-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--s-5);
  padding: var(--s-4) var(--s-5);
  margin: 0 calc(-1 * var(--s-5));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-card {
  scroll-snap-align: start;
  background: var(--carbon);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}
.gallery-card-img {
  aspect-ratio: 4 / 3;
  background: var(--carbon-2);
  background-size: cover;
  background-position: center;
  position: relative;
}
.gallery-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43, 30, 21, 0.4));
}
.gallery-card-body {
  padding: var(--s-4) var(--s-5) var(--s-5);
}
.gallery-card-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--crema);
  margin-bottom: var(--s-2);
}
.gallery-card-desc {
  color: var(--crema-2);
  font-size: 14px;
  line-height: 1.5;
}

.section-cta {
  text-align: center;
  margin-top: var(--s-7);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-6);
  border: 1.5px solid var(--ambar-2);
  border-radius: var(--r-m);
  color: var(--ambar);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-height: 52px;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--ambar);
  color: var(--noche);
  border-color: var(--ambar);
  outline: none;
}

/* ============================================================
   Historia
   ============================================================ */

#historia { background: var(--carbon); }

.historia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
}
.historia-collage {
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}
.historia-collage img { width: 100%; height: auto; display: block; }
.historia-text p {
  color: var(--crema-2);
  margin-bottom: var(--s-4);
  font-size: 16px;
  line-height: 1.7;
}
.historia-text strong { color: var(--crema); font-weight: 700; }
.historia-polaroid {
  display: inline-block;
  background: #fff;
  padding: 10px 10px 26px;
  margin-top: var(--s-5);
  transform: rotate(-2.4deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  max-width: 200px;
}
.historia-polaroid img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.historia-polaroid-caption {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 13px;
  color: var(--noche);
  text-align: center;
  margin-top: 8px;
}

.historia-flag {
  position: absolute;
  right: -10px;
  top: 30px;
  height: 70px;
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================================
   Jobs
   ============================================================ */

#jobs {
  background: var(--noche);
  position: relative;
}
#jobs::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../img/azulejos-pattern.webp');
  background-size: 380px;
  opacity: 0.05;
  pointer-events: none;
}
#jobs .container { position: relative; }

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
.job-card {
  background: var(--carbon);
  border: 1px solid var(--carbon-2);
  border-radius: var(--r-m);
  padding: var(--s-6) var(--s-5);
  transition: border-color 220ms ease, transform 220ms ease;
}
.job-card:hover {
  border-color: var(--ambar-2);
  transform: translateY(-3px);
}
.job-card-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--crema);
  margin-bottom: var(--s-2);
}
.job-card-desc {
  color: var(--crema-2);
  font-size: 15px;
  margin-bottom: var(--s-4);
}
.job-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--ambar);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ambar-2);
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}
.job-card-link:hover { color: var(--crema); border-color: var(--crema); }

.jobs-footer {
  margin-top: var(--s-7);
  text-align: center;
  color: var(--crema-2);
  font-size: 15px;
}
.jobs-footer a { color: var(--ambar); border-bottom: 1px solid var(--ambar-2); padding-bottom: 2px; }

/* ============================================================
   Reservar
   ============================================================ */

#reservar {
  position: relative;
  background: var(--noche);
  text-align: center;
  overflow: hidden;
}
/* Highlight: Weinfass-Stehtische als dezenter Hintergrund */
#reservar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(43, 30, 21, 0.82) 0%, rgba(43, 30, 21, 0.62) 45%, rgba(43, 30, 21, 0.9) 100%),
    url('../img/weinfass-stehtische.webp');
  background-size: cover;
  background-position: center 70%;
  z-index: 0;
}
#reservar .container { max-width: 640px; position: relative; z-index: 1; }
.reservar-cta {
  margin-top: var(--s-6);
}
.reservar-cta .btn-primary { font-size: 24px; padding: var(--s-5) var(--s-8); }
.reservar-meta {
  margin-top: var(--s-6);
  color: var(--crema-2);
  font-size: 15px;
}
.reservar-tel {
  display: inline-block;
  margin-top: var(--s-3);
  color: var(--crema);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--ambar-2);
  padding-bottom: 2px;
}
.reservar-quote {
  display: block;
  margin-top: var(--s-7);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--ambar);
  font-size: 18px;
}

/* ============================================================
   Standort
   ============================================================ */

#standort { background: var(--noche); }

.standort-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
.standort-title {
  font-size: clamp(26px, 4.5vw, 38px);
  margin-bottom: var(--s-5);
}
.standort-info dl {
  display: grid;
  gap: var(--s-4);
}
.standort-info dt {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--ambar);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-1);
}
.standort-info dd {
  font-size: 16px;
  color: var(--crema);
  line-height: 1.6;
}
.standort-info a { color: inherit; border-bottom: 1px dotted var(--ambar-2); padding-bottom: 1px; }
.standort-info a:hover { border-bottom-color: var(--ambar); }

.standort-map {
  border-radius: var(--r-m);
  overflow: hidden;
  background: var(--carbon);
  border: 1px solid var(--carbon-2);
  aspect-ratio: 4 / 3;
}
.standort-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.6) contrast(0.92); }

/* Anfahrt-Block schließt im selben Abschnitt an Adresse/Karte an —
   großzügiger Abstand statt harter Sektionskante */
.standort-anfahrt-head { margin-top: var(--s-9); }

/* Karte erst auf Klick laden (Datenschutz — kein Google ohne Zustimmung) */
.map-consent {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-6);
  cursor: pointer;
  color: var(--crema);
  background: var(--carbon);
  transition: background-color 200ms ease;
}
.map-consent:hover,
.map-consent:focus-visible { background: var(--carbon-2); outline: none; }
.map-consent svg { color: var(--ambar); margin-bottom: var(--s-3); }
.map-consent-title { font-family: var(--font-display); font-size: 21px; }
.map-consent-text {
  font-size: 13px;
  color: var(--crema-2);
  max-width: 38ch;
  line-height: 1.55;
  margin-top: var(--s-2);
}
.map-consent-btn {
  margin-top: var(--s-4);
  display: inline-block;
  padding: 11px 24px;
  border-radius: var(--r-m);
  background: var(--ambar);
  color: var(--noche-deep);
  font-family: var(--font-display);
  font-size: 15px;
}
.map-consent:hover .map-consent-btn,
.map-consent:focus-visible .map-consent-btn { background: var(--crema); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--vino);
  padding: var(--s-8) 0 var(--s-7);
  text-align: center;
  border-top: 1px solid var(--carbon-2);
}
.site-footer img.footer-logo { width: 180px; margin: 0 auto var(--s-4); }
.site-footer .footer-slogan {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--ambar);
  font-size: 18px;
  margin-bottom: 0;
}
/* Footer-Brand-Spalte: mobil zentriert (wie bisher), Desktop linksbündig */
.footer-brand { text-align: center; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
  text-align: center;
}
.footer-grid h4 {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--ambar);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.footer-grid p, .footer-grid a {
  color: var(--crema-2);
  font-size: 15px;
  line-height: 1.7;
  display: block;
}
.footer-grid a:hover { color: var(--ambar); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
/* Instagram-Chip in der Marken-Spalte — auffällig, gold umrandet */
.footer-grid a.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
  padding: 11px 20px;
  border: 1.5px solid var(--ambar-2);
  border-radius: var(--r-m);
  color: var(--ambar);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.footer-grid a.footer-instagram:hover {
  background: var(--ambar);
  border-color: var(--ambar);
  color: var(--noche-deep);
}
.footer-copyright {
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--carbon-2);
  color: var(--crema-2);
  font-size: 13px;
}

/* ============================================================
   Sticky bottom bar (mobile)
   ============================================================ */

.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(43, 30, 21, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 163, 91, 0.2);
  padding: var(--s-2) var(--s-3) calc(var(--s-2) + env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
  transform: translateY(120%);
  transition: transform 350ms ease;
}
.bottom-bar.visible { transform: translateY(0); }
.bottom-bar a, .bottom-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  height: 56px;
  border-radius: var(--r-m);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 0;
}
.bottom-bar .bb-secondary {
  background: var(--carbon);
  color: var(--crema);
  border: 1px solid var(--carbon-2);
}
.bottom-bar .bb-primary {
  background: var(--ambar);
  color: var(--noche);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0;
}
.bottom-bar svg { stroke: currentColor; }

/* ============================================================
   Resmio Modal
   ============================================================ */

.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(43, 30, 21, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: var(--s-5);
  overflow-y: auto;
}
.modal-backdrop.open { display: flex; }
.modal-card {
  background: var(--vino);
  border: 1px solid var(--carbon-2);
  border-radius: var(--r-m);
  width: 100%;
  max-width: 460px;
  margin: var(--s-6) 0;
  overflow: hidden;
  position: relative;
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--carbon-2);
}
.modal-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--crema);
}
.modal-close {
  background: transparent; border: 0;
  color: var(--crema-2);
  width: 44px; height: 44px;
  border-radius: var(--r-s);
  cursor: pointer;
  display: grid; place-items: center;
}
.modal-close:hover { color: var(--ambar); background: var(--carbon); }
.modal-body { padding: var(--s-5); min-height: 480px; }
#resmio-la-vida-bar-de-tapas {
  display: flex;
  justify-content: center;
}
.modal-phone-fallback {
  text-align: center;
  margin-top: var(--s-4);
  font-size: 14px;
  color: var(--crema-2);
  line-height: 1.7;
}
.modal-consent-note {
  margin-bottom: var(--s-4);
  font-size: 13px;
  line-height: 1.55;
  color: var(--crema-2);
  border-left: 3px solid var(--ambar-2);
  background: rgba(0, 0, 0, 0.22);
  padding: var(--s-3) var(--s-4);
  border-radius: 0 var(--r-s) var(--r-s) 0;
}
.modal-phone-fallback a {
  color: var(--ambar);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
}

body.modal-open { overflow: hidden; }

/* ============================================================
   Rechtstexte (Impressum / Datenschutz)
   ============================================================ */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(21px, 3.5vw, 28px);
  color: var(--crema);
  margin: var(--s-7) 0 var(--s-4);
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 19px;
  color: var(--ambar);
  margin: var(--s-5) 0 var(--s-2);
}
.legal p, .legal li {
  color: var(--crema-2);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: var(--s-3);
}
.legal ul { padding-left: var(--s-5); margin-bottom: var(--s-4); }
.legal a { color: var(--ambar); border-bottom: 1px solid var(--ambar-2); }
.legal strong { color: var(--crema); }
.legal .anschrift { margin-bottom: var(--s-4); }
.legal .platzhalter {
  background: rgba(154, 46, 39, 0.22);
  border-bottom: 1px dashed var(--sangria);
  color: var(--crema);
  padding: 1px 6px;
  border-radius: 3px;
}
.legal .hinweis {
  border-left: 3px solid var(--ambar-2);
  background: rgba(0, 0, 0, 0.22);
  padding: var(--s-4);
  border-radius: 0 var(--r-s) var(--r-s) 0;
  margin: var(--s-5) 0;
  font-size: 15px;
}

/* ============================================================
   Desktop ab 1024 px
   ============================================================ */

@media (min-width: 1024px) {
  :root { --header-h: 76px; }

  body { font-size: 18px; padding-bottom: 0; }

  .container { padding: 0 var(--s-7); }

  /* Hero-Content auf Desktop wieder mittig zentriert */
  .hero-content {
    min-height: 0;
    justify-content: center;
    padding-top: calc(var(--header-h) + var(--s-7));
    padding-bottom: var(--s-7);
  }
  .hero-logo { margin-bottom: var(--s-6); }
  .hero-cta-wrap {
    position: static;
    margin-top: var(--s-4);
  }

  /* Header */
  .header-logo img { height: 52px; }
  .hamburger { display: none; }
  .header-nav {
    display: flex;
    gap: var(--s-9);
    align-items: center;
  }
  .header-nav a {
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0;
    color: var(--crema);
    transition: color 200ms ease;
  }
  .header-nav a:hover { color: var(--ambar); }
  .header-cta-desktop {
    display: inline-flex;
    align-items: center;
    padding: var(--s-3) var(--s-5);
    border: 1.5px solid var(--ambar);
    border-radius: var(--r-m);
    color: var(--ambar);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
    cursor: pointer;
    background: transparent;
    transition: background-color 220ms ease, color 220ms ease;
  }
  .header-cta-desktop:hover { background: var(--ambar); color: var(--noche); }

  /* Sticky-Bar verstecken auf Desktop */
  .bottom-bar { display: none !important; }

  /* Galleries als Grid */
  .gallery-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: unset;
    gap: var(--s-5);
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  /* Historia 2-spaltig */
  .historia-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--s-8);
  }
  .historia-flag { right: 5%; height: 100px; }

  /* Jobs 3 Spalten */
  .jobs-grid { grid-template-columns: repeat(3, 1fr); }

  /* Standort 2-spaltig */
  .standort-grid { grid-template-columns: 1fr 1.4fr; align-items: start; }

  /* Footer 4 Spalten: Logo | Carta | La Vida | Kontakt */
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: var(--s-7);
    align-items: start;
    text-align: left;
  }
  .footer-brand { text-align: left; }
  .site-footer .footer-brand img.footer-logo { margin-left: 0; }
  /* Instagram-Chip auf Desktop: kompakter, proportional zum 180px-Footer-Logo */
  .footer-grid a.footer-instagram {
    margin-top: var(--s-4);
    padding: 8px 14px;
    font-size: 14px;
    gap: var(--s-2);
  }
  .footer-grid a.footer-instagram svg { width: 18px; height: 18px; }
}

@media (min-width: 1280px) {
  .gallery-scroll-drinks { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   prefers-reduced-motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Subpage-Hero (kleinerer Header für Unterseiten ohne Vollbild-Hero)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--s-8)) var(--s-5) var(--s-7);
  text-align: center;
  background-color: var(--azulejo);
  background-image:
    linear-gradient(rgba(72, 52, 80, 0.85), rgba(72, 52, 80, 0.85)),
    url('../img/azulejos-pattern.webp');
  background-size: cover, 520px;
  background-repeat: no-repeat, repeat;
  background-blend-mode: multiply, normal;
  overflow: hidden;
}
.page-hero > * { position: relative; }
.page-hero .eyebrow { font-size: 16px; }
.page-hero h1,
.page-hero .eyebrow,
.page-hero .lead {
  text-shadow: 0 2px 14px rgba(43, 30, 21, 0.85);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--crema);
  margin-bottom: var(--s-3);
}
.page-hero .lead {
  margin: 0 auto;
  text-align: center;
  color: var(--crema-2);
}

/* Menu-Listing (Speise-/Getränkekarte) */
.menu-section { padding: var(--s-8) 0; }
/* Sektions-Wechsel: erste Karten-Sektion dunkel, dann im Wechsel */
.menu-section:nth-of-type(even) { background: var(--noche); }
.menu-section:nth-of-type(odd)  { background: var(--carbon); }
.menu-cat-note {
  text-align: center;
  font-style: italic;
  color: var(--crema-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 auto var(--s-6);
}
.menu-cat-head {
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}
.menu-cat-eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--ambar);
  font-size: 16px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.menu-cat-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 40px);
  color: var(--crema);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.menu-cat-line {
  flex: 1;
  height: 1px;
  background: var(--ambar-2);
  opacity: 0.4;
  min-width: 40px;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.menu-item {
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--carbon-2);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item-head {
  display: flex;
  gap: var(--s-4);
  align-items: baseline;
  margin-bottom: var(--s-2);
}
.menu-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--crema);
  line-height: 1.25;
  flex: 1;
  letter-spacing: -0.005em;
}
.menu-item-price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--ambar);
  font-size: 18px;
  white-space: nowrap;
}
.menu-item-desc {
  color: var(--crema-2);
  font-size: 15px;
  line-height: 1.6;
}
.menu-item-meta {
  margin-top: var(--s-2);
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--crema-2);
}
.menu-item-meta .menge {
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.menu-item-meta .badge {
  display: inline-flex;
  align-items: center;
  padding: 3px var(--s-2);
  border: 1px solid var(--ambar-2);
  border-radius: 12px;
  font-size: 11px;
  color: var(--ambar);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.menu-item-meta .badge.empfehlung { background: var(--ambar); color: var(--noche); border-color: var(--ambar); }
.menu-item-meta .badge.vegan,
.menu-item-meta .badge.vegetarisch { color: var(--olivo, #5A6B3B); border-color: rgba(90,107,59,0.6); }

@media (min-width: 768px) {
  .menu-grid { grid-template-columns: 1fr 1fr; column-gap: var(--s-8); }
}

/* Team-Cards */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
.team-card {
  background: var(--carbon);
  border-radius: var(--r-m);
  overflow: hidden;
  border: 1px solid var(--carbon-2);
}
.team-card-img {
  aspect-ratio: 4 / 5;
  background: var(--carbon-2);
  background-size: cover;
  background-position: center;
}
.team-card-body { padding: var(--s-5); }
.team-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--crema);
  margin-bottom: var(--s-1);
  letter-spacing: -0.01em;
}
.team-card-role {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--ambar);
  font-size: 15px;
  margin-bottom: var(--s-3);
}
.team-card-bio { color: var(--crema-2); font-size: 15px; line-height: 1.6; }

@media (min-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}
@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-8); }
}

/* ============================================================
   Pulpo Rust 75 Overrides
   Die Schrift gibt es nur in einem Schnitt (normal/normal).
   Italic + variable Weights werden hier neutralisiert, damit der Browser
   nicht synthetisch verzerrt. Lange Listen (Menu-Names) bleiben auf
   Playfair Display für Lesbarkeit.
   ============================================================ */

.h-display,
.hero-headline,
.gallery-card-title,
.job-card-title,
.modal-title,
.reservar-tel,
.nav-overlay-links a,
.nav-overlay-cta,
.header-nav a,
.header-cta-desktop,
.bottom-bar .bb-primary,
.menu-cat-title,
.team-card-name,
.page-hero h1 {
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.02em;
}

/* Menu-Item-Namen bleiben in Playfair (Lesbarkeit bei 38+102 Einträgen) */
.menu-item-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.005em;
}
.menu-item-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}

/* Pulpo Rust ist optisch fett-distressed — etwas Atmung für lange Headlines */
.h-display,
.hero-headline {
  line-height: 1.1;
}
.page-hero h1 {
  line-height: 1.1;
}

/* ============================================================
   Aktiver Nav-Link (wird per site.js gesetzt)
   ============================================================ */
.header-nav a.active { color: var(--ambar); }
.nav-overlay-links a.active { color: var(--ambar); }

/* ============================================================
   Carta-Schnellumschalter (Speisekarte ↔ Getränkekarte)
   Sitzt innerhalb des .page-hero — auf Mobile gestapelt
   ============================================================ */
.carta-switch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.carta-switch a {
  width: 100%;
  max-width: 340px;
  text-align: center;
  padding: var(--s-3) var(--s-5);
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  border: 1.5px solid var(--ambar);
  border-radius: var(--r-m);
  background: rgba(43, 30, 21, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--crema);
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.carta-switch a:hover { background: rgba(201, 163, 91, 0.18); color: var(--ambar); }
.carta-switch a.active {
  background: var(--ambar);
  color: var(--noche);
  border-color: var(--ambar);
}
.carta-switch a.active:hover { color: var(--noche); background: var(--ambar); }

@media (min-width: 768px) {
  .carta-switch { flex-direction: row; justify-content: center; }
  .carta-switch a { width: auto; flex: 0 1 240px; }
}

/* ============================================================
   Kategorie-Banderole (sticky, horizontal scrollbar)
   ============================================================ */
.cat-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: rgba(43, 30, 21, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 163, 91, 0.22);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  display: flex;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  width: max-content;
}
.cat-nav a {
  white-space: nowrap;
  padding: 9px var(--s-4);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--crema-2);
  background: var(--carbon);
  border: 1px solid var(--carbon-2);
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.cat-nav a:hover { color: var(--ambar); border-color: var(--ambar-2); }
.cat-nav a.active {
  background: var(--ambar);
  color: var(--noche);
  border-color: var(--ambar);
  font-weight: 700;
}

/* Sprung-Ziele: Offset wegen fixed Header + sticky Banderole */
.menu-section { scroll-margin-top: calc(var(--header-h) + 62px); }