/* =====================================================================
   EL TORO – Spanische Spezialität
   Design-System & Styles
   Farbpalette aus dem Vision Board:
   #000000 Schwarz · #FFFFFF Weiß · #ECE0D2 Creme · #DA342B Rot · #490510 Bordeaux
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Markenfarben */
  --black:        #000000;
  --white:        #ffffff;
  --cream:        #ece0d2;
  --cream-soft:   #f5efe6;
  --cream-dark:   #ddccb8;
  --red:          #da342b;
  --red-dark:     #b8281f;
  --red-text:     #b01e13; /* AA-tauglich für kleinen Text auf hellem Grund (5.3:1 auf Creme) */
  --red-bright:   #f2857b; /* AA-tauglich für Labels auf dunklem Grund (6.4:1 auf Bordeaux) */
  --bordeaux:     #490510;
  --bordeaux-2:   #63101c;

  /* Rollen */
  --bg:           var(--cream);
  --ink:          #1a1210;
  --ink-soft:     #4a3d38;
  --line:         rgba(73, 5, 16, 0.14);

  /* Schrift */
  --font-display: "Cinzel", "Playfair Display", Georgia, serif;
  --font-serif:   "Playfair Display", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --wrap:   1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --shadow: 0 18px 45px -22px rgba(73, 5, 16, 0.55);
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red-text);
}
.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--ink-soft); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
.script { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* ---------- Wellen-Motiv (aus dem Vision Board) ---------- */
.waves { width: 120px; height: 16px; color: var(--red); margin: 0 auto; }
.waves.center { margin-inline: auto; }
.divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-block: 1rem; }
.divider .waves { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-ink: var(--white);
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--btn-bg); color: var(--btn-ink);
  padding: 0.85rem 1.8rem;
  border: 1.5px solid var(--btn-bg);
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(218, 52, 43, 0.7); background: var(--red-dark); border-color: var(--red-dark); }
.btn--ghost { --btn-bg: transparent; --btn-ink: var(--cream); border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: var(--white); color: var(--bordeaux); border-color: var(--white); box-shadow: none; }
.btn--dark { --btn-bg: var(--bordeaux); --btn-ink: var(--cream); border-color: var(--bordeaux); }
.btn--dark:hover { background: var(--bordeaux-2); border-color: var(--bordeaux-2); }
.btn--outline { --btn-bg: transparent; --btn-ink: var(--bordeaux); border-color: var(--bordeaux); }
.btn--outline:hover { background: var(--bordeaux); color: var(--cream); box-shadow: none; }

/* ---------- Logo / Wortmarke ---------- */
/* Echtes Logo (assets/img/logo.png) – Hintergrund #490510 = Bordeaux, fügt sich nahtlos ein */
.logo { display: inline-block; width: 64px; height: 68px; background: url('../assets/img/logo.png') center / contain no-repeat; }
.site-footer .logo { width: 78px; height: 82px; }
.logo__bull { display: none; }
/* Text bleibt für Screenreader/SEO lesbar, ist aber optisch ausgeblendet (Logo enthält den Schriftzug) */
.logo__text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bordeaux);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px -12px rgba(0,0,0,0.5); }
.site-header .logo__name { color: var(--cream); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--cream); opacity: 0.85; position: relative; padding-block: 4px;
  transition: opacity 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width 0.28s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { opacity: 1; }
.nav__cta { display: flex; align-items: center; gap: 1.25rem; }
.nav__toggle { display: none; background: none; border: 0; color: var(--cream); padding: 8px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav__toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(218,52,43,0.28), transparent 60%),
    linear-gradient(180deg, var(--bordeaux) 0%, #38040c 100%);
  color: var(--cream);
  text-align: center;
  padding-block: clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}
.hero__bull { width: clamp(90px, 16vw, 150px); height: auto; color: var(--red); margin: 0 auto 1.5rem; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4)); }
.hero__logo-h1 { margin: 0; }
.hero__logo { width: clamp(200px, 34vw, 300px); height: auto; margin: 0 auto 0.9rem; filter: drop-shadow(0 12px 26px rgba(0,0,0,0.45)); }
.hero h1 { letter-spacing: 0.14em; margin-bottom: 0.4rem; }
.hero__tag { text-transform: uppercase; letter-spacing: 0.42em; font-size: clamp(0.75rem, 1.6vw, 0.95rem); color: var(--red-bright); font-weight: 600; margin-bottom: 1.6rem; }
.hero__sub { max-width: 46ch; margin: 0 auto 2.2rem; color: rgba(236,224,210,0.85); font-size: clamp(1rem, 2vw, 1.15rem); }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 40% at 50% 120%, rgba(218,52,43,0.25), transparent 70%); }

/* ---------- Willkommen / Intro ---------- */
.intro { background: var(--cream); }
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.intro__text h2 { color: var(--bordeaux); margin-block: 0.8rem 1.2rem; }
.intro__text p + p { margin-top: 1rem; }
.intro__media { position: relative; }
.intro__media .frame { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--bordeaux); }
.intro__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Highlights (Karten) ---------- */
.highlights { background: var(--bordeaux); color: var(--cream); position: relative; }
.highlights .eyebrow { color: var(--red-bright); }
.highlights h2 { color: var(--cream); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(236,224,210,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 22px 44px -18px rgba(218,52,43,0.5); }
.card__img { aspect-ratio: 3/2; background: #2a0208; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.4rem 1.5rem 1.7rem; }
.card__body h3 { color: var(--cream); }
.card__body p { color: rgba(236,224,210,0.72); font-size: 0.95rem; margin-top: 0.5rem; }

/* Bild-Platzhalter, solange keine Fotos vorliegen */
.ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, rgba(236,224,210,0.05) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--bordeaux-2), var(--bordeaux));
  color: rgba(236,224,210,0.5);
  font-family: var(--font-display); letter-spacing: 0.2em; font-size: 0.85rem; text-transform: uppercase;
}
.ph--light { background:
    repeating-linear-gradient(45deg, rgba(73,5,16,0.05) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--cream-dark), var(--cream)); color: rgba(73,5,16,0.4); }

/* ---------- Specialties Streifen ---------- */
.specialties { background: var(--cream-soft); }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.spec {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.spec { transition: transform 0.3s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s var(--ease); }
.spec:hover { transform: translateY(-5px); border-color: rgba(218,52,43,0.55); box-shadow: 0 18px 34px -14px rgba(218,52,43,0.5), 0 6px 16px -10px rgba(73,5,16,0.4); }
.spec .price { display: inline-block; margin-top: 0.6rem; color: var(--red-text); font-weight: 700; font-family: var(--font-display); }
.spec h3 { color: var(--bordeaux); font-size: 1.15rem; }

/* ---------- Info-Band (Öffnungszeiten / Standort) – hell ---------- */
.infoband { background: var(--cream); color: var(--ink); border-top: 1px solid var(--line); }
.infoband__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.infocol { display: flex; flex-direction: column; gap: 0.4rem; }
.infocol h3 { color: var(--bordeaux); font-size: 1.15rem; margin-bottom: 0.4rem; }
.infocol .row { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-soft); font-size: 0.95rem; border-bottom: 1px dashed var(--line); padding-block: 0.35rem; }
.infocol .row span:last-child { color: var(--bordeaux); font-weight: 600; white-space: nowrap; }
.infocol p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Lieferservice (Wolt) ---------- */
.delivery { background: var(--cream); }
.delivery__box {
  text-align: center; color: var(--cream); border-radius: var(--radius);
  padding: clamp(2.4rem, 6vw, 3.8rem) clamp(1.5rem, 4vw, 3rem); box-shadow: var(--shadow);
  background:
    radial-gradient(120% 120% at 50% -10%, rgba(218,52,43,0.28), transparent 60%),
    linear-gradient(180deg, var(--bordeaux) 0%, #38040c 100%);
}
.delivery__box .eyebrow { color: var(--red-bright); }
.delivery__box h2 { color: var(--cream); margin: 0.5rem 0 1rem; }
.delivery__box p { color: rgba(236,224,210,0.85); max-width: 48ch; margin: 0 auto 1.9rem; }
.btn--wolt { background: #00c2e8; border-color: #00c2e8; color: #00303a; }
.btn--wolt:hover { background: #00a9cc; border-color: #00a9cc; color: #00303a; box-shadow: 0 12px 24px -12px rgba(0,194,232,0.7); }

/* ---------- Bewertungen (Karussell) ---------- */
.reviews {
  position: relative; overflow: hidden; color: var(--cream);
  background:
    radial-gradient(120% 120% at 50% -10%, rgba(218,52,43,0.25), transparent 55%),
    linear-gradient(180deg, var(--bordeaux) 0%, #38040c 100%);
}
.reviews .eyebrow { color: var(--red-bright); }
.reviews h2 { color: var(--cream); }
.reviews__rating { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 0.7rem; color: rgba(236,224,210,0.9); font-size: 0.95rem; }
.reviews__rating .stars { color: #f2b431; letter-spacing: 2px; font-size: 1.15rem; }

.reviews__carousel { max-width: 720px; margin: 2.6rem auto 0; }
.reviews__row { display: flex; align-items: center; gap: 0.6rem; }
.reviews__viewport { overflow: hidden; flex: 1; }
.reviews__track { display: flex; transition: transform 0.5s var(--ease); }
.review-card { flex: 0 0 100%; padding: 0 0.4rem; box-sizing: border-box; display: flex; }
.review-card__inner { flex: 1; display: flex; flex-direction: column; justify-content: center; background: var(--cream); color: var(--ink); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow); text-align: center; }
.review-card__stars { color: #f2b431; letter-spacing: 3px; font-size: 1.15rem; }
.review-card__text { font-family: var(--font-serif); font-style: italic; font-size: clamp(1rem, 2.2vw, 1.15rem); color: var(--ink); margin: 1rem auto 1.5rem; line-height: 1.65; max-width: 46ch; }
.review-card__author { display: inline-flex; align-items: center; gap: 0.7rem; text-align: left; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bordeaux); color: var(--cream); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none; }
.review-card__name { font-weight: 700; color: var(--bordeaux); }
.review-card__src { font-size: 0.8rem; color: var(--ink-soft); }
.reviews__nav { flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(236,224,210,0.3); background: rgba(255,255,255,0.06); color: var(--cream); cursor: pointer; font-size: 1.5rem; line-height: 1; transition: background 0.2s, border-color 0.2s; }
.reviews__nav:hover { background: var(--red); border-color: var(--red); }
.reviews__dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.4rem; }
.reviews__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(236,224,210,0.3); cursor: pointer; padding: 0; transition: background 0.25s, width 0.25s; }
.reviews__dots button[aria-current="true"] { background: var(--red); width: 22px; border-radius: 5px; }
.reviews__cta { margin-top: 1.9rem; }
@media (max-width: 520px) { .reviews__nav { width: 38px; height: 38px; font-size: 1.3rem; } }

/* ---------- CTA-Band – hell mit roter Schrift ---------- */
.cta-band { background: var(--cream); color: var(--ink); text-align: center; border-top: 1px solid var(--line); }
.cta-band h2 { color: var(--red); }
.cta-band p { max-width: 44ch; margin: 0.8rem auto 1.8rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bordeaux); color: rgba(236,224,210,0.8); padding-block: 3.5rem 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__grid h4 { font-family: var(--font-display); color: var(--cream); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer__grid a { color: rgba(236,224,210,0.8); transition: color 0.2s; }
.footer__grid a:hover { color: var(--red); }
.footer__grid li { padding-block: 0.25rem; }
.footer__brand p { margin-top: 1rem; font-size: 0.92rem; max-width: 34ch; }
.footer__follow { margin-top: 1.4rem !important; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(236,224,210,0.55); }
.footer__social { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 0.5rem; font-weight: 500; }
.footer__social svg { width: 22px; height: 22px; flex: none; }
.footer__bottom { border-top: 1px solid rgba(236,224,210,0.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.82rem; color: rgba(236,224,210,0.55); }

/* ---------- Seiten-Header (Unterseiten) ---------- */
.page-hero {
  background:
    radial-gradient(120% 120% at 50% -20%, rgba(218,52,43,0.25), transparent 55%),
    linear-gradient(180deg, var(--bordeaux), #38040c);
  color: var(--cream); text-align: center; padding-block: clamp(3rem, 7vw, 5rem);
}
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); letter-spacing: 0.1em; }
.page-hero p { color: rgba(236,224,210,0.8); max-width: 52ch; margin: 1rem auto 0; }
.page-hero .eyebrow { color: var(--red-bright); }

/* ---------- Menü / Speisekarte ---------- */
.menu-tabs { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.menu-tabs a { display: inline-flex; align-items: center; min-height: 44px; padding: 0.55rem 1.3rem; border-radius: 999px; border: 1px solid var(--line); font-size: 0.9rem; font-weight: 600; color: var(--bordeaux); }
.menu-tabs a:hover { background: var(--bordeaux); color: var(--cream); border-color: var(--bordeaux); }
.menu-block { margin-bottom: 3.5rem; }
.menu-block > h2 { color: var(--bordeaux); text-align: center; margin-bottom: 0.4rem; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 3.5rem; margin-top: 2rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 0.6rem; padding-block: 0.7rem; border-bottom: 1px dotted var(--line); }
.menu-item__name { font-weight: 600; color: var(--ink); }
.menu-item__es { font-style: italic; color: var(--ink-soft); font-size: 0.9rem; font-family: var(--font-serif); }
.menu-item__price { color: var(--red-text); font-weight: 700; font-family: var(--font-display); white-space: nowrap; }
.menu-note { font-size: 0.82rem; color: var(--ink-soft); text-align: center; margin-top: 2rem; }

/* ---------- Extra-Feature: Speisekarte als PDF ---------- */
.pdf-bar {
  max-width: 720px; margin: 0 auto 3rem;
  background: var(--bordeaux); color: var(--cream);
  border-radius: var(--radius); padding: 1.3rem 1.7rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.1rem 1.6rem; flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.pdf-bar__text { display: flex; align-items: center; gap: 1rem; }
.pdf-bar__text svg { width: 34px; height: 34px; color: var(--red-bright); flex: none; }
.pdf-bar__text p { margin: 0; font-size: 0.92rem; color: rgba(236,224,210,0.85); max-width: 34ch; }
.pdf-bar__text strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); letter-spacing: 0.02em; margin-bottom: 2px; }
.pdf-bar__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.pdf-bar .btn { padding: 0.7rem 1.3rem; font-size: 0.9rem; }

/* ---------- Galerie ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid figure { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--bordeaux); cursor: pointer; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(73,5,16,0.55));
  transition: opacity 0.35s var(--ease);
}
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid figure figcaption {
  position: absolute; left: 14px; bottom: 12px; z-index: 2; pointer-events: none;
  color: var(--cream); font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.03em;
  opacity: 0; transform: translateY(6px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center;
  background: rgba(20,2,6,0.94); padding: clamp(1rem, 4vw, 3rem); }
.lightbox.open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; border-radius: 6px; box-shadow: 0 24px 70px rgba(0,0,0,0.65); }
.lightbox__cap { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: rgba(236,224,210,0.85); font-family: var(--font-serif); font-style: italic; font-size: 1rem; }
.lightbox button { position: absolute; background: rgba(0,0,0,0.35); color: var(--cream); border: 0; cursor: pointer; border-radius: 999px; transition: background 0.2s; }
.lightbox button:hover { background: var(--red); }
.lightbox__close { top: 18px; right: 20px; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.8rem; line-height: 1; }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
@media (max-width: 720px) { .lightbox__nav { width: 44px; height: 44px; } }

/* ---------- Reservierung ---------- */
.reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.reserve-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow); }
.reserve-card h2 { color: var(--bordeaux); font-size: 1.9rem; }
.big-phone { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.3rem); color: var(--red); font-weight: 700; margin-block: 1rem 0.4rem; display: inline-block; }
.hours-table { width: 100%; margin-top: 0.5rem; }
.hours-table .row { display: flex; justify-content: space-between; padding-block: 0.55rem; border-bottom: 1px dashed var(--line); }
.hours-table .row span:last-child { font-weight: 600; color: var(--bordeaux); }
.map-frame { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 0; width: 100%; }

.note-flag {
  display: inline-block; background: #fff3cd; color: #7a5b00; border: 1px solid #ffe08a;
  border-radius: var(--radius); padding: 0.15rem 0.55rem; font-size: 0.75rem; font-weight: 600;
}

/* ---------- Timeline (La Historia) ---------- */
.timeline { max-width: 760px; margin: 3rem auto 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--red), var(--cream-dark)); }
.tl-item { position: relative; padding: 0 0 2.4rem 66px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 12px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--red); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--red); }
.tl-year { font-family: var(--font-display); color: var(--red-text); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.04em; }
.tl-item h3 { color: var(--bordeaux); margin: 0.15rem 0 0.5rem; }
.tl-item p { color: var(--ink-soft); }
@media (max-width: 720px) {
  .timeline::before { left: 15px; }
  .tl-item { padding-left: 52px; }
  .tl-dot { left: 6px; }
}

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { color: var(--bordeaux); font-size: 1.15rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.01em; margin: 2.2rem 0 0.5rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p { color: var(--ink-soft); margin-bottom: 0.85rem; font-size: 0.98rem; }
.legal address { font-style: normal; color: var(--ink-soft); line-height: 1.75; margin-bottom: 0.85rem; }
.legal a { color: var(--red-text); text-decoration: underline; word-break: break-word; }
.legal a:hover { color: var(--bordeaux); }

/* ---------- Feuer & Leben (dezente Animationen) ---------- */
@keyframes emberGlow {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.12); }
}
.hero__glow { animation: emberGlow 6.5s ease-in-out infinite; }

/* Licht-Sweep über Buttons beim Hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 65%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); pointer-events: none;
  transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 150%; }

/* Weiche Hover-Übergänge (gewinnt gegen die Reveal-Transition) */
.spec, .card { transition: transform 0.35s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease), opacity 0.6s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__glow { animation: none; }
  .btn::after { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards, .spec-grid, .footer__grid, .infoband__grid,
  .intro__grid, .reserve-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .menu-list { grid-template-columns: 1fr; gap: 0 0; }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__media { order: -1; max-width: 420px; margin-inline: auto; }
}
@media (max-width: 720px) {
  .nav__links { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; gap: 0;
    background: var(--bordeaux); border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 0 1rem; transform: translateY(-140%); transition: transform 0.35s var(--ease); }
  .nav__links.open { transform: none; }
  .nav__links a { width: 100%; padding: 0.9rem var(--gutter); }
  .nav__links a::after { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta .btn { display: none; }
  .cards, .spec-grid, .footer__grid, .infoband__grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .reserve-grid { grid-template-columns: 1fr; }
}
