/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --arancio:       #D4742A;
  --arancio-light: #E8A96A;
  --lago:          #1B3A52;
  --lago-mid:      #2C5F7A;
  --sand:          #F5F0E8;
  --warm-white:    #FDFAF6;
  --charcoal:      #2A2420;
  --mid-gray:      #7A7068;
  --light-gray:    #EDE9E2;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
p { line-height: 1.75; color: var(--mid-gray); }

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arancio);
  margin-bottom: 1rem;
  display: block;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Navigation ───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
nav.scrolled {
  background: rgba(253, 250, 246, 0.97);
  padding: 1rem 3rem;
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.04em;
  color: white;
  transition: color var(--transition);
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
nav.scrolled .nav-logo-main { color: var(--lago); }
nav.scrolled .nav-logo-sub { color: var(--arancio); }
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.footer-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.04em;
  color: white;
}
.footer-logo-sub {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arancio-light);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--arancio);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-book {
  background: var(--arancio);
  color: white !important;
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.nav-book:hover { background: var(--lago); }
.nav-book::after { display: none !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  transition: background var(--transition);
  position: relative;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
nav.scrolled .hamburger, nav.scrolled .hamburger::before, nav.scrolled .hamburger::after { background: var(--charcoal); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--lago);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 58, 82, 0.35) 0%,
    rgba(27, 58, 82, 0.15) 40%,
    rgba(27, 58, 82, 0.55) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 0 2rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.2s both;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  animation: fadeUp 1s 0.3s both;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.4s both;
}
.hero h1 em { font-style: italic; color: var(--arancio-light); }
.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp 1s 0.6s both;
  background: rgba(15, 35, 50, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1rem 1.5rem;
  border-radius: 4px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 1s 0.8s both;
}
.btn-primary {
  background: var(--arancio);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--lago); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.7);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  opacity: 0.7;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, white, transparent);
  animation: scrollPulse 2s infinite;
}

/* ── USP Strip ────────────────────────────────────────── */
.usp-strip {
  background: var(--lago);
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.usp-item:last-child { border-right: none; }
.usp-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.usp-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.usp-item span { font-size: 0.72rem; opacity: 0.7; letter-spacing: 0.05em; }

/* ── Sections shared ──────────────────────────────────── */
section { padding: 6rem 3rem; }
.container { max-width: 1200px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── Intro ────────────────────────────────────────────── */
.intro { background: var(--warm-white); }
.intro-text h2 { margin-bottom: 1.5rem; color: var(--lago); }
.intro-text p { margin-bottom: 1rem; font-size: 1.02rem; }
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-item { border-left: 2px solid var(--arancio); padding-left: 1rem; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--lago);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--mid-gray); letter-spacing: 0.1em; margin-top: 0.2rem; }
.intro-image-wrap { position: relative; }
.intro-image-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius);
}
.intro-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: white;
  color: var(--lago);
  padding: 1.25rem 1.5rem;
  max-width: 200px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(27, 58, 82, 0.18);
}
.intro-badge img { display: block; width: 100%; max-width: 130px; height: auto; margin: 0 auto 0.6rem; }
.intro-badge span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); }

/* ── Küche / Gerichte ─────────────────────────────────── */
.kueche { background: var(--sand); }
.kueche-header { text-align: center; margin-bottom: 3.5rem; }
.kueche-header h2 { color: var(--lago); margin-bottom: 0.75rem; }
.kueche-header p { max-width: 550px; margin: 0 auto; }
.dish-card {
  background: white;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.dish-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--light-gray), #e0d8cc);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.dish-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.dish-placeholder-icon { font-size: 2rem; opacity: 0.3; }
.dish-placeholder span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  opacity: 0.6;
}
.dish-body { padding: 1.75rem; }
.dish-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--arancio);
  border: 1px solid var(--arancio);
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.75rem;
}
.dish-body h3 { font-size: 1.4rem; color: var(--lago); margin-bottom: 0.5rem; }
.dish-body p { font-size: 0.88rem; margin-bottom: 1.25rem; }
.dish-items { list-style: none; margin-bottom: 1.5rem; }
.dish-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.88rem;
}
.dish-items li:last-child { border-bottom: none; }
.dish-items li span { color: var(--mid-gray); font-size: 0.8rem; }
.dish-items li span:first-child { flex: 1; }
.dish-price { color: var(--arancio) !important; font-weight: 500; white-space: nowrap; flex-shrink: 0; }

/* ── Menü-Karte Teaser ────────────────────────────────── */
.menu-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--light-gray);
  background: white;
  border-radius: var(--radius);
}
.menu-note p { color: var(--mid-gray); font-size: 0.9rem; max-width: 460px; margin: 0 auto 1.25rem; }
.menu-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--arancio);
  color: var(--arancio);
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.dl-btn:hover { background: var(--arancio); color: white; }

/* ── Terrasse ─────────────────────────────────────────── */
.terrasse { background: var(--lago); color: white; }
.terrasse .grid-2 { gap: 6rem; }
.terrasse-text .section-label { color: var(--arancio-light); }
.terrasse-text h2 { color: white; margin-bottom: 1.5rem; }
.terrasse-text p { color: rgba(255,255,255,0.75); margin-bottom: 1rem; font-size: 1rem; }
.terrasse-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.detail-icon { font-size: 1.3rem; margin-top: 0.1rem; }
.detail-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.2rem;
}
.detail-text span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.terrasse-image-wrap { position: relative; }
.terrasse-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}
.terrasse-quote {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--arancio);
  color: white;
  padding: 1.5rem 2rem;
  max-width: 280px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.4;
}

/* ── Bildmosaik ───────────────────────────────────────── */
.galerie { background: var(--warm-white); padding: 6rem 0; }
.galerie-header { text-align: center; margin-bottom: 3rem; padding: 0 3rem; }
.galerie-header h2 { color: var(--lago); margin-bottom: 0.75rem; }
.img-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 220px 320px 220px 260px;
  gap: 4px;
}
.img-mosaic-item { overflow: hidden; }
.img-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.img-mosaic-item:hover img { transform: scale(1.05); }
.img-mosaic-item:nth-child(1)  { grid-column: 1;     grid-row: 1 / 3; }
.img-mosaic-item:nth-child(2)  { grid-column: 2;     grid-row: 1; }
.img-mosaic-item:nth-child(3)  { grid-column: 3;     grid-row: 1; }
.img-mosaic-item:nth-child(4)  { grid-column: 2;     grid-row: 2; }
.img-mosaic-item:nth-child(5)  { grid-column: 3;     grid-row: 2; }
.img-mosaic-item:nth-child(6)  { grid-column: 1;     grid-row: 3 / 5; }
.img-mosaic-item:nth-child(6) img { object-position: center top; }
.img-mosaic-item:nth-child(7)  { grid-column: 2;     grid-row: 3; }
.img-mosaic-item:nth-child(8)  { grid-column: 3;     grid-row: 3; }
.img-mosaic-item:nth-child(9)  { grid-column: 2;     grid-row: 4; }
.img-mosaic-item:nth-child(10) { grid-column: 3;     grid-row: 4; }
.img-mosaic-item:nth-child(11) { grid-column: 1;     grid-row: 5; }
.img-mosaic-item:nth-child(12) { grid-column: 2 / 4;  grid-row: 5; }

.video-teaser { text-align: center; margin-top: 3rem; padding: 0 3rem; }
.video-teaser p {
  font-size: 0.8rem;
  color: var(--mid-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.video-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.video-item {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-gray);
}
.insta-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-insta-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--lago), var(--arancio));
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform var(--transition);
}
.video-insta-cta:hover { transform: translateY(-4px); }
@media (max-width: 768px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tessinerabend ────────────────────────────────────── */
.tessinerabend { background: var(--sand); }
.tessinerabend .grid-2 { gap: 5rem; }
.tessinerabend-text h2 { color: var(--lago); margin-bottom: 1.5rem; }
.tessinerabend-text p { margin-bottom: 1rem; }
.tessinerabend-highlight {
  margin-top: 2.5rem;
  background: var(--lago);
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.tessinerabend-highlight-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.tessinerabend-highlight strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.25rem;
}
.tessinerabend-highlight span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.tessinerabend-image {
  position: relative;
}
.tessinerabend-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.tessinerabend-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--arancio);
  color: white;
  padding: 1.25rem 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  text-align: center;
  line-height: 1.4;
}
.tessinerabend-badge strong { font-size: 1.4rem; display: block; }

/* ── Lage ─────────────────────────────────────────────── */
.lage { background: var(--warm-white); }
.lage .grid-2 { gap: 5rem; }
.lage-text h2 { color: var(--lago); margin-bottom: 1.5rem; }
.lage-text p { margin-bottom: 1rem; }
.lage-list { list-style: none; margin-top: 1.5rem; }
.lage-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
}
.lage-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--arancio);
  border-radius: 50%;
  flex-shrink: 0;
}
.map-placeholder {
  background: var(--lago-mid);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.8);
}

/* ── Öffnungszeiten Strip ─────────────────────────────── */
.oeffnungszeiten {
  background: var(--charcoal);
  color: white;
  padding: 3rem;
}
.oeffnungszeiten-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.oz-item { padding: 1.5rem; border-right: 1px solid rgba(255,255,255,0.08); }
.oz-item:last-child { border-right: none; }
.oz-icon { font-size: 1.4rem; margin-bottom: 0.75rem; opacity: 0.6; }
.oz-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0.3rem;
}
.oz-item span { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials { background: var(--sand); }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header h2 { color: var(--lago); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--arancio);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.star { color: var(--arancio); font-size: 0.85rem; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.testimonial-author strong { font-size: 0.85rem; font-weight: 500; display: block; }
.testimonial-author span { font-size: 0.72rem; color: var(--mid-gray); }

/* ── Reservierung ─────────────────────────────────────── */
.reservierung { background: var(--warm-white); }
.reservierung-header { text-align: center; margin-bottom: 3.5rem; }
.reservierung-header h2 { color: var(--lago); }
.reservierung-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.reservierung-info h3 { color: var(--lago); margin-bottom: 2rem; font-size: 1.6rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.contact-icon { font-size: 1.2rem; margin-top: 0.1rem; }
.contact-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--arancio); margin-bottom: 0.25rem; }
.contact-value { font-size: 0.95rem; color: var(--charcoal); }
.contact-value a { transition: color var(--transition); }
.contact-value a:hover { color: var(--arancio); }
.book-form {
  background: var(--sand);
  padding: 2.5rem;
  border-radius: var(--radius);
}
.book-form h3 { color: var(--lago); margin-bottom: 1.5rem; font-size: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.4rem;
}
.form-group label.required::after {
  content: ' *';
  color: var(--arancio);
}
.form-required-note {
  font-size: 0.75rem;
  color: var(--mid-gray);
  margin: 0.75rem 0 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--light-gray);
  background: white;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--arancio); }
.form-submit {
  width: 100%;
  margin-top: 1rem;
  background: var(--arancio);
  color: white;
  border: none;
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--lago); }
.form-success {
  background: var(--lago);
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 2rem;
}
.form-error {
  background: #fdeceb;
  border: 1px solid #d4742a;
  color: var(--charcoal);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

/* ── Gutschein ────────────────────────────────────────── */
.gutschein { background: var(--sand); }
.gutschein-header { text-align: center; margin-bottom: 2.5rem; }
.gutschein-header h2 { color: var(--lago); }
.gutschein-header p { max-width: 560px; margin: 1rem auto 0; color: var(--mid-gray); }
.gutschein-form-wrap { max-width: 640px; margin: 0 auto; background: white; }

/* ── Footer ───────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: white;
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-brand img { height: 48px; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--arancio);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--arancio-light); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--arancio); }

/* ── Rechtsseiten (Impressum/Datenschutz) ──────────────── */
.legal-page { padding-top: 10rem; }
.legal-page h1 { color: var(--lago); font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.4rem; color: var(--lago); margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-page p, .legal-page li { margin-bottom: 0.75rem; font-size: 0.95rem; }
.legal-page ul { padding-left: 1.5rem; }
.legal-page a { color: var(--arancio); text-decoration: underline; }

/* ── Cookie-Banner ─────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--charcoal);
  color: white;
  padding: 1.25rem 3rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 100vw;
  box-sizing: border-box;
}
#cookie-banner.show { display: flex; }
#cookie-banner p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0; max-width: 800px; min-width: 0; overflow-wrap: break-word; }
#cookie-accept {
  background: var(--arancio);
  color: white;
  border: none;
  padding: 0.7rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
#cookie-accept:hover { background: var(--lago); }

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 0.3; }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── Language Switcher ────────────────────────────────── */
.lang-switcher {
  display: flex;
  gap: 0;
  align-items: center;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0.55rem;
  transition: color var(--transition);
  position: relative;
}
.lang-btn + .lang-btn::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.lang-btn:hover { color: white; }
.lang-btn.active { color: var(--arancio-light); font-weight: 500; }
nav.scrolled .lang-btn { color: var(--mid-gray); }
nav.scrolled .lang-btn.active { color: var(--arancio); }
nav.scrolled .lang-btn + .lang-btn::before { background: var(--light-gray); }
nav.scrolled .lang-btn:hover { color: var(--charcoal); }
.lang-flag {
  display: none;
  font-size: 1rem;
  line-height: 1;
  filter: grayscale(0.35) opacity(0.85);
  transition: filter var(--transition);
}
.lang-btn.active .lang-flag, .lang-btn:hover .lang-flag { filter: none; }

/* ── Floating CTA ─────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--arancio);
  color: white;
  padding: 0.85rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(212, 116, 42, 0.4);
  cursor: pointer;
  z-index: 50;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  opacity: 0;
  transform: translateY(10px);
}
.floating-cta.show { opacity: 1; transform: translateY(0); }
.floating-cta:hover { background: var(--lago); box-shadow: 0 8px 25px rgba(27, 58, 82, 0.4); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .tessinerabend-badge { display: none; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 2rem 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    color: var(--charcoal);
    padding: 1.15rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--light-gray);
  }
  .nav-links .nav-book {
    text-align: center;
    margin-top: 1.25rem;
    padding: 1rem;
    border-bottom: none;
  }

  /* Sprachumschalter als Dropdown: zugeklappt nur aktive Flagge, aufgeklappt alle */
  .lang-text { display: none; }
  .lang-flag { display: inline-block; }
  .lang-switcher { position: relative; }
  .lang-btn { display: none; padding: 0.4rem; }
  .lang-btn.active { display: inline-flex; align-items: center; }
  .lang-switcher.open {
    position: absolute;
    top: 100%; right: 0;
    margin-top: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--warm-white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 0.25rem 0;
    min-width: 140px;
    z-index: 150;
  }
  .lang-switcher.open .lang-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    color: var(--charcoal);
    padding: 0.75rem 1.1rem;
  }
  .lang-switcher.open .lang-btn .lang-text { display: inline; font-size: 0.8rem; }
  .lang-switcher.open .lang-btn.active { color: var(--arancio); font-weight: 500; }
  .lang-switcher.open .lang-btn + .lang-btn::before { display: none; }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .usp-strip { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reservierung-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .img-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 160px; }
  .img-mosaic-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .terrasse-quote { display: none; }
  .intro-badge { display: none; }
  .oeffnungszeiten-inner { grid-template-columns: 1fr; }
  #cookie-banner { padding: 1rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  #cookie-banner p { width: 100%; }
  #cookie-accept { width: 100%; text-align: center; }
}
