/* =============================================================================
   MÜLLERS Bootsvermietung am Schluchsee — Design-System
   Eleganz am Wasser. Cormorant Garamond + Manrope.
   Adaptiert von biomarine.terrysystem.skin · 2026
   -----------------------------------------------------------------------------
   Reuse-Hinweis fuer Unterseiten (standort-*.html, preise.html, kontakt.html):
   Header  .site-header / .nav        Hero    .hero / .hero__inner
   Section .section / .section--dark  Card    .card / .boat-card / .place-card
   Button  .btn .btn--primary / --ghost / --gold
   Preise  .pricing / .price-table    Footer  .site-footer
   Reveal  [data-reveal]              Container .container
============================================================================= */

/* -----------------------------------------------------------------------------
   1. Design-Tokens
----------------------------------------------------------------------------- */
:root {
  /* Palette */
  --navy-deep: #0C2D3A;
  --teal:      #2F6B70;
  --sage:      #7BAEA3;
  --sand:      #F2F5F3;
  --ink:       #2A3338;
  --muted:     #6B7280;
  --gold:      #C9A24B;
  --white:     #FFFFFF;

  /* Abgeleitete Toene */
  --navy-90:   rgba(12, 45, 58, 0.90);
  --navy-72:   rgba(12, 45, 58, 0.72);
  --navy-40:   rgba(12, 45, 58, 0.40);
  --sage-12:   rgba(123, 174, 163, 0.12);
  --sand-line: #E2E9E6;
  --gold-line: rgba(201, 162, 75, 0.45);

  /* Typografie */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid Type-Skala (clamp = mobile-first, skaliert sanft hoch) */
  --fs-hero:   clamp(2.7rem, 6.2vw, 5.4rem);
  --fs-h1:     clamp(2.2rem, 4.6vw, 3.8rem);
  --fs-h2:     clamp(1.9rem, 3.6vw, 3.0rem);
  --fs-h3:     clamp(1.35rem, 2.1vw, 1.7rem);
  --fs-lead:   clamp(1.1rem, 1.5vw, 1.32rem);
  --fs-body:   1.0625rem;
  --fs-small:  0.875rem;
  --fs-eyebrow:0.78rem;

  /* Raster & Rhythmus */
  --container:  1200px;
  --container-narrow: 880px;
  --gutter:     clamp(1.25rem, 4vw, 3rem);
  --section-y:  clamp(4.5rem, 9vw, 8rem);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-pill: 999px;

  /* Schatten — weich, ruhig */
  --shadow-sm:  0 4px 16px rgba(12, 45, 58, 0.06);
  --shadow-md:  0 14px 40px rgba(12, 45, 58, 0.10);
  --shadow-lg:  0 28px 70px rgba(12, 45, 58, 0.18);

  /* Bewegung */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:     0.25s var(--ease);
  --t-slow:     0.7s var(--ease);

  --header-h:   76px;
}

/* -----------------------------------------------------------------------------
   2. Reset / Basis
----------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.72;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--navy-deep);
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--sage); color: var(--white); }

/* -----------------------------------------------------------------------------
   3. Layout-Utilities
----------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Helle / dunkle Vollbreit-Sektionen im Wechsel */
.section--sand { background: var(--sand); }
.section--dark {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--sage); }
.section--dark .lead { color: rgba(255, 255, 255, 0.78); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }

/* Eyebrow — kleines Label ueber Headlines */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* Section-Header */
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.text-center { margin-inline: auto; }
.section-head.text-center .eyebrow::before { display: none; }
.section-head.text-center .eyebrow { gap: 0; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}

/* Gold-Hairline (Schwarzwald-Holz-Akzent) */
.hairline {
  width: 56px; height: 2px;
  background: var(--gold);
  border: 0; margin: 1.4rem 0 0;
}
.hairline--center { margin-inline: auto; }

/* -----------------------------------------------------------------------------
   4. Buttons
----------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 1rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast),
              color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(47, 107, 112, 0.32);
}
.btn--primary:hover { background: #275b60; box-shadow: 0 16px 34px rgba(47, 107, 112, 0.40); }

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 26px rgba(201, 162, 75, 0.30);
}
.btn--gold:hover { background: #bd9540; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }

.btn--ghost-dark {
  background: transparent;
  color: var(--navy-deep);
  border-color: rgba(12, 45, 58, 0.25);
}
.btn--ghost-dark:hover { background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Text-Link mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal);
  transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow::after { content: "\2192"; transition: transform var(--t-fast); }
.link-arrow:hover { gap: 0.8rem; color: var(--navy-deep); }
.link-arrow:hover::after { transform: translateX(2px); }

/* -----------------------------------------------------------------------------
   5. Header / Navigation
----------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t-fast), box-shadow var(--t-fast), height var(--t-fast);
}
/* Transparent ueber Hero */
.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Solid beim Scrollen (JS toggelt .is-scrolled) */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--sand-line), var(--shadow-sm);
  height: 66px;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__logo {
  width: 34px; height: auto;
  filter: brightness(0) invert(1);            /* weiss ueber Hero */
  transition: filter var(--t-fast);
}
.is-scrolled .brand__logo { filter: none; }

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--white);
  transition: color var(--t-fast);
}
.brand__name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.78;
  margin-top: 2px;
}
.is-scrolled .brand__name { color: var(--navy-deep); }

/* Nav */
.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav__list { display: flex; align-items: center; gap: 0.2rem; }
.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.6rem 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.95rem; right: 0.95rem; bottom: 0.35rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.nav__link:hover::after { transform: scaleX(1); }
.is-scrolled .nav__link { color: var(--ink); }

.nav__cta { margin-left: 0.6rem; }
/* CTA im transparenten Modus als heller Ghost-Button */
.site-header:not(.is-scrolled) .nav__cta.btn--primary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.site-header:not(.is-scrolled) .nav__cta.btn--primary:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 0; background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-fast), background var(--t-fast), opacity var(--t-fast);
}
.nav-toggle span { top: 22px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.is-scrolled .nav-toggle span,
.is-scrolled .nav-toggle span::before,
.is-scrolled .nav-toggle span::after { background: var(--navy-deep); }

body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); background: var(--navy-deep); }
body.nav-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); background: var(--navy-deep); }

/* -----------------------------------------------------------------------------
   6. Hero
----------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  animation: heroZoom 18s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
/* Doppel-Overlay: dunkel unten fuer Lesbarkeit, navy-Stich */
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 45, 58, 0.42) 0%, rgba(12, 45, 58, 0.10) 32%, rgba(12, 45, 58, 0.62) 78%, rgba(12, 45, 58, 0.88) 100%),
    linear-gradient(90deg, rgba(12, 45, 58, 0.35) 0%, rgba(12, 45, 58, 0) 55%);
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(3.5rem, 8vw, 6rem);
}
.hero__eyebrow {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1.3rem;
}
.hero__eyebrow::before { background: var(--gold); }

.hero h1 {
  font-size: var(--fs-hero);
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 28px rgba(12, 45, 58, 0.35);
}
.hero h1 em {
  font-style: italic;
  color: var(--sage);
  font-weight: 500;
}
.hero__sub {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

/* Scroll-Hinweis */
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero__scroll span {
  width: 1px; height: 38px;
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* -----------------------------------------------------------------------------
   7. Stat-Strip
----------------------------------------------------------------------------- */
.stat-strip {
  background: var(--navy-deep);
  color: var(--white);
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat {
  padding: clamp(2.2rem, 4vw, 3.2rem) 1rem;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute; left: 0; top: 28%; bottom: 28%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat__num span { color: var(--gold); }
.stat__label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.66);
}

/* -----------------------------------------------------------------------------
   8. Split / Intro (Bild + Text)
----------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split__media--wide img { aspect-ratio: 5 / 4; }

/* schwebende Caption-Karte ueber Bild */
.float-card {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.5rem;
  max-width: 260px;
}
.float-card__kicker {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.float-card__text { font-size: 0.85rem; color: var(--muted); margin: 0.3rem 0 0; }

.prose h2 { font-size: var(--fs-h2); margin-bottom: 1.3rem; }
.prose .lead { margin-bottom: 1.4rem; }

/* Feature-Liste mit Haken */
.feature-list { margin-top: 1.8rem; display: grid; gap: 1rem; }
.feature-list li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  font-size: 1rem; color: var(--ink);
}
.feature-list .ico {
  flex: none;
  width: 26px; height: 26px; margin-top: 1px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-12);
  color: var(--teal);
}
.feature-list b { color: var(--navy-deep); font-weight: 700; }
/* feature-list auch auf dunklen Sektionen (z.B. jobs.html #details): sonst
   waere der Listentext --ink dunkel-auf-Navy und damit unlesbar. */
.section--dark .feature-list li { color: rgba(255, 255, 255, 0.85); }
.section--dark .feature-list b { color: #ffffff; }
.section--dark .feature-list .ico { color: var(--sage); background: rgba(255, 255, 255, 0.10); }

/* -----------------------------------------------------------------------------
   9. Karten (generisch + Flotte)
----------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* Flotte-Grid */
.boat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: clamp(1.3rem, 2.5vw, 2rem);
}
.boat-card {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 2.1rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  display: flex; flex-direction: column;
}
.boat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.boat-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sage-12), rgba(47,107,112,0.10));
  color: var(--teal);
  margin-bottom: 1.4rem;
}
.boat-card__icon svg { width: 28px; height: 28px; }
.boat-card h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.boat-card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.3rem; }
.boat-card__meta {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.tag {
  font-size: 0.75rem; font-weight: 600;
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--sand);
  color: var(--teal);
  letter-spacing: 0.02em;
}
.tag--gold { background: rgba(201,162,75,0.14); color: #9a7b2e; }

/* -----------------------------------------------------------------------------
   10. Standort-Karten (Foto-Karten)
----------------------------------------------------------------------------- */
.place-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.2rem);
}
.place-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.place-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.place-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.place-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.place-card:hover .place-card__media img { transform: scale(1.06); }
.place-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--navy-90);
  color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.place-card__body { padding: 1.7rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.place-card__body h3 { font-size: var(--fs-h3); margin-bottom: 0.45rem; }
.place-card__addr {
  font-size: 0.85rem; color: var(--teal); font-weight: 600;
  margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.45rem;
}
.place-card__body p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.4rem; }
.place-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.place-card__foot .link-arrow { font-size: 0.9rem; }

/* -----------------------------------------------------------------------------
   11. Preis-Tabelle (elegant, kein Excel-Look)
----------------------------------------------------------------------------- */
.pricing { display: grid; gap: 2rem; }
.price-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.price-panel__head {
  padding: 1.5rem 1.9rem;
  background: linear-gradient(120deg, var(--navy-deep), var(--teal));
  color: var(--white);
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.price-panel__head h3 { color: var(--white); font-size: 1.5rem; }
.price-panel__head span { font-size: 0.85rem; opacity: 0.8; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  text-align: left;
  padding: 1.05rem 1.9rem;
  border-bottom: 1px solid var(--sand-line);
}
.price-table thead th {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block: 0.9rem;
}
.price-table tbody tr { transition: background var(--t-fast); }
.price-table tbody tr:hover { background: var(--sand); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table .boat-name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.price-table .boat-name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.74rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0;
  margin-top: 2px;
}
.price-table .persons { color: var(--muted); font-size: 0.92rem; white-space: nowrap; }
.price-table .price {
  font-weight: 700; color: var(--teal);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-table .price--big { font-size: 1.05rem; color: var(--gold); }
.price-table td.dash { color: var(--sand-line); }
.col-num { text-align: right !important; }

.price-note {
  margin-top: 0.4rem;
  font-size: 0.9rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
}
.price-note span { display: inline-flex; align-items: center; gap: 0.5rem; }
.price-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* -----------------------------------------------------------------------------
   12. Timeline (Geschichte)
----------------------------------------------------------------------------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  padding-left: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 110px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--sage), rgba(123,174,163,0.15));
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 2.2rem;
  padding-bottom: 2.6rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-year {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--teal);
  text-align: right;
  line-height: 1.1;
  padding-top: 1px;
}
.tl-item::before {     /* Punkt auf der Linie */
  content: "";
  position: absolute;
  left: 104px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px var(--sand);
  z-index: 1;
}
.section--dark .tl-item::before { box-shadow: 0 0 0 4px var(--navy-deep); }
.section--dark .timeline::before { background: linear-gradient(var(--sage), rgba(123,174,163,0.1)); }
.tl-body { padding-left: 1.4rem; }
.tl-body h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.tl-body p { font-size: 0.95rem; color: var(--muted); margin: 0; }
.section--dark .tl-body p { color: rgba(255,255,255,0.66); }

/* -----------------------------------------------------------------------------
   13. Info-Kacheln (Praktisches)
----------------------------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.1rem, 2vw, 1.6rem);
}
.info-tile {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.info-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-tile__ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--navy-deep);
  color: var(--sage);
  margin-bottom: 1.1rem;
}
.info-tile__ico svg { width: 24px; height: 24px; }
.info-tile h3 { font-size: 1.22rem; margin-bottom: 0.4rem; }
.info-tile p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.info-tile strong { color: var(--navy-deep); }

/* Highlight-Kachel (Barzahlung etc.) */
.info-tile--accent {
  background: var(--navy-deep);
  border-color: transparent;
}
.info-tile--accent h3 { color: var(--white); }
.info-tile--accent p { color: rgba(255,255,255,0.72); }
.info-tile--accent strong { color: var(--gold); }
.info-tile--accent .info-tile__ico { background: var(--gold); color: var(--navy-deep); }

/* -----------------------------------------------------------------------------
   14. Banner / CTA-Strip mit Bild
----------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
}
.cta-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--navy-90), var(--navy-72));
}
.cta-banner h2 { color: var(--white); font-size: var(--fs-h2); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 50ch; margin-inline: auto; margin-bottom: 2rem; font-size: var(--fs-lead); }
.cta-banner .btn-row { justify-content: center; }

/* -----------------------------------------------------------------------------
   15. Kontakt + Karte
----------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.contact-card h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.contact-list { margin-top: 2rem; display: grid; gap: 1.5rem; }
.contact-row { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-row__ico {
  flex: none; width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sage-12); color: var(--teal);
}
.contact-row__ico svg { width: 22px; height: 22px; }
.contact-row__label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.contact-row__value { font-size: 1.08rem; font-weight: 600; color: var(--navy-deep); }
.contact-row__value a:hover { color: var(--teal); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
  border: 6px solid var(--white);
  /* Skeleton hinter dem iframe: ein noch nicht geladenes Karten-iframe wirkt
     so nie als weisser Block, sondern als ruhige Wasserflaeche. */
  background: linear-gradient(135deg, #dfe8e4 0%, #cdded8 100%);
  position: relative;
}
.map-frame::after {
  content: "Karte wird geladen \2026";
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; letter-spacing: 0.04em; color: var(--teal);
}
.map-frame iframe { position: relative; z-index: 1; }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(0.92); }

/* -----------------------------------------------------------------------------
   16. Footer
----------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding-top: clamp(4rem, 7vw, 6rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand__logo { filter: brightness(0) invert(1); width: 40px; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { font-size: 0.92rem; margin-top: 1.2rem; max-width: 30ch; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.1rem;
}
.footer-col address { font-style: normal; font-size: 0.92rem; line-height: 1.8; }
.footer-col address strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 0.2rem; font-family: var(--font-serif); font-size: 1.05rem; }
.footer-col a:hover { color: var(--sage); }
.footer-hours { margin-top: 0.7rem; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  padding-block: 1.8rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--white); }

/* -----------------------------------------------------------------------------
   17. Lightbox (Galerie)
----------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
  position: relative;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item.is-tall { aspect-ratio: auto; grid-row: span 2; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12, 45, 58, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 4vw;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
  backdrop-filter: blur(6px);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw; max-height: 86vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 2rem; right: 2.2rem;
  width: 48px; height: 48px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 1.5rem; cursor: pointer;
  transition: background var(--t-fast);
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* -----------------------------------------------------------------------------
   18. Scroll-Reveal
----------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
/* No-JS-Fallback: ohne JavaScript bleibt <html class="no-js"> bestehen — dann
   muessen Reveal-Inhalte sichtbar sein, sonst ist die halbe Seite leer. */
.no-js [data-reveal] { opacity: 1; transform: none; transition: none; }
/* Beim Drucken nie Inhalte verstecken. */
@media print {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* -----------------------------------------------------------------------------
   19. Responsive
----------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 16 / 10; }
  .float-card { left: 1.2rem; bottom: -22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item.is-tall { grid-row: span 1; aspect-ratio: 1; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }

  /* Mobile-Menue */
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 1.5rem) 1.8rem 2rem;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 90;
    overflow-y: auto;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    color: var(--navy-deep) !important;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--sand-line);
    border-radius: 0;
  }
  .nav__link::after { display: none; }
  .nav__cta { margin: 1.4rem 0 0; width: 100%; }
  .site-header:not(.is-scrolled) .nav__cta.btn--primary {
    background: var(--teal); border-color: transparent; color: var(--white);
    box-shadow: 0 10px 26px rgba(47,107,112,0.32);
  }
  .nav-toggle { display: block; z-index: 95; }

  /* Backdrop hinter Menue */
  body.nav-open::after {
    content: ""; position: fixed; inset: 0; z-index: 80;
    background: rgba(12, 45, 58, 0.5);
  }

  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::before { display: none; }
  .stat:nth-child(3)::before,
  .stat:nth-child(4)::before { top: 0; }

  .price-table th:nth-child(2),
  .price-table td.persons { display: none; }      /* Personen-Spalte mobil ausblenden */
  .price-table th, .price-table td { padding-inline: 1.2rem; }

  .timeline::before { left: 7px; }
  .tl-item { grid-template-columns: 1fr; gap: 0.3rem; padding-left: 2.4rem; padding-bottom: 2.2rem; }
  .tl-year { text-align: left; }
  .tl-item::before { left: 1px; top: 6px; }
  .tl-body { padding-left: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .float-card { position: static; margin-top: -2.5rem; margin-inline: 1rem; max-width: none; }
  .hero { align-items: flex-end; }
  .hero h1 { max-width: 100%; }
}

@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero .btn-row .btn { width: 100%; }
}

/* ----------------------------------------------------------------------
   Hero-Variante fuer Unterseiten (Standort-Detailseiten)
   Niedriger als die Startseite, sonst identischer Look & Mechanik.
   ---------------------------------------------------------------------- */
.hero--page { min-height: clamp(58vh, 64vh, 620px); }
.hero--page .hero__inner { padding-bottom: clamp(2.4rem, 5vw, 4rem); }
@media (max-width: 760px) {
  .hero--page { min-height: 66vh; }
}

/* ----------------------------------------------------------------------
   Kontakt-Standortkarten (kontakt.html): drei Stege, je eigene
   OpenStreetMap. Bauen auf .place-card-Logik auf, eingebettete Karte
   statt Foto. Gleicher Schatten-/Radius-/Hover-Stil.
   ---------------------------------------------------------------------- */
.contact-map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.2rem);
}
.contact-map-card {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.contact-map-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-map-card .map-frame {
  border: 0; border-radius: 0;
  box-shadow: none; min-height: 230px;
}
.contact-map-card .map-frame iframe { min-height: 230px; }
.contact-map-card__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.contact-map-card__body h3 { font-size: var(--fs-h3); margin-bottom: 0.45rem; }
.contact-map-card__addr {
  font-size: 0.85rem; color: var(--teal); font-weight: 600;
  margin-bottom: 0.9rem;
  display: flex; align-items: flex-start; gap: 0.45rem;
}
.contact-map-card__addr svg { flex: none; margin-top: 3px; }
.contact-map-card__body p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.3rem; }
.contact-map-card__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; align-items: center; }

/* ----------------------------------------------------------------------
   Aktiver Nav-Zustand (Unterseiten markieren ihren Menuepunkt, z.B.
   "Standorte" auf standort-*.html). Gold-Unterstrich dauerhaft sichtbar.
   ---------------------------------------------------------------------- */
.nav__link.is-active { color: var(--white); }
.nav__link.is-active::after { transform: scaleX(1); }
.is-scrolled .nav__link.is-active { color: var(--navy-deep); }
@media (max-width: 760px) {
  .nav__link.is-active { color: var(--teal) !important; }
}

/* ----------------------------------------------------------------------
   Zusatz-Links in der Footer-Markenspalte (Umgebung, Geschichte).
   Gleiche Schrift/Abstände wie der Markentext, dezent abgesetzt.
   ---------------------------------------------------------------------- */
.footer-links {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem;
  margin-top: 1rem; font-size: 0.88rem;
}
.footer-links a { color: var(--sage); font-weight: 600; }
.footer-links a:hover { color: var(--white); }

/* ----------------------------------------------------------------------
   Button-Reset fuer Lightbox-Ausloeser (umgebung.html): <button> statt
   <a>, damit der Klick nur die Lightbox oeffnet und nicht zur Bilddatei
   navigiert. Optik identisch zur Foto-Karte.
   ---------------------------------------------------------------------- */
.place-card__media--btn,
.media-zoom {
  display: block; width: 100%; padding: 0; border: 0;
  background: none; cursor: zoom-in; font: inherit; color: inherit;
  text-align: left;
}
.media-zoom { border-radius: var(--radius); overflow: hidden; }
.place-card__media--btn:focus-visible,
.media-zoom:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ----------------------------------------------------------------------
   Chronik (geschichte.html) — erzaehlte, vertikale Familien-Timeline.
   Reicher als die kompakte .timeline der Startseite: Jahr als grosse
   Serif-Marke, dazu Fliesstext und eingestreute History-Fotos. Eine
   durchgehende Linie verbindet die Jahre wie Bojen eine Fahrrinne.
   ---------------------------------------------------------------------- */
.chronik {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
}
/* Durchgehende Linie (Desktop links neben der Jahr-Spalte) */
.chronik::before {
  content: "";
  position: absolute;
  left: 128px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--gold) 0%, var(--gold-line) 70%, rgba(201,162,75,0) 100%);
}

.chronik-item {
  position: relative;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 2.6rem;
  padding-bottom: clamp(3rem, 5vw, 4.2rem);
}
.chronik-item:last-child { padding-bottom: 0; }

/* Boje / Punkt auf der Linie */
.chronik-item::before {
  content: "";
  position: absolute;
  left: 122px; top: 12px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 5px var(--sand), var(--shadow-sm);
  z-index: 1;
}
.chronik-item--mark::before {
  width: 18px; height: 18px;
  left: 120px; top: 10px;
  background: var(--gold);
  border-color: var(--white);
}

.chronik-year {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 600;
  color: var(--teal);
  text-align: right;
  line-height: 1;
  padding-top: 2px;
  letter-spacing: -0.01em;
}
.chronik-item--mark .chronik-year { color: var(--gold); }
/* Jahreszahlen stehen auf Navy: Teal (~2.4:1) ist zu dunkel fuer grosse Schrift.
   Sage ist klar lesbar (~6:1) und bleibt on-brand. Meilenstein-Jahre bleiben Gold. */
.section--dark .chronik-year { color: var(--sage); }
.section--dark .chronik-item--mark .chronik-year { color: var(--gold); }
.section--dark .tl-year { color: var(--sage); }

.chronik-body { padding-left: 1.2rem; }
.chronik-body h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 0.7rem;
}
.chronik-body p {
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--ink);
  margin-bottom: 1rem;
}
.chronik-body p:last-child { margin-bottom: 0; }
.chronik-body .lead {
  font-size: var(--fs-lead);
  color: var(--navy-deep);
  font-weight: 500;
  line-height: 1.6;
}
/* Die Chronik steht auf section--dark (Navy): Textfarben fuer hellen Grund
   waeren dunkel-auf-dunkel und unlesbar. Heller Kontext erzwingt lesbare Farben. */
.section--dark .chronik-body p { color: rgba(255, 255, 255, 0.85); }
.section--dark .chronik-body .lead { color: #ffffff; }
.section--dark .chronik-figure figcaption { color: rgba(255, 255, 255, 0.6); }
.section--dark .chronik-quote blockquote { color: rgba(255, 255, 255, 0.92); }

/* eingestreutes Foto innerhalb eines Chronik-Eintrags */
.chronik-figure {
  margin: 1.4rem 0 0.3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.chronik-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.chronik-figure:hover img { transform: scale(1.04); }
.chronik-figure--tall img { aspect-ratio: 5 / 4; }
.chronik-figure figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 0.6rem;
}

/* Zitat-Karte am Ende der Chronik */
.chronik-quote {
  position: relative;
  max-width: 820px;
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  text-align: center;
  padding: clamp(2.4rem, 5vw, 3.8rem) var(--gutter);
}
.chronik-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 1rem;
}
.chronik-quote blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
}
.chronik-quote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

@media (max-width: 760px) {
  .chronik::before { left: 7px; }
  .chronik-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-left: 2.6rem;
  }
  .chronik-item::before { left: 1px; top: 9px; }
  .chronik-item--mark::before { left: -1px; top: 7px; }
  .chronik-year { text-align: left; }
  .chronik-body { padding-left: 0; }
}

/* ----------------------------------------------------------------------
   Galerie-Seite (galerie.html): echtes Masonry via CSS-Columns.
   Bilder behalten ihr natuerliches Seitenverhaeltnis und fuellen die
   Spalten ohne Luecken. Jedes .masonry-item ist ein <button> und oeffnet
   die Lightbox (main.js liest data-lightbox), navigiert nicht weg.
   ---------------------------------------------------------------------- */
.gallery-masonry {
  column-count: 3;
  column-gap: clamp(0.8rem, 1.6vw, 1.2rem);
}
.masonry-item {
  display: block;
  width: 100%;
  margin: 0 0 clamp(0.8rem, 1.6vw, 1.2rem);
  padding: 0;
  border: 0;
  background: var(--sand);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.masonry-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.masonry-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.8s var(--ease);
}
.masonry-item:hover img { transform: scale(1.05); }

/* Bildunterschrift erscheint sanft beim Hover / Tastatur-Fokus */
.masonry-item__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  line-height: 1.2;
  background: linear-gradient(to top, rgba(12,45,58,0.82), rgba(12,45,58,0));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-fast), transform var(--t-fast);
  pointer-events: none;
}
.masonry-item:hover .masonry-item__cap,
.masonry-item:focus-visible .masonry-item__cap { opacity: 1; transform: none; }

/* Lupe-Hinweis oben rechts (signalisiert: anklickbar -> gross) */
.masonry-item::after {
  content: "";
  position: absolute; top: 0.7rem; right: 0.7rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230C2D3A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E") center / 16px no-repeat;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--t-fast), transform var(--t-fast);
  box-shadow: var(--shadow-sm);
}
.masonry-item:hover::after,
.masonry-item:focus-visible::after { opacity: 1; transform: scale(1); }

@media (max-width: 980px) {
  .gallery-masonry { column-count: 2; }
}
@media (max-width: 560px) {
  .gallery-masonry { column-count: 1; }
  .masonry-item__cap { opacity: 1; transform: none; }   /* mobil immer sichtbar */
}

/* ----------------------------------------------------------------------
   Presse-Streifen (galerie.html): zwei Zeitungsausschnitte als Karten,
   anklickbar -> Lightbox. Gleicher Karten-/Schatten-Stil wie place-card.
   ---------------------------------------------------------------------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
  max-width: 920px;
  margin-inline: auto;
}
.press-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.press-card__media {
  display: block; width: 100%; padding: 0; border: 0;
  background: var(--sand);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  max-height: 420px;
}
.press-card__media img {
  width: 100%; height: 100%;
  max-height: 420px;
  object-fit: cover; object-position: top center;
  transition: transform 0.8s var(--ease);
}
.press-card__media:hover img { transform: scale(1.04); }
.press-card__cap {
  padding: 1.3rem 1.6rem 1.6rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
.press-card__src {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.2rem;
}

/* ----------------------------------------------------------------------
   Footer-Spalte "Mehr entdecken" — vertikale Linkliste (galerie.html u.a.)
   ---------------------------------------------------------------------- */
.footer-col__links { display: grid; gap: 0.55rem; }
.footer-col__links li { font-size: 0.92rem; line-height: 1.5; }
.footer-col__links a:hover { color: var(--sage); }

/* ----------------------------------------------------------------------
   Geschichte-Teaser auf der Startseite — kompakte .timeline in der
   schmalen .prose-Spalte. Linie und Jahr-Spalte enger als die volle
   Timeline, sonst identische Optik (Boje, Gold, Serif-Jahr).
   ---------------------------------------------------------------------- */
.timeline--teaser { max-width: none; margin: 1.6rem 0 0; }
.timeline--teaser::before { left: 62px; }
.timeline--teaser .tl-item {
  grid-template-columns: 56px 1fr;
  gap: 1.4rem;
  padding-bottom: 1.8rem;
}
.timeline--teaser .tl-item::before { left: 56px; }
.timeline--teaser .tl-year { font-size: 1.3rem; }
.timeline--teaser .tl-body { padding-left: 1.1rem; }
.timeline--teaser .tl-body h3 { font-size: 1.05rem; }
.timeline--teaser .tl-body p { font-size: 0.9rem; }
.section--dark .timeline--teaser .tl-item::before { box-shadow: 0 0 0 4px var(--navy-deep); }
@media (max-width: 760px) {
  .timeline--teaser::before { left: 7px; }
  .timeline--teaser .tl-item { grid-template-columns: 1fr; gap: 0.3rem; padding-left: 2.4rem; }
  .timeline--teaser .tl-item::before { left: 1px; }
}

/* ----------------------------------------------------------------------
   Presse-Streifen auf der Startseite — schlichte, zentrierte Zeile.
   Kein Bild, nur Wortmarken der Medien als Trust-Signal.
   ---------------------------------------------------------------------- */
.press-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 0.9rem;
  margin: 0;
  text-align: center;
  color: var(--muted);
}
.press-strip__label {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.press-strip__name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.press-strip__sep { color: var(--gold-line); }
.press-strip__year {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
