/* Seebadi Wollishofen: helles Layout, Grünlinie am Logo, See-/Nebel-Grau-Grün */
:root {
  color-scheme: light;
  --bg: #f4faf7;
  --bg-soft: #e8f2ec;
  --surface: #ffffff;
  --text: #1a2c22;
  --muted: #4d5f55;
  --accent: #2a7a4d;
  --accent-hover: #1f5c3a;
  --accent-dim: rgba(42, 122, 77, 0.12);
  --accent-warm: #9a7a42;
  --danger: #c23d3d;
  --border: rgba(26, 44, 34, 0.08);
  --border-subtle: rgba(26, 44, 34, 0.055);
  --header-bg: rgba(255, 255, 255, 0.94);
  --footer-bg: #ddeee4;
  --shadow: 0 3px 16px rgba(26, 44, 34, 0.06);
  --shadow-lg: 0 12px 36px rgba(26, 44, 34, 0.1);
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Source Sans 3", system-ui, sans-serif;
  --radius: 15px;
  --header-h: 4.15rem;
  --max: 920px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --fw-text: 400;
  --fw-label: 500;
  --fw-title: 500;
  --fw-em: 600;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
  hyphens: auto;
  -webkit-hyphens: auto;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.08rem);
  font-weight: var(--fw-text);
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
  word-break: normal;
}

/* Betonung im Fliesstext: kräftiger als 400, aber nicht «fett» wie Browser-Standard */
main strong {
  font-weight: var(--fw-em);
}

.travel-list strong,
.supplier-list strong,
.jobs-box strong {
  font-weight: var(--fw-label);
}

h1, h2, h3, .h3 {
  text-wrap: balance;
  hyphens: manual;
  -webkit-hyphens: manual;
}
p, li { text-wrap: pretty; }
body.has-cookie-banner {
  padding-bottom: 11rem;
}
@media (min-width: 720px) {
  body.has-cookie-banner { padding-bottom: 8.5rem; }
}

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

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - clamp(2.2rem, 6vw, 4.6rem)));
  margin-inline: auto;
}

.container-narrow { max-width: 620px; }

/* Header: schmaler optischer Kasten */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  overflow: visible;
}

.header-inner {
  width: min(100% - 1.25rem, var(--max));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
  transition: height 0.24s var(--ease);
}

.logo {
  font-family: var(--font-display);
  font-weight: var(--fw-label);
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--accent); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: var(--header-h);
  right: 0;
  height: calc(100vh - var(--header-h));
  z-index: 220;
  width: min(88vw, 22rem);
  background: #fff;
  flex-direction: column;
  padding: 0.9rem 1rem 1rem;
  gap: 0.25rem;
  transform: translateX(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
  display: flex;
  overflow-y: auto;
  border-left: 1px solid var(--border-subtle);
  box-shadow: -24px 0 40px rgba(0, 0, 0, 0.2);
}
.site-nav.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: var(--fw-label);
  padding: 0.85rem 1rem;
  border-radius: 8px;
}
.site-nav a:hover { background: rgba(255, 255, 255, 0.7); color: var(--accent); }

.nav-cta {
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--text) !important;
  border: 1px solid rgba(42, 122, 77, 0.45);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.nav-cta::after {
  content: ">";
  font-size: 0.95em;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    width: auto;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.06rem;
    padding: 0;
    margin: 0;
    min-width: 0;
    flex: 1 1 auto;
    background: transparent;
    overflow: visible;
    border: 0;
    box-shadow: none;
  }
  .site-nav a {
    padding: 0.35rem 0.48rem;
    font-size: 0.8125rem;
    font-weight: var(--fw-label);
    white-space: nowrap;
  }
  .nav-cta { margin-top: 0; margin-left: 0.25rem; padding-inline: 0.55rem !important; }
}

/* Hero: Vollbild-Foto, Text in Glas-Karte */
.hero {
  position: relative;
  min-height: min(68vh, 620px);
  overflow: hidden;
  background: var(--bg-soft);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--accent) 22%, transparent) 0%,
    color-mix(in srgb, var(--text) 12%, transparent) 42%,
    transparent 55%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: min(68vh, 620px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 1rem) 0 2.5rem;
}

.hero-card {
  max-width: 22rem;
  padding: 1.15rem 1.3rem 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-lg);
}

.hero-card .hero-eyebrow {
  font-size: clamp(1.18rem, 2.5vw, 1.55rem);
  font-weight: var(--fw-title);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.hero-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: var(--fw-title);
  line-height: 1.22;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-card .hero-lead {
  font-size: clamp(0.93rem, 1.9vw, 1.03rem);
  color: var(--muted);
  margin: 0 0 1.05rem;
  line-height: 1.55;
}


.hero-card .hero-lead--sub {
  font-size: clamp(0.86rem, 1.75vw, 0.97rem);
  color: var(--muted);
  opacity: 0.9;
  margin: 0 0 1.05rem;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.3rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: var(--fw-label);
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 4px 12px rgba(16, 24, 40, 0.1);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset, 0 8px 18px rgba(16, 24, 40, 0.14);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-dim), 0 8px 18px rgba(16, 24, 40, 0.12);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}
.btn-primary:hover {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-block { width: 100%; }

/* Sections */
.section {
  padding: clamp(3rem, 7.5vw, 5rem) 0;
}

.section-alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--border-subtle);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.1vw, 2.55rem);
  font-weight: 400;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-intro {
  color: var(--muted);
  margin: 0 0 1.65rem;
}

.h3 {
  font-size: 1.09rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--text);
}

/* Split: Karte führt, Text enger */
.split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .split-reverse .map-stack { order: -1; }
}

.split-text p { color: var(--muted); }
.split-text p strong { color: var(--text); }

.split-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 0;
  box-shadow: var(--shadow);
}

.text-link {
  font-weight: var(--fw-label);
  color: var(--accent);
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; color: var(--accent-hover); }

/* PDF list */
.pdf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .pdf-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pdf-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.15rem 1.35rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pdf-card:hover {
  border-color: var(--border);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.pdf-icon {
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: var(--fw-em);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.pdf-title { font-weight: var(--fw-label); font-size: 1.06rem; color: var(--text); }
.pdf-desc { font-size: 0.9rem; color: var(--muted); }

/* Hours: ein Block aus Einleitung, Tabelle, Links */
.hours-compact__text {
  margin: 0 0 1.35rem;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.98rem;
}

.hours-compact__text + .hours-compact__text {
  margin-top: -0.65rem;
}

.hours-compact__grid {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}

@media (min-width: 640px) {
  .hours-compact__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 1.35rem;
  }
}

.hours-compact__links {
  margin: 0;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 252, 249, 0.95) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.hours-compact__links-intro {
  margin: 0 0 0.85rem;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
}

.hours-source-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hours-source-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.65rem 0.85rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.hours-source-link:hover {
  border-color: rgba(42, 122, 77, 0.35);
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
}

.hours-source-link__label {
  font-weight: var(--fw-label);
  font-size: 0.98rem;
}

.hours-source-link__hint {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

.hours-source-link:hover .hours-source-link__hint {
  color: var(--accent);
  opacity: 0.85;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.hours-table th,
.hours-table td {
  padding: 0.8rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.hours-table th {
  font-size: 0.75rem;
  font-weight: var(--fw-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--bg);
}

.hours-table tr:last-child td { border-bottom: 0; }

/* Gallery: gleichmässiges Raster */
.gallery {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 880px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-subtle);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-customer img {
  cursor: zoom-in;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: zoom-out;
}

.lightbox__dialog {
  position: absolute;
  inset: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  max-width: min(96vw, 1180px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 27, 34, 0.75);
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.lightbox__close {
  top: max(0.5rem, env(safe-area-inset-top));
  right: max(0.5rem, env(safe-area-inset-right));
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.8rem;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.85rem;
  height: 2.85rem;
  font-size: 2rem;
  font-weight: 600;
}

.lightbox__nav--prev {
  left: max(0.5rem, env(safe-area-inset-left));
}

.lightbox__nav--next {
  right: max(0.5rem, env(safe-area-inset-right));
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(22, 27, 34, 0.92);
}

/* Map */
.map-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.map-stack__actions {
  margin: 0;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 260px;
  background: var(--bg-soft);
}

.map-wrap iframe {
  width: 100%;
  height: min(400px, 52vw);
  border: 0;
  display: block;
}
.map-consent-stack {
  padding: 0.5rem 0.65rem 0.65rem;
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}

.map-consent-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.map-consent-actions {
  margin: 0.5rem 0 0;
}

.map-consent__reopen {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.8rem;
  font-weight: var(--fw-label);
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.map-consent__reopen:hover {
  color: var(--accent-hover);
}

.map-consent__reopen:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


.contact-links { margin: 1rem 0; }

/* Anfrage-Formular (ausklappbar unter «Anlässe») */
.reservation-disclosure {
  margin-top: 1.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reservation-disclosure__summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: var(--fw-title);
  color: var(--text);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.3rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid transparent;
}

.reservation-disclosure__summary::after {
  content: "⌄";
  flex-shrink: 0;
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 700;
  color: var(--muted);
  transform-origin: 50% 50%;
  transition: transform 0.2s var(--ease);
}

.reservation-disclosure[open] .reservation-disclosure__summary::after {
  transform: rotate(180deg);
}

.reservation-disclosure__summary::-webkit-details-marker {
  display: none;
}

.reservation-disclosure__summary:hover {
  background: var(--accent-dim);
  border-color: rgba(42, 122, 77, 0.38);
}

.reservation-disclosure__summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.reservation-disclosure__panel {
  padding: 1.25rem 1rem 1.5rem;
  background: linear-gradient(180deg, #e4efe8 0%, var(--bg-soft) 100%);
}

@media (min-width: 480px) {
  .reservation-disclosure__panel {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.reservation-disclosure .container-narrow {
  margin-inline: auto;
}

.reservation-disclosure__intro {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Form */

.res-form label {
  display: block;
  margin-bottom: 0.95rem;
}

.res-form label span {
  display: block;
  font-size: 0.85rem;
  font-weight: var(--fw-label);
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.res-form abbr[title="Pflichtfeld"] {
  color: var(--danger);
  text-decoration: none;
  font-weight: 700;
  margin-left: 0.18rem;
}

.res-form input,
.res-form select,
.res-form textarea {
  width: 100%;
  padding: 0.7rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.res-form input:focus-visible,
.res-form select:focus-visible,
.res-form textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-row.two {
  display: grid;
  gap: 1rem;
}

@media (min-width: 540px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .form-row.three { grid-template-columns: repeat(3, 1fr); }
}

.form-row.three {
  display: grid;
  gap: 1rem;
}

.form-feedback {
  margin-top: 1rem;
  min-height: 1.5rem;
  font-weight: var(--fw-label);
}
.form-feedback.ok { color: var(--accent); }
.form-feedback.err { color: var(--danger); }

.fine-print {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.5rem 0 1rem;
}

.fine-print code {
  font-size: 0.75em;
  background: var(--bg-soft);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}

/* Rechtliches (Harmonika vor dem Footer) */
.section-legal {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-subtle);
}

.legal-accordion {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.legal-accordion__summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: var(--fw-title);
  color: var(--text);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.3rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid transparent;
}

.legal-accordion__summary::after {
  content: "⌄";
  flex-shrink: 0;
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 700;
  color: var(--muted);
  transform-origin: 50% 50%;
  transition: transform 0.2s var(--ease);
}

.legal-accordion__summary::-webkit-details-marker { display: none; }

.legal-accordion__summary:hover {
  background: var(--accent-dim);
  border-color: rgba(42, 122, 77, 0.38);
}

.legal-accordion__summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.legal-accordion[open] .legal-accordion__summary::after {
  transform: rotate(180deg);
}

.legal-accordion__panel {
  padding: 1.25rem 1.25rem 1.5rem;
}

/* Footer */
.site-footer {
  padding: 2.75rem 0 1.75rem;
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
}

.footer-main {
  margin-bottom: 1.75rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 680px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.footer-col__title {
  font-size: 0.72rem;
  font-weight: var(--fw-label);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.footer-address {
  font-style: normal;
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-tel,
.footer-mail {
  display: block;
  font-weight: var(--fw-label);
  color: var(--text);
  text-decoration: none;
  margin-bottom: 0.35rem;
}
.footer-tel:hover,
.footer-mail:hover { color: var(--accent); }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  font-weight: var(--fw-label);
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow);
}
.footer-social-link:hover {
  color: var(--accent);
  border-color: var(--border);
}
.footer-social-link svg { flex-shrink: 0; opacity: 0.85; }

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 1.75rem 0 0;
}
.footer-copy a {
  color: var(--text);
  font-weight: var(--fw-label);
  text-decoration: none;
}
.footer-copy a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-cookie-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.footer-cookie-link:hover {
  color: var(--accent);
}

/* Cookie-Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 1.1rem 0 1.25rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -8px 32px rgba(26, 44, 34, 0.09);
  transition: transform 0.35s var(--ease), opacity 0.35s ease;
}
.cookie-banner.cookie-banner--dismissed {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 720px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0.65rem 1.25rem;
  }
}
.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--fw-title);
  margin: 0;
  color: var(--text);
  grid-column: 1 / -1;
}
@media (min-width: 720px) {
  .cookie-banner__title {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .cookie-banner__text {
    grid-column: 1;
    grid-row: 2;
  }
  .cookie-banner__actions {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
  }
}
.cookie-banner__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
}
.cookie-banner__actions .btn {
  font-size: 0.88rem;
  padding: 0.65rem 1.1rem;
}
.cookie-banner__link {
  font-size: 0.88rem;
  font-weight: var(--fw-label);
  margin-left: 0.25rem;
}

.privacy-policy {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52rem;
}
.privacy-policy .privacy-lead {
  margin: 0 0 1rem;
}

.privacy-policy strong {
  font-weight: var(--fw-em);
}

.privacy-policy h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: var(--fw-title);
  color: var(--text);
  margin: 1.75rem 0 0.5rem;
}
.privacy-policy h4:first-of-type { margin-top: 0.75rem; }
.privacy-policy h5 {
  font-size: 0.95rem;
  font-weight: var(--fw-label);
  color: var(--text);
  margin: 1.15rem 0 0.4rem;
}
.privacy-policy p { margin: 0 0 0.75rem; }
.privacy-policy ul {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
}
.privacy-policy li { margin-bottom: 0.35rem; }
.privacy-policy a { word-break: break-word; }
.privacy-meta {
  margin-top: 1.5rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem !important;
}

/* Galerie: zwei Spalten wenn nur zwei Motive */
.gallery.gallery-pair {
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .gallery.gallery-pair {
    grid-template-columns: 1fr 1fr;
  }
}

/* Barrierefreiheit & Bewegung (WCAG 2.2 / moderne Browser) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .nav-toggle span,
  .site-nav,
  .cookie-banner,
  .btn,
  .pdf-card {
    transition: none !important;
  }

  .pdf-card:hover {
    transform: none;
  }
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-header .logo:focus-visible,
.site-nav a:focus-visible {
  border-radius: 10px;
}

/* Kundenupdate: Logo, Navigation, Formular, Inhalt */
.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  padding: 0.18rem 0.28rem;
  border-radius: 0;
  background: var(--surface);
  border: 0;
  box-shadow: none;
}
.logo img {
  display: block;
  height: 3.35rem;
  width: auto;
  max-width: min(60vw, 300px);
  object-fit: contain;
  transition: height 0.24s var(--ease), max-width 0.24s var(--ease);
}
.logo:hover img { opacity: 0.96; }

.nav-home-mobile { display: inline-flex; }

@media (min-width: 1024px) and (max-width: 1180px) {
  .site-nav a { font-size: 0.75rem; padding: 0.3rem 0.38rem; }
}

@media (min-width: 1024px) {
  .site-nav { justify-content: flex-end; }
  .nav-home-mobile { display: none !important; }
  .site-nav a {
    font-size: 1.18rem;
    font-weight: 400;
    letter-spacing: 0.005em;
    padding: 0.58rem 0.86rem;
  }
}

.site-header.is-compact {
  --header-h: 3.35rem;
}
.site-header.is-compact .header-inner {
  height: 3.35rem;
}
.site-header.is-compact .logo img {
  height: 2.65rem;
  max-width: min(52vw, 236px);
}
@media (max-width: 1023px) {
  .site-header.is-compact .site-nav {
    top: 3.35rem;
    height: calc(100vh - 3.35rem);
  }
}
@media (min-width: 1024px) {
  .site-header .site-nav a {
    transition: font-size 0.24s var(--ease), padding 0.24s var(--ease);
  }
  .site-header.is-compact .site-nav a {
    font-size: 1.08rem;
    font-weight: 400;
    padding: 0.5rem 0.74rem;
  }
}

.travel-list {
  margin: 0.75rem 0 1.25rem;
  padding-left: 0;
  list-style: none;
  line-height: 1.55;
}
.travel-list li {
  margin-bottom: 0.45rem;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  column-gap: 0.65rem;
  align-items: start;
}
.travel-text {
  min-width: 0;
}
.travel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  flex: 0 0 auto;
  color: var(--text);
}
.travel-icon .bi {
  font-size: 1.08rem;
  line-height: 1;
  opacity: 0.88;
}

.prose-block .h3 { margin-top: 0; }

.jobs-box {
  margin-top: 1.5rem;
  padding: 0;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.jobs-box > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin: 0.3rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: var(--fw-title);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0;
}
.jobs-box > summary.h3 {
  margin: 0.3rem;
}
.jobs-box > summary::-webkit-details-marker {
  display: none;
}
.jobs-box > summary::after {
  content: "⌄";
  flex-shrink: 0;
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 700;
  color: var(--muted);
  transform-origin: 50% 50%;
  transition: transform 0.2s var(--ease);
}
.jobs-box[open] > summary::after {
  transform: rotate(180deg);
}
.jobs-box > summary:hover {
  background: var(--accent-dim);
  border-color: rgba(42, 122, 77, 0.38);
}
.jobs-box > summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.jobs-box > :not(summary) {
  padding-inline: 1.35rem;
}
.jobs-box > p:first-of-type {
  margin-top: 1rem;
}
.jobs-box > p:last-child {
  margin-bottom: 1.25rem;
}
.jobs-box ul { margin: 0.4rem 0 1rem; padding-left: 1.15rem; }
.jobs-box .btn { margin-top: 0.25rem; }

.philosophy .h3 {
  margin: 1.75rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: var(--fw-title);
}
.philo-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.philo-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  color: var(--text);
}
.philo-icon .bi {
  font-size: 1.7rem;
  line-height: 1;
  opacity: 0.88;
}

.hours-link-btn {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}
.philosophy > .section-intro { margin-bottom: 0.5rem; }
.supplier-list { margin: 0.5rem 0 1rem; }

.form-fieldset {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin: 0 0 1.15rem;
  background: rgba(255, 255, 255, 0.45);
}
.form-fieldset legend {
  font-weight: var(--fw-label);
  font-size: 0.92rem;
  color: var(--text);
  padding: 0 0.35rem;
}
.form-sublegend {
  margin: 0.75rem 0 0.5rem;
  font-weight: var(--fw-label);
  font-size: 0.92rem;
  color: var(--text);
}
.form-field-hint {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0 !important;
  font-weight: var(--fw-label);
}
.radio-row input { width: auto; accent-color: var(--accent); }

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  flex-direction: row;
}
.checkbox-label input {
  width: auto;
  margin-top: 0.35rem;
  accent-color: var(--accent);
}

input.is-readonly {
  opacity: 0.68;
  cursor: not-allowed;
}

