/* =========================================================
   ATLANTIS FISCHRESTAURANT — Design System
   Farbwelt: Flaschengrün · Gold · Creme
   Typografie: Cormorant Garamond (Display) · Montserrat (Text)
   ========================================================= */

:root {
  --navy-900: #0b1f16;   /* tiefes Flaschengrün */
  --navy-800: #11291d;
  --navy-700: #183726;
  --navy-600: #20452f;
  --gold:     #c9a24b;
  --gold-light: #e2c988;
  --gold-dark: #a5822f;
  --cream:    #f6f1e6;
  --white:    #ffffff;
  --text-muted: #b9c8bd;

  --font-display: "Italiana", "Cormorant Garamond", Georgia, serif;
  --font-serif: "EB Garamond", Georgia, serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;

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

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
ul { list-style: none; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; font-optical-sizing: auto; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
  display: inline-block;
}
p { color: var(--text-muted); font-weight: 300; }
.lead { font-size: 1.15rem; color: var(--cream); }

/* Goldene Trennlinie */
.divider {
  width: 70px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 1.5rem 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ---------- Layout Helfer ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
.section--navy { background: var(--navy-800); }
.section--deep { background: var(--navy-900); }
.text-center { text-align: center; }
.grid { display: grid; gap: 2.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all .4s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--navy-900); }
.btn--solid { background: var(--gold); color: var(--navy-900); }
.btn--solid:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--wa { border-color: #25d366; color: #25d366; }
.btn--wa:hover { background: #25d366; color: #fff; }

/* ---------- Navigation (Wiltons-Stil: Nav links · Logo mittig · Aktionen rechts) ---------- */
.nav {
  position: relative; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 2rem;
  padding: 1.4rem 2.8rem;
  background: var(--navy-900);
}
.nav__logo { display: block; justify-self: center; }
.nav__logo img { height: 104px; width: auto; }
.nav__links { display: flex; flex-wrap: wrap; column-gap: 1.9rem; row-gap: .4rem; align-items: center; }
.nav__links a {
  font-family: var(--font-display);
  font-size: .88rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500;
  color: var(--cream); position: relative; padding: .2rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--cream); transition: width .35s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__right { display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem; }
.nav__icon { display: inline-flex; color: var(--cream); opacity: .85; }
.nav__icon:hover { opacity: 1; color: var(--white); }
.nav__cta {
  font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: .06em;
  color: var(--cream);
  border: 1px solid rgba(243,238,226,.85);
  outline: 1px solid rgba(243,238,226,.4);
  outline-offset: 4px;
  padding: 1.35rem 2.9rem;
  margin: 6px;
  white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.nav__cta:hover { background: var(--cream); color: var(--navy-900); }

.nav__lang {
  font-family: var(--font-display); font-size: .92rem; letter-spacing: .1em;
  color: var(--cream); border-bottom: 1px solid rgba(246,242,231,.4); padding-bottom: .1rem;
}
.nav__lang:hover { color: var(--gold-light); border-color: var(--gold-light); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 26px; height: 2px; background: var(--cream); transition: .3s; }

/* ---------- Hero (eingerücktes Bild im dunkelblauen Rahmen) ---------- */
.hero-frame { background: var(--navy-900); padding: .4rem 4.5rem 4.5rem; }
.hero-frame__media {
  position: relative; min-height: 86vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background-size: cover; background-position: center;
  padding: 4rem 2rem;
}
.hero-frame__media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,14,25,.18), rgba(6,14,25,.32));
}
.hero-frame__media > * { position: relative; z-index: 1; }
.hero-frame h1 {
  color: #f6f2e7;
  font-weight: 400;
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  line-height: 1.22;
  max-width: 1000px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-frame__cta {
  display: inline-block;
  margin-top: clamp(2.5rem, 8vh, 6rem);
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: .05em;
  background: #f3eee2; color: var(--navy-900);
  border: 1px solid rgba(10,28,48,.9);
  padding: 1.35rem 5.5rem;
  transition: background .35s var(--ease);
}
.hero-frame__cta:hover { background: var(--white); }
.hero-frame__addr {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: .05em;
  color: #f6f2e7;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(6,18,31,.55), rgba(6,18,31,.85)),
              var(--navy-800);
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(201,162,75,.12), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; padding: 0 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: 1.15rem; color: var(--cream); margin-bottom: 2.4rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
.hero--page { min-height: 62vh; }

/* ---------- Über-uns-Teaser (helle Sektion, Wiltons-Stil) ---------- */
.section--cream {
  background-color: #efeadd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23dfd8c4' stroke-width='1.4'%3E%3Cpath d='M80 12c-18 10-18 34 0 44 18-10 18-34 0-44z'/%3E%3Cpath d='M80 148c18-10 18-34 0-44-18 10-18 34 0 44z'/%3E%3Cpath d='M12 80c10 18 34 18 44 0-10-18-34-18-44 0z'/%3E%3Cpath d='M148 80c-10-18-34-18-44 0 10 18 34 18 44 0z'/%3E%3Ccircle cx='80' cy='80' r='6'/%3E%3C/g%3E%3C/svg%3E");
  color: var(--navy-800);
}
.about-teaser {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(3rem, 7vw, 7rem); align-items: center;
  max-width: 1150px; margin: 0 auto;
}
.about-teaser__text { max-width: 420px; justify-self: end; }
.about-teaser__text h2 {
  color: var(--navy-800);
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1.4rem;
}
.about-teaser__text p { font-family: var(--font-serif); color: #4a4437; font-size: 1.05rem; line-height: 1.85; }
.btn--navy {
  display: inline-block; margin-top: 2.8rem;
  background: var(--navy-800); color: var(--cream);
  font-family: var(--font-display); font-size: .95rem; letter-spacing: .06em;
  text-align: center; padding: .8rem 2rem;
  transition: background .35s var(--ease);
}
.btn--navy:hover { background: var(--navy-600); }
.about-teaser__media { aspect-ratio: 3/4; max-width: 460px; position: relative; overflow: hidden; background: #e3ddcc; }
.about-teaser__media img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser__media.placeholder::after {
  content: attr(data-label); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #b3ab94; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .1em;
}

/* ---------- Voll-Banner (Austern, Wiltons-Stil) ---------- */
.banner {
  position: relative; min-height: 78vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 2rem;
  background-size: cover; background-position: center;
  background-color: var(--navy-800);
}
.banner::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(6,14,25,.42);
}
.banner > * { position: relative; z-index: 1; }
.banner h2 {
  color: #f6f2e7; font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.25; max-width: 760px;
  text-shadow: 0 2px 26px rgba(0,0,0,.4);
}
.banner__link {
  margin-top: clamp(3rem, 9vh, 6rem);
  font-family: var(--font-display); font-size: 1.02rem; letter-spacing: .05em;
  color: #f6f2e7;
  border-bottom: 1px solid rgba(246,242,231,.75);
  padding-bottom: .15rem;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.banner__link:hover { color: var(--white); border-color: var(--white); }
.banner--small { min-height: 460px; justify-content: flex-end; padding-bottom: 3.5rem; }
.banner--small .banner__link { margin-top: 1.6rem; }
.banner--small h2 { font-size: clamp(1rem, 1.7vw, 1.6rem); }

/* ---------- Kachel-Trio (Speisekarte / Events / Theke) ---------- */
.tiles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem; max-width: 865px; margin: 0 auto;
}
.tile { position: relative; display: block; aspect-ratio: 6/7; overflow: hidden; background: var(--navy-700); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile::after { content: ""; position: absolute; inset: 0; background: rgba(6,14,25,.28); transition: background .4s var(--ease); }
.tile:hover::after { background: rgba(6,14,25,.16); }
.tile__label {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  color: #f6f2e7; font-family: var(--font-display);
  font-size: clamp(.85rem, 1.1vw, 1.05rem); letter-spacing: .03em;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  text-align: center; padding: 0 1rem;
}
.tile__label span { border-bottom: 1px solid rgba(246,242,231,.85); padding-bottom: .2rem; }
.tiles--two { grid-template-columns: repeat(2, 1fr); max-width: 640px; gap: 2rem; }

/* ---------- Unterseiten-Hero (eingerücktes Bild, flacher) ---------- */
.hero-frame--page .hero-frame__media { min-height: 48vh; }
.hero-frame--page h1 {
  color: #f6f2e7; font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  letter-spacing: .04em;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-frame--page .hero-frame__sub {
  margin-top: 1.2rem;
  font-family: var(--font-serif); font-size: 1.1rem; letter-spacing: .04em;
  color: #f6f2e7; text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

/* ---------- Zitat (Über uns) ---------- */
.zitat { max-width: 720px; margin: 0 auto; text-align: center; }
.zitat::before { content: "\201E"; display: block; font-family: var(--font-display); font-size: 4.5rem; line-height: .3; color: var(--gold); margin-bottom: 1.6rem; }
.zitat blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.7;
  color: #2a2419; margin: 0;
}
.zitat cite {
  display: block; margin-top: 1.6rem;
  font-family: var(--font-display); font-style: normal;
  font-size: 1rem; letter-spacing: .12em; text-transform: uppercase;
  color: #1b3a28;
}

/* ---------- Werte (Über uns) ---------- */
.werte {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1020px; margin: 0 auto; text-align: center;
}
.werte h3 { color: var(--gold); font-size: 1.5rem; letter-spacing: .06em; margin-bottom: .9rem; }
.werte p { font-family: var(--font-serif); font-size: .98rem; line-height: 1.85; color: var(--cream); }
.signatur {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .06em;
  color: var(--navy-800); margin-top: 2rem;
}

/* ---------- Leere Bildkästen ---------- */
.bildbox { position: relative; overflow: hidden; background: #e8e2d2; border: 1px solid rgba(10,28,48,.12); }
.bildbox::before {
  content: attr(data-label); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); letter-spacing: .18em; text-transform: uppercase;
  font-size: .78rem; color: #a89f88; text-align: center; padding: 0 1rem;
}
.bildbox img { position: relative; width: 100%; height: 100%; object-fit: cover; }
.bildbox--dark { background: var(--navy-700); border-color: rgba(246,242,231,.14); }
.bildbox--dark::before { color: rgba(246,242,231,.4); }

/* ---------- Speisekarte ---------- */
.menu { max-width: 780px; margin: 0 auto; }
.menu-jump { display: flex; gap: 2.5rem; justify-content: center; margin-bottom: 1rem; flex-wrap: wrap; }
.menu-jump a {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .08em;
  color: var(--navy-800); border-bottom: 1px solid rgba(10,28,48,.4); padding-bottom: .15rem;
}
.menu-jump a:hover { border-color: var(--navy-800); }
.menu-cat { margin-top: 4rem; }
.menu-cat h2 {
  text-align: center; color: var(--navy-800);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem); letter-spacing: .1em;
  margin-bottom: .3rem;
}
.menu-cat .menu-sub {
  text-align: center; font-family: var(--font-serif); font-style: italic;
  color: #6b6352; margin-bottom: 1.2rem; font-size: .98rem;
}
.menu-cat h2 + .menu-item, .menu-cat h2 + .menu-item ~ .menu-item { }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  padding: .75rem 0; border-bottom: 1px dashed rgba(10,28,48,.16);
}
.menu-item__name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: #141e2c; }
.menu-item__desc { font-family: var(--font-serif); font-size: .98rem; color: #6b6352; line-height: 1.6; }
.menu-item__price { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--navy-800); white-space: nowrap; }
.menu-note {
  text-align: center; font-family: var(--font-serif); font-size: .85rem;
  color: #6b6352; margin-top: 3.5rem; line-height: 1.8;
}

/* ---------- SEO-Text & FAQ ---------- */
.seo-text { max-width: 760px; margin: 0 auto; text-align: center; }
.seo-text h2 { color: var(--navy-800); font-size: clamp(1.7rem, 2.6vw, 2.3rem); letter-spacing: .06em; margin-bottom: 1.4rem; }
.seo-text p { font-family: var(--font-serif); font-size: 1.02rem; line-height: 1.9; color: #4a4437; margin-bottom: 1.2rem; }
.seo-text a { color: var(--navy-800); border-bottom: 1px solid rgba(10,28,48,.35); padding-bottom: .05rem; }
.seo-text a:hover { border-color: var(--navy-800); }
.faq { max-width: 760px; margin: 3rem auto 0; text-align: left; }
.faq details { border-bottom: 1px solid rgba(10,28,48,.15); padding: 1.1rem 0; }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .04em; color: var(--navy-800);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--navy-800); }
.faq details[open] summary::after { content: "–"; }
.faq details p { font-family: var(--font-serif); font-size: .98rem; line-height: 1.85; color: #4a4437; margin-top: .8rem; }

/* ---------- Kontakt-/Reservierungs-Optionen ---------- */
.optionen { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 4rem); max-width: 940px; margin: 0 auto; text-align: center; }
.optionen h3 { color: var(--navy-800); font-size: 1.45rem; letter-spacing: .06em; margin-bottom: .7rem; }
.optionen p { font-family: var(--font-serif); font-size: 1rem; color: #4a4437; line-height: 1.85; }
.optionen a { color: var(--navy-800); border-bottom: 1px solid rgba(10,28,48,.35); padding-bottom: .05rem; }
.optionen a:hover { border-color: var(--navy-800); }

/* ---------- Dunkle Ornament-Sektion ---------- */
.section--navy-pattern {
  background-color: var(--navy-900);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23163122' stroke-width='1.4'%3E%3Cpath d='M80 12c-18 10-18 34 0 44 18-10 18-34 0-44z'/%3E%3Cpath d='M80 148c18-10 18-34 0-44-18 10-18 34 0 44z'/%3E%3Cpath d='M12 80c10 18 34 18 44 0-10-18-34-18-44 0z'/%3E%3Cpath d='M148 80c-10-18-34-18-44 0 10 18 34 18 44 0z'/%3E%3Ccircle cx='80' cy='80' r='6'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- Foto-Raster (6 Kacheln) ---------- */
.foto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  max-width: 940px; margin: 0 auto;
}
.foto-grid figure { aspect-ratio: 6/7; overflow: hidden; background: var(--navy-700); margin: 0; }
.foto-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.foto-grid figure:hover img { transform: scale(1.04); }

/* ---------- Standort / Kontakt / Karte ---------- */
.info-map {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.info-map__text { text-align: center; }
.info-map__text h3 {
  color: var(--gold); font-size: 1.35rem; font-weight: 400;
  margin: 2.2rem 0 .9rem;
}
.info-map__text h3:first-child { margin-top: 0; }
.info-map__text p {
  font-family: var(--font-serif); font-size: 1rem; line-height: 1.9;
  color: var(--cream);
}
.info-map__text a { border-bottom: 1px solid rgba(246,242,231,.5); padding-bottom: .05rem; }
.info-map__text a:hover { border-color: var(--white); color: var(--white); }
.info-map__map { border: 1px solid rgba(246,242,231,.18); }
.info-map__map iframe {
  width: 100%; height: 440px; display: block;
  filter: invert(88%) hue-rotate(185deg) saturate(.35) brightness(.9);
}

/* ---------- Instagram ---------- */
.insta-btn {
  display: inline-block;
  font-family: var(--font-display); font-size: .95rem; letter-spacing: .05em;
  color: var(--cream);
  border: 1px solid rgba(243,238,226,.7);
  padding: 1rem 2.4rem;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.insta-btn:hover { background: var(--cream); color: var(--navy-900); }
.insta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .9rem; max-width: 900px; margin: 3rem auto 0;
}
.insta-grid a { aspect-ratio: 1; overflow: hidden; background: var(--navy-700); display: block; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-grid a:hover img { transform: scale(1.06); }
.insta-embed-slot { max-width: 940px; min-height: 480px; margin: 3rem auto 0; }
.insta-embed-slot iframe { width: 100%; border: 0; }
.insta-posts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; max-width: 1240px; margin: 3rem auto 0;
}
.insta-post { background: var(--navy-700); border: 1px solid rgba(246,242,231,.12); }
.insta-post iframe { width: 100%; height: 420px; border: 0; display: block; background: #fff; }

/* ---------- Feature / Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split__media {
  aspect-ratio: 4/5; background: var(--navy-700);
  border: 1px solid rgba(201,162,75,.25); position: relative; overflow: hidden;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media.placeholder::after {
  content: attr(data-label); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,162,75,.5); font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .1em;
}

/* ---------- Karten (Highlights) ---------- */
.cards { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--navy-700); border: 1px solid rgba(201,162,75,.18);
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: var(--gold); }
.card__media { aspect-ratio: 3/2; background: var(--navy-600); position: relative; overflow: hidden; }
.card__media img { width:100%; height:100%; object-fit: cover; }
.card__media.placeholder::after {
  content: attr(data-label); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,162,75,.45); font-family: var(--font-display); font-size: 1rem;
}
.card__body { padding: 1.8rem; }
.card__body h3 { color: var(--white); margin-bottom: .5rem; }
.card__body p { font-size: .92rem; }

/* ---------- Öffnungszeiten ---------- */
.hours { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 780px; margin: 0 auto; }
.hours__block h3 { color: var(--gold); margin-bottom: 1rem; }
.hours__row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .92rem; }
.hours__row span:last-child { color: var(--white); }

/* ---------- Accordion Speisekarte ---------- */
.accordion { max-width: 860px; margin: 0 auto; }
.acc-item { border: 1px solid rgba(201,162,75,.22); margin-bottom: 1rem; background: var(--navy-700); }
.acc-head {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.5rem 1.8rem; display: flex; align-items: center; justify-content: space-between;
  color: var(--cream); font-family: var(--font-display); font-size: 1.5rem;
}
.acc-head:hover { color: var(--gold); }
.acc-head .icon { color: var(--gold); font-size: 1.6rem; transition: transform .4s var(--ease); }
.acc-item.open .acc-head .icon { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc-body__inner { padding: 0 1.8rem 1.8rem; }
.dish { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px dashed rgba(255,255,255,.1); }
.dish__name { color: var(--white); font-weight: 400; }
.dish__desc { font-size: .85rem; color: var(--text-muted); }
.dish__price { color: var(--gold); white-space: nowrap; font-weight: 500; }

/* PDF Viewer */
.pdf-wrap { max-width: 960px; margin: 3rem auto 0; }
.pdf-frame {
  width: 100%; height: 80vh; border: 1px solid rgba(201,162,75,.3); background: var(--navy-800);
}
.pdf-note { text-align:center; font-size: .85rem; margin-top: 1rem; }

/* ---------- Galerie ---------- */
.gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__item { aspect-ratio: 1; background: var(--navy-700); overflow: hidden; position: relative; border: 1px solid rgba(201,162,75,.15); }
.gallery__item img { width:100%; height:100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item.placeholder::after {
  content: "ATLANTIS"; position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  color: rgba(201,162,75,.35); font-family: var(--font-display); letter-spacing:.2em; font-size:.9rem;
}
.insta-embed { max-width: 960px; margin: 0 auto; min-height: 300px; }

/* ---------- Reservierung / Kontakt Karten ---------- */
.contact-grid { grid-template-columns: repeat(3, 1fr); }
.contact-card { text-align: center; padding: 2.5rem 1.5rem; border: 1px solid rgba(201,162,75,.2); background: var(--navy-700); }
.contact-card .ic { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.contact-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .6rem; }
.contact-card a { color: var(--gold); }
.map-wrap { margin-top: 3rem; border: 1px solid rgba(201,162,75,.3); }
.map-wrap iframe { width: 100%; height: 420px; display: block; filter: grayscale(.3) contrast(1.1); }

.reserve-hero { text-align:center; max-width: 640px; margin: 0 auto; }
.reserve-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:2rem; }

/* ---------- Footer (Wiltons-Stil) ---------- */
.footer {
  background-color: var(--navy-900);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23163122' stroke-width='1.4'%3E%3Cpath d='M80 12c-18 10-18 34 0 44 18-10 18-34 0-44z'/%3E%3Cpath d='M80 148c18-10 18-34 0-44-18 10-18 34 0 44z'/%3E%3Cpath d='M12 80c10 18 34 18 44 0-10-18-34-18-44 0z'/%3E%3Cpath d='M148 80c-10-18-34-18-44 0 10 18 34 18 44 0z'/%3E%3Ccircle cx='80' cy='80' r='6'/%3E%3C/g%3E%3C/svg%3E");
  border-top: 1px solid rgba(246,242,231,.12);
  padding: 4.5rem 0 2rem;
}
.footer__grid { display: grid; grid-template-columns: 1.1fr 1.1fr 1fr 1fr 1.1fr; gap: 2.5rem; align-items: center; }
.footer__col { text-align: center; }
.footer__logoimg { height: 110px; width: auto; margin: 0 auto 1.2rem; }
.footer p, .footer li { font-family: var(--font-serif); font-size: .95rem; color: var(--cream); margin-bottom: .5rem; line-height: 1.8; }
.footer ul { margin: 0; }
.footer__links a {
  display: block; font-family: var(--font-serif); font-size: .95rem; color: var(--cream);
  margin-bottom: .9rem;
  border-bottom: none;
}
.footer__links a span { border-bottom: 1px solid rgba(246,242,231,.5); padding-bottom: .05rem; }
.footer__links a:hover { color: var(--white); }
.footer__links a:hover span { border-color: var(--white); }
.footer__social { display: flex; gap: 1rem; margin-top: 1.2rem; justify-content: center; }
.footer__social a { color: var(--cream); opacity: .8; }
.footer__social a:hover { opacity: 1; color: var(--white); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
  margin-top: 3.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem; color: var(--text-muted);
}
.footer__credit a { border-bottom: 1px solid rgba(246,242,231,.4); padding-bottom: .05rem; }
.footer__credit a:hover { color: var(--white); border-color: var(--white); }
.footer__rechtliches a { border-bottom: 1px solid rgba(246,242,231,.3); padding-bottom: .05rem; }
.footer__rechtliches a:hover { color: var(--white); border-color: var(--white); }

/* Auszeichnungs-Badges */
.footer__badges { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.badge {
  display: block; width: 170px; padding: .9rem 1rem;
  background: #f3eee2; color: var(--navy-900);
  text-align: center; font-family: var(--font-serif);
  transition: transform .3s var(--ease);
}
.badge:hover { transform: translateY(-3px); }
.badge__title { display: block; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .06em; }
.badge__stars { display: block; color: #d9a406; font-size: .95rem; letter-spacing: .15em; margin: .2rem 0; }
.badge__sub { display: block; font-size: .8rem; color: #4a4437; }
.badge--falstaff .badge__circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: #d96b2f; color: #fff;
  font-family: var(--font-body); font-weight: 500; font-size: 1.05rem;
  margin-bottom: .4rem;
}

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 { color: var(--navy-800); font-size: clamp(2rem, 3.4vw, 2.8rem); letter-spacing: .06em; margin-bottom: 2rem; }
.legal h2 { color: var(--navy-800); font-size: 1.45rem; letter-spacing: .05em; margin: 2.5rem 0 .8rem; }
.legal p, .legal li { font-family: var(--font-serif); font-size: 1rem; line-height: 1.85; color: #3c362a; margin-bottom: .8rem; }
.legal ul { margin: 0 0 .8rem 1.2rem; list-style: disc; }
.legal a { color: var(--navy-800); border-bottom: 1px solid rgba(10,28,48,.35); padding-bottom: .05rem; }
.legal .hinweis { background: #e8e2d2; border-left: 3px solid var(--gold); padding: 1rem 1.2rem; font-size: .95rem; }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: var(--navy-800); border-top: 1px solid rgba(201,162,75,.4);
  padding: 1.4rem 2rem; display: none;
}
.cookie-banner.sichtbar { display: block; }
.cookie-banner__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cookie-banner p { font-family: var(--font-serif); font-size: .92rem; color: var(--cream); flex: 1 1 380px; margin: 0; line-height: 1.6; }
.cookie-banner p a { border-bottom: 1px solid rgba(246,242,231,.5); }
.cookie-banner__actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cookie-banner button {
  font-family: var(--font-display); font-size: .95rem; letter-spacing: .05em;
  padding: .75rem 1.6rem; cursor: pointer; border: 1px solid rgba(201,162,75,.8);
  background: transparent; color: var(--cream);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.cookie-banner button.akzeptieren { background: var(--gold); color: var(--navy-900); }
.cookie-banner button:hover { background: var(--gold-light); color: var(--navy-900); }

/* Blockierte Embeds */
.embed-consent {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: var(--navy-700); text-align: center; padding: 1.5rem;
}
.embed-consent p { font-family: var(--font-serif); font-size: .88rem; color: var(--cream); margin: 0; line-height: 1.6; max-width: 420px; }
.embed-consent button {
  font-family: var(--font-display); font-size: .9rem; letter-spacing: .05em;
  padding: .7rem 1.5rem; cursor: pointer;
  border: 1px solid rgba(201,162,75,.8); background: transparent; color: var(--cream);
}
.embed-consent button:hover { background: var(--gold); color: var(--navy-900); }
.embed-wrap { position: relative; }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Float WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4); transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float::before {
  content: "Tisch reservieren";
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: rgba(11,31,22,.92); color: var(--cream);
  font-family: var(--font-display); font-size: .8rem; letter-spacing: .06em;
  padding: .45rem 1rem; border-radius: 999px; white-space: nowrap;
  border: 1px solid rgba(201,162,75,.5);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .nav { padding: 1.2rem 1.8rem; gap: 1.2rem; }
  .nav__links { column-gap: 1.2rem; }
  .nav__links a { font-size: .85rem; letter-spacing: .12em; }
  .nav__cta { padding: 1rem 1.8rem; font-size: .95rem; }
  .nav__logo img { height: 84px; }
}
@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px);
    background: var(--navy-800); flex-direction: column; justify-content: center;
    gap: 2rem; padding: 3rem; transform: translateX(100%); transition: transform .4s var(--ease);
    border-left: 1px solid rgba(243,238,226,.2);
  }
  .nav__links.open { transform: none; }
  .nav__toggle { display: flex; z-index: 101; order: -1; }
  .nav__logo img { height: 72px; }
  .nav__icon { display: none; }
  .nav__cta { outline: none; margin: 0; padding: .85rem 1.3rem; font-size: .9rem; }
  .hero-frame { padding: .4rem 1.2rem 1.6rem; }
  .hero-frame__media { min-height: 72vh; }
  .hero-frame__cta { padding: 1.1rem 3rem; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-teaser { grid-template-columns: 1fr; }
  .tiles, .tiles--two { grid-template-columns: 1fr; max-width: 440px; }
  .foto-grid { grid-template-columns: repeat(2, 1fr); }
  .optionen { grid-template-columns: 1fr; }
  .werte { grid-template-columns: 1fr; }
  .hero-frame__cta { padding: 1.1rem 2.5rem; }
  .menu-item { flex-wrap: wrap; gap: .3rem 1rem; }
  .menu-item__price { white-space: normal; }
  .footer__badges { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .info-map { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-posts { grid-template-columns: repeat(2, 1fr); }
  .about-teaser__text { justify-self: start; }
  .about-teaser__media { max-width: 100%; }
  .cards, .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hours { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .container { padding: 0 1.3rem; }
  .nav { padding: 1rem 1.1rem; }
  .nav__logo img { height: 60px; }
  .nav__cta { padding: .7rem .9rem; font-size: .8rem; }
  .hero-frame { padding: .3rem .8rem 1rem; }
  .hero-frame__media { min-height: 62vh; }
  .foto-grid { grid-template-columns: 1fr; }
  .info-map__map iframe { height: 320px; }
  .insta-posts { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}


/* ---------- Grün-Gold-Akzente ---------- */
.nav__links a:hover, .nav__links a.active { color: var(--gold-light); }
.nav__links a::after { background: var(--gold); }
.nav__cta { border-color: rgba(201,162,75,.85); outline-color: rgba(201,162,75,.4); color: var(--gold-light); }
.nav__cta:hover { background: var(--gold); color: var(--navy-900); }
.hero-frame__cta { border-color: rgba(17,41,29,.9); }
.banner__link { border-color: rgba(201,162,75,.75); color: #f0e6cd; }
.banner__link:hover { color: var(--gold-light); border-color: var(--gold-light); }
.tile__label span { border-color: rgba(201,162,75,.85); }
.about-teaser__text h2, .seo-text h2, .menu-cat h2, .optionen h3 { color: #1b3a28; }
.btn--navy { background: #11291d; }
.btn--navy:hover { background: #20452f; }
.menu-jump a { color: #1b3a28; border-color: rgba(27,58,40,.4); }
.info-map__text a:hover, .footer__links a:hover { color: var(--gold-light); }
.insta-btn { border-color: rgba(201,162,75,.7); }
.insta-btn:hover { background: var(--gold); color: var(--navy-900); }
