/* ==========================================================================
   Restaurant Alexandros Leipzig — Design System
   ========================================================================== */

:root {
  /* Farben */
  --ink:        #10222e;
  --ink-soft:   #2c4353;
  --aegean:     #0e3a52;
  --aegean-dk:  #082533;
  --aegean-dp:  #051a25;
  --gold:       #c08b3e;
  --gold-lt:    #e3c184;
  --gold-dp:    #9a6c28;
  --terra:      #b45f3f;
  --olive:      #6d7a5b;
  --paper:      #fbf8f3;
  --paper-2:    #f4ede1;
  --line:       #e3dacb;
  --white:      #ffffff;
  --muted:      #6f7c85;

  /* Typo */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --r: 3px;
  --shadow: 0 1px 2px rgba(16,34,46,.05), 0 14px 36px -14px rgba(16,34,46,.2);
  --shadow-lg: 0 2px 4px rgba(16,34,46,.06), 0 36px 70px -26px rgba(16,34,46,.32);
  --nav-h: 76px;

  /* Mäander (griechischer Schlüsselfries) als Hintergrundmuster */
  --meander-gold: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='20' viewBox='0 0 60 20'%3E%3Cpath d='M0 17h54V3H12v11h34V6H18v5h28' fill='none' stroke='%23c08b3e' stroke-width='2'/%3E%3C/svg%3E");
  --meander-lt:   url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='20' viewBox='0 0 60 20'%3E%3Cpath d='M0 17h54V3H12v11h34V6H18v5h28' fill='none' stroke='%23e3c184' stroke-width='2'/%3E%3C/svg%3E");
  --meander-faint:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='20' viewBox='0 0 60 20'%3E%3Cpath d='M0 17h54V3H12v11h34V6H18v5h28' fill='none' stroke='%23dccdb0' stroke-width='2'/%3E%3C/svg%3E");
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* Typo ------------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 400; line-height: 1.13; letter-spacing: -.012em; }
h1 { font-size: clamp(2.7rem, 6.4vw, 4.9rem); }
h2 { font-size: clamp(2.05rem, 4.4vw, 3.15rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.62rem); }
p + p { margin-top: 1em; }
strong { color: var(--ink); font-weight: 600; }
em.gr { font-style: normal; font-family: var(--serif); color: var(--gold); letter-spacing: .04em; }

.eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 26px; height: 6px; flex: none;
  background: var(--meander-gold) repeat-x center / 30px 10px;
  opacity: .85;
}
.center .eyebrow, .hero .eyebrow { justify-content: center; }
.lead { font-size: 1.17rem; color: var(--ink-soft); }

/* Layout ----------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.bg-paper2 { background: var(--paper-2); }
.bg-dark { background: var(--aegean-dk); color: #c3d5df; }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }

/* Mäander-Bänder --------------------------------------------------------- */
.meander-band {
  height: 14px;
  background: var(--meander-gold) repeat-x center / 42px 14px;
  opacity: .5;
}
.meander-band.dark { background-image: var(--meander-lt); opacity: .38; }
.band-top::before, .band-bottom::after {
  content: ""; position: absolute; left: 0; right: 0; height: 12px;
  background: var(--meander-faint) repeat-x center / 36px 12px;
  opacity: .55; pointer-events: none;
}
.band-top::before { top: 0; }
.band-bottom::after { bottom: 0; }

/* Ornament-Trenner (zeichnet sich beim Scrollen) -------------------------- */
.ornament { display: flex; align-items: center; justify-content: flex-start; gap: .9rem; margin: 1.5rem 0; }
.center .ornament, .quote .ornament { justify-content: center; }
.ornament svg { width: 132px; height: 22px; overflow: visible; }
.ornament svg path, .ornament svg circle {
  fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round;
  stroke-dasharray: 260; stroke-dashoffset: 260;
  transition: stroke-dashoffset 1.5s cubic-bezier(.22,1,.36,1) .15s;
}
.reveal.in .ornament svg path, .reveal.in .ornament svg circle,
.ornament.in svg path, .ornament.in svg circle { stroke-dashoffset: 0; }
.bg-dark .ornament svg path, .bg-dark .ornament svg circle { stroke: var(--gold-lt); }

/* Buttons ---------------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: .65rem;
  padding: 1rem 2rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent; border-radius: var(--r);
  transition: background .3s, color .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.btn::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-101%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: transform .7s ease;
}
.btn:hover::after { transform: translateX(101%); }
.btn-primary { background: var(--gold); color: #241704; border-color: var(--gold); box-shadow: 0 6px 20px -8px rgba(192,139,62,.75); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-light:hover { background: #fff; color: var(--aegean-dk); border-color: #fff; transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }

/* Navigation ------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s, box-shadow .4s, height .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled, .nav.solid {
  background: rgba(251,248,243,.95);
  backdrop-filter: saturate(170%) blur(16px);
  border-bottom-color: var(--line);
  height: 64px;
}
.nav.scrolled::after, .nav.solid::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px;
  background: var(--meander-faint) repeat-x center / 30px 10px; opacity: .5;
}
.nav-inner { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; flex: none; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.06); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.36rem; letter-spacing: .09em; color: var(--ink); }
.brand-sub { font-size: .55rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }
.nav.transparent .brand-name, .nav.transparent .nav-links > li > a { color: #fff; }
.nav.transparent .brand-mark path, .nav.transparent .brand-mark circle { stroke: #fff; }
.nav.scrolled .brand-name, .nav.scrolled .nav-links > li > a { color: var(--ink); }
.nav.scrolled .brand-mark path, .nav.scrolled .brand-mark circle { stroke: var(--aegean); }

.nav-links { display: flex; align-items: center; gap: 2.1rem; list-style: none; padding: 0; }
.nav-links a { text-decoration: none; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); position: relative; padding: .35rem 0; transition: color .25s; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 50%; bottom: 0; height: 5px; width: 0;
  background: var(--meander-gold) repeat-x center / 26px 9px;
  transition: width .35s ease, left .35s ease; opacity: .9;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a[aria-current="page"]:not(.nav-cta)::after { width: 100%; left: 0; }
.nav-cta { padding: .72rem 1.5rem; font-size: .74rem; }

.nav-toggle { display: none; background: none; border: 0; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; transition: transform .35s, opacity .3s, background .3s; }
.nav.transparent .nav-toggle span { background: #fff; }
.nav.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 3px solid var(--gold);
    padding: .5rem 1.25rem 1.6rem;
    transform: translateY(-120%); transition: transform .45s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { display: block; padding: 1rem .25rem; border-bottom: 1px solid var(--line); color: var(--ink) !important; font-size: .95rem; }
  .nav-links li:last-child a { border: 0; }
  .nav-links .nav-cta { margin-top: 1rem; justify-content: center; border: 1px solid var(--gold); }
}

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; min-height: min(100svh, 900px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translate3d(0,0,0); } to { transform: scale(1.1) translate3d(-1.5%,-1.5%,0); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 20% 90%, rgba(5,26,37,.86) 0%, rgba(5,26,37,0) 60%),
    linear-gradient(180deg, rgba(8,37,51,.6) 0%, rgba(8,37,51,.16) 38%, rgba(5,26,37,.9) 100%);
}
.hero-inner { position: relative; z-index: 2; width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; padding: 9rem 0 clamp(4rem, 8vw, 6.5rem); }
.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 3px 40px rgba(0,0,0,.4); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; transform: translateY(105%); animation: riseIn .95s cubic-bezier(.22,1,.36,1) forwards; }
.hero h1 .line:nth-child(1) > span { animation-delay: .15s; }
.hero h1 .line:nth-child(2) > span { animation-delay: .3s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .45s; }
@keyframes riseIn { to { transform: translateY(0); } }
.hero .eyebrow { color: var(--gold-lt); opacity: 0; animation: fadeIn .9s ease .05s forwards; }
.hero .eyebrow::before, .hero .eyebrow::after { background-image: var(--meander-lt); }
.hero p { max-width: 47ch; font-size: 1.16rem; color: rgba(255,255,255,.92); margin-top: 1.5rem; opacity: 0; animation: fadeUp .9s ease .6s forwards; }
.hero .btn-row { opacity: 0; animation: fadeUp .9s ease .75s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 1.6rem 3rem;
  margin-top: 3rem; padding-top: 2rem; position: relative;
  opacity: 0; animation: fadeUp .9s ease .9s forwards;
}
.hero-facts::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 10px;
  background: var(--meander-lt) repeat-x left center / 34px 11px; opacity: .55;
}
.hero-fact { min-width: 148px; }
.hero-fact dt { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: .4rem; }
.hero-fact dd { font-family: var(--serif); font-size: 1.14rem; color: #fff; margin: 0; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.hero-scroll i { display: block; width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 700px) { .hero-scroll { display: none; } }

/* Page-Header (Unterseiten) ---------------------------------------------- */
.page-head { position: relative; padding: calc(var(--nav-h) + 5.5rem) 0 5rem; background: var(--aegean-dk); color: #c3d5df; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: 0; opacity: .07;
  background: var(--meander-lt) repeat center / 90px 30px;
}
.page-head::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 14px;
  background: var(--meander-gold) repeat-x center / 42px 14px; opacity: .5;
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 3.8rem); }
.page-head p { max-width: 56ch; margin-top: 1.1rem; color: rgba(255,255,255,.8); }
.page-head .eyebrow { color: var(--gold-lt); }
.page-head .eyebrow::before, .page-head .eyebrow::after { background-image: var(--meander-lt); }

/* Split-Sektion ---------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media::before {
  content: ""; position: absolute; inset: -14px -14px 26px 26px;
  border: 1px solid var(--gold); opacity: .45; pointer-events: none; z-index: 0;
  transition: inset .6s cubic-bezier(.22,1,.36,1);
}
.reveal.in .split-media::before { inset: -18px -18px 18px 18px; }
.split-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.split-media.wide img { aspect-ratio: 5/4; }
.split-media .badge {
  position: absolute; z-index: 2; right: -20px; bottom: 34px;
  background: var(--gold); color: #241704; padding: 1.15rem 1.45rem; border-radius: var(--r);
  font-family: var(--serif); font-size: 1.06rem; line-height: 1.3; max-width: 210px;
  box-shadow: var(--shadow);
}
.split-media .badge::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px;
  background: var(--meander-gold) repeat-x center / 24px 8px; filter: brightness(.4); opacity: .5;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .badge { right: 12px; }
  .split-media::before { inset: -10px -10px 14px 14px; }
}

/* Karten-Grid ------------------------------------------------------------ */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.9rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.8rem; }
.card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s, border-color .45s;
}
.card::before, .card::after {
  content: ""; position: absolute; width: 22px; height: 22px; z-index: 3; pointer-events: none;
  border: 0 solid var(--gold); opacity: 0; transition: opacity .4s, transform .4s;
}
.card::before { top: 10px; left: 10px; border-top-width: 1px; border-left-width: 1px; transform: translate(6px,6px); }
.card::after { bottom: 10px; right: 10px; border-bottom-width: 1px; border-right-width: 1px; transform: translate(-6px,-6px); }
.card:hover::before, .card:hover::after { opacity: .9; transform: none; }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: #d8c9ac; }
.card-media { overflow: hidden; }
.card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.card:hover img { transform: scale(1.07); }
.card-body { padding: 1.6rem 1.7rem 1.9rem; }
.card-body h3 { margin-bottom: .55rem; }
.card-body p { font-size: .96rem; }
.card-body .tag { display: inline-block; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }

/* Icon-Feature ----------------------------------------------------------- */
.feature { text-align: center; padding: .5rem; }
.feature .ico {
  width: 76px; height: 76px; margin: 0 auto 1.3rem; position: relative;
  display: grid; place-items: center;
}
.feature .ico::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--gold); opacity: .35;
  transition: transform .6s cubic-bezier(.22,1,.36,1), opacity .6s;
}
.feature:hover .ico::before { transform: scale(1.12) rotate(45deg); opacity: .8; }
.feature .ico svg { width: 34px; height: 34px; stroke: var(--gold); fill: none; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.feature .ico svg * { stroke-dasharray: 160; stroke-dashoffset: 160; transition: stroke-dashoffset 1.4s cubic-bezier(.22,1,.36,1); }
.reveal.in .feature .ico svg * { stroke-dashoffset: 0; }
.feature:nth-child(2) .ico svg * { transition-delay: .12s; }
.feature:nth-child(3) .ico svg * { transition-delay: .24s; }
.feature:nth-child(4) .ico svg * { transition-delay: .36s; }
.feature h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.feature p { font-size: .95rem; }
.bg-dark .feature .ico::before { border-color: var(--gold-lt); }
.bg-dark .feature .ico svg { stroke: var(--gold-lt); }

/* Speisekarte ------------------------------------------------------------ */
.menu-nav { position: sticky; top: 64px; z-index: 60; background: rgba(251,248,243,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.menu-nav ul { display: flex; gap: .35rem; list-style: none; padding: .85rem 0; margin: 0; overflow-x: auto; scrollbar-width: none; }
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a { white-space: nowrap; text-decoration: none; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .55rem 1rem; border-radius: 100px; color: var(--muted); transition: background .25s, color .25s; }
.menu-nav a:hover { background: var(--gold); color: #241704; }

.menu-group { margin-bottom: clamp(3rem, 6vw, 5rem); }
.menu-group > h2 { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 2.2rem; }
.menu-group > h2 .cat-ico { width: 34px; height: 34px; flex: none; stroke: var(--gold); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.menu-group > h2::after { content: ""; flex: 1; height: 9px; background: var(--meander-faint) repeat-x center / 30px 10px; opacity: .8; }
.menu-group .group-note { font-size: .92rem; color: var(--muted); margin: -1.4rem 0 1.9rem; font-style: italic; }
.menu-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: .2rem 3.2rem; }
.menu-item { padding: 1.05rem 0; border-bottom: 1px dashed var(--line); transition: padding-left .35s ease, border-color .35s; }
.menu-item:hover { padding-left: .55rem; border-color: var(--gold); }
.menu-item-head { display: flex; align-items: baseline; gap: .75rem; }
.menu-no { font-size: .72rem; font-weight: 800; color: var(--gold); letter-spacing: .06em; flex: none; min-width: 2.2em; }
.menu-name { font-family: var(--serif); font-size: 1.14rem; color: var(--ink); }
.menu-desc { font-size: .93rem; color: var(--muted); margin-top: .25rem; padding-left: calc(2.2em + .75rem); }

/* Weinkarte -------------------------------------------------------------- */
.wine-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 1.6rem; }
.wine {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.7rem 1.7rem 1.6rem;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.wine::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); }
.wine::after { content: ""; position: absolute; left: 1.7rem; right: 1.7rem; top: 0; height: 7px; background: var(--meander-faint) repeat-x center / 26px 9px; opacity: .7; }
.wine:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.wine h3 { font-size: 1.24rem; margin-bottom: .75rem; }
.wine dl { display: grid; grid-template-columns: auto 1fr; gap: .2rem .9rem; font-size: .83rem; margin-bottom: .95rem; }
.wine dt { color: var(--gold); font-weight: 700; letter-spacing: .05em; }
.wine dd { margin: 0; color: var(--ink-soft); }
.wine .note { font-size: .93rem; color: var(--muted); line-height: 1.66; }

/* Galerie ---------------------------------------------------------------- */
.gallery { columns: 3; column-gap: 1.1rem; }
.gallery figure { break-inside: avoid; margin: 0 0 1.1rem; position: relative; overflow: hidden; border-radius: var(--r); }
.gallery img { width: 100%; transition: transform .9s cubic-bezier(.22,1,.36,1), filter .5s; }
.gallery figure::after {
  content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.65);
  opacity: 0; transform: scale(1.04); transition: opacity .45s, transform .45s; pointer-events: none;
}
.gallery figure:hover img { transform: scale(1.06); filter: saturate(1.12); }
.gallery figure:hover::after { opacity: 1; transform: none; }
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 560px) { .gallery { columns: 1; } }

/* Marquee-Band (griechische Worte) --------------------------------------- */
.marquee { overflow: hidden; padding: 1.5rem 0; background: var(--aegean-dk); position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--aegean-dk), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--aegean-dk), transparent); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee span { font-family: var(--serif); font-size: 1.35rem; color: rgba(255,255,255,.5); letter-spacing: .12em; white-space: nowrap; display: flex; align-items: center; gap: 3rem; }
.marquee span::after { content: "◆"; color: var(--gold); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Öffnungszeiten / Info -------------------------------------------------- */
.hours { list-style: none; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1.5rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 1rem; }
.hours li:last-child { border: 0; }
.hours .day { color: rgba(255,255,255,.72); }
.hours .time { font-family: var(--serif); font-size: 1.1rem; color: #fff; white-space: nowrap; }
.bg-paper2 .hours li, body > main .hours li { border-bottom-color: var(--line); }
.bg-paper2 .hours .day, body > main .hours .day { color: var(--muted); }
.bg-paper2 .hours .time, body > main .hours .time { color: var(--ink); }
.bg-dark .hours li { border-bottom-color: rgba(255,255,255,.14); }
.bg-dark .hours .day { color: rgba(255,255,255,.72); }
.bg-dark .hours .time { color: #fff; }

.status-pill {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .5rem 1rem; border-radius: 100px; border: 1px solid var(--line); background: var(--white);
}
.status-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.status-pill.open i { background: #4c9a5a; box-shadow: 0 0 0 0 rgba(76,154,90,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(76,154,90,0); } 100% { box-shadow: 0 0 0 0 rgba(76,154,90,0); } }

.info-block { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; }
.info-block h3 { font-size: 1.05rem; letter-spacing: .04em; margin-bottom: .8rem; }
.info-block a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--gold); transition: color .25s; }
.info-block a:hover { color: var(--gold); }

/* Zitat ------------------------------------------------------------------ */
.quote { text-align: center; max-width: 760px; margin-inline: auto; position: relative; }
.quote::before {
  content: "\201C"; font-family: var(--serif); font-size: 8rem; line-height: 1;
  color: var(--gold); opacity: .22; position: absolute; top: -2.6rem; left: 50%; transform: translateX(-50%);
}
.quote blockquote { font-family: var(--serif); font-size: clamp(1.55rem, 3.3vw, 2.25rem); line-height: 1.42; color: var(--ink); }
.bg-dark .quote blockquote { color: #fff; }
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }

/* Karte / Anfahrt -------------------------------------------------------- */
.map-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 2rem; background: var(--paper-2); }
.map-consent p { font-size: .95rem; max-width: 44ch; color: var(--muted); }

/* Formular --------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; padding: .85rem 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(192,139,62,.16); }
.field textarea { resize: vertical; min-height: 130px; }
.form-hint { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* CTA-Band --------------------------------------------------------------- */
.cta-band { position: relative; padding: clamp(4.5rem, 8vw, 7rem) 0; text-align: center; color: #fff; overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.cta-band .bg::after { content: ""; position: absolute; inset: 0; background: rgba(5,26,37,.82); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; left: 0; right: 0; height: 14px; z-index: 3;
  background: var(--meander-gold) repeat-x center / 42px 14px; opacity: .55;
}
.cta-band::before { top: 0; }
.cta-band::after { bottom: 0; }
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: var(--gold-lt); justify-content: center; }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background-image: var(--meander-lt); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 50ch; margin: 1rem auto 0; }
.cta-band .btn-row { justify-content: center; }

/* Footer ----------------------------------------------------------------- */
.footer { position: relative; background: var(--aegean-dp); color: rgba(255,255,255,.68); padding: clamp(4rem, 7vw, 5.5rem) 0 2rem; font-size: .93rem; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 14px; background: var(--meander-gold) repeat-x center / 42px 14px; opacity: .45; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.6rem; }
.footer h4 { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.15rem; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .58rem; }
.footer a { text-decoration: none; transition: color .25s, padding-left .25s; }
.footer a:hover { color: #fff; }
.footer .brand-name { color: #fff; font-size: 1.6rem; }
.footer-bottom { margin-top: 3.2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; font-size: .84rem; color: rgba(255,255,255,.5); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Rechtstexte ------------------------------------------------------------ */
.legal { padding: clamp(3rem, 6vw, 5rem) 0 5rem; }
.legal h2 { font-size: 1.55rem; margin: 2.5rem 0 .9rem; }
.legal h3 { font-size: 1.15rem; margin: 1.8rem 0 .6rem; }
.legal p, .legal li { font-size: .96rem; }
.legal ul { padding-left: 1.2rem; display: grid; gap: .35rem; margin: .8rem 0; }
.legal a { color: var(--aegean); }

/* Scroll-Animationen ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s ease, transform .85s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-32px); transition: opacity .85s ease, transform .85s cubic-bezier(.22,1,.36,1); }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(32px); transition: opacity .85s ease, transform .85s cubic-bezier(.22,1,.36,1); }
.reveal-r.in { opacity: 1; transform: none; }
/* Bild-Wipe */
.reveal-wipe { clip-path: inset(0 0 100% 0); transition: clip-path 1.05s cubic-bezier(.22,1,.36,1); }
.reveal-wipe.in { clip-path: inset(0 0 0 0); }
/* Gestaffelte Kinder */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .05s; }
.stagger.in > *:nth-child(2) { transition-delay: .13s; }
.stagger.in > *:nth-child(3) { transition-delay: .21s; }
.stagger.in > *:nth-child(4) { transition-delay: .29s; }
.stagger.in > *:nth-child(5) { transition-delay: .37s; }
.stagger.in > *:nth-child(6) { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r, .stagger > * { opacity: 1; transform: none; transition: none; }
  .reveal-wipe { clip-path: none; }
  .ornament svg path, .ornament svg circle, .feature .ico svg * { stroke-dashoffset: 0; transition: none; }
  .hero-media img, .marquee-track, .hero-scroll i, .status-pill.open i { animation: none !important; }
  .hero h1 .line > span, .hero .eyebrow, .hero p, .hero .btn-row, .hero-facts { opacity: 1 !important; transform: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Skip-Link -------------------------------------------------------------- */
.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--gold); color: #241704; padding: .8rem 1.4rem; font-weight: 700; }
.skip:focus { left: 1rem; top: 1rem; }
