/* =========================================================
   Gut & Schön – Relaunch (statische Seite)
   Design-Variablen oben zentral anpassbar.
   ========================================================= */
:root {
  --bg:        #faf6f0;   /* Seiten-Hintergrund (warm sand) */
  --bg-alt:    #e7eff5;   /* abgesetzte Sektionen (kühles Blau) */
  --surface:   #ffffff;   /* Karten */
  --ink:       #2c2a26;   /* Haupttext */
  --ink-soft:  #55514a;   /* Fließtext */
  --ink-mute:  #7b756b;   /* Labels */
  --line:      #e8dcc9;   /* Rahmen / Trenner */
  --blue:      #2f7099;   /* Primärfarbe */
  --blue-2:    #3682ae;   /* Hover / Akzent */
  --sand-2:    #f3ece1;   /* Info-Box */
  --terra:     #c98a5e;   /* warmer Akzent */
  --hero-dark: #1c201a;   /* Hero-Untergrund */
  --radius:    18px;
  --shadow:    0 8px 24px -18px rgba(44,42,38,0.5);
  --wrap:      min(1140px, 92%);
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 500; }

a { color: var(--blue); }

img { max-width: 100%; }

.container { width: var(--wrap); margin-inline: auto; }

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-2);
  margin: 0 0 0.6rem;
}

.section-head { max-width: 60ch; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head h2 { line-height: 1.15; font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--ink); margin: 0 0 0.5em; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-2); }
.btn-light { background: #fff; color: #2c3a2a; }
.btn-light:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn-muted { background: var(--line); color: var(--ink-mute); }
.btn-muted:hover { background: #ddd0bb; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,240,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { height: 50px; width: auto; display: block; }
.main-nav ul { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: color 0.15s ease; }
.main-nav a:hover { color: var(--blue); }
.main-nav a.nav-cta { background: var(--blue); color: #fff; padding: 0.5rem 1.1rem; border-radius: 999px; font-weight: 700; }
.main-nav a.nav-cta:hover { background: var(--blue-2); color: #fff; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 0; color: var(--ink);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: currentColor;
  position: relative; margin: 0 auto; transition: transform 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: min(84vh, 720px); min-height: 540px;
  overflow: hidden; background: var(--hero-dark);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease;
  animation: gsKen 16s ease-in-out infinite alternate;
  filter: brightness(1.12) saturate(1.03);   /* Fotos etwas heller */
}
.hero-slide.is-active { opacity: 1; }
/* Abdunklung nur so stark wie noetig, damit die weisse Schrift links
   lesbar bleibt – rechts laeuft sie fast ganz aus, damit das Foto hell wirkt. */
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,32,26,0.6) 0%, rgba(28,32,26,0.34) 42%, rgba(28,32,26,0.04) 100%);
}
.hero-inner { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.hero-copy { max-width: 40rem; animation: gsFade 0.8s ease both; }
.hero-copy .eyebrow { color: #d9c6a8; }
.hero-copy h1 { line-height: 1.06; font-size: clamp(2.6rem, 5.4vw, 4.4rem); letter-spacing: -0.01em; color: #fff; margin: 0 0 1rem; text-shadow: 0 2px 18px rgba(20,24,18,0.55); }
.hero-lead { font-size: 1.18rem; color: #ede7dc; max-width: 42ch; margin: 0 0 1.8rem; text-shadow: 0 1px 10px rgba(20,24,18,0.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 0 0 1.8rem; }
.hero-usps { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; }
.hero-usps li { font-size: 0.86rem; color: #e5ddcd; font-weight: 600; }
.hero-meta { position: absolute; left: 0; bottom: 26px; display: flex; align-items: center; gap: 16px; }
.hero-place {
  display: flex; align-items: center; gap: 9px;
  background: rgba(28,32,26,0.42); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; padding: 0.45rem 1rem;
}
.hero-place .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 4px rgba(201,138,94,0.25); }
.hero-place span:last-child { color: #fff; font-weight: 700; font-size: 0.92rem; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; cursor: pointer; padding: 0; transition: all 0.3s ease; background: rgba(255,255,255,0.5); }
.hero-dots button.is-active { width: 26px; background: #fff; }

/* ---------- Über uns ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.about-grid h2 { line-height: 1.15; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0 0 0.5em; }
.about-grid p { margin: 0 0 1rem; }
.about-note {
  margin-top: 1.5rem; padding: 1.1rem 1.3rem; background: var(--sand-2);
  border-left: 4px solid var(--terra); border-radius: 12px;
  font-size: 0.98rem; color: var(--ink-soft);
}
.about-note strong { color: var(--ink); }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; background: var(--surface); padding: 1.3rem 1.4rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-list .ic { color: var(--blue-2); font-size: 1.3rem; line-height: 1.4; }
.feature-list h3 { font-size: 1.2rem; margin: 0 0 0.25rem; color: var(--ink); }
.feature-list p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Reisen ---------- */
.reisen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.reise-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.reise-card .cover { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.reise-card .body { padding: 1.4rem 1.5rem 1.6rem; }
.reise-card h3 { font-size: 1.2rem; margin: 0 0 0.5em; color: var(--ink); }
.reise-card p { color: var(--ink-soft); margin: 0; }

/* ---------- Termine ---------- */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; margin: 0 0 2rem; }
.filter-group { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.filter-group > span { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); }
.chips-row { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pill {
  padding: 0.4rem 0.9rem; border-radius: 999px; font: inherit; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; transition: all 0.15s ease; background: #fff; color: var(--ink-soft); border: 1.5px solid var(--line);
}
.pill.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }

.termine-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.termin-card {
  position: relative; overflow: hidden; background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.5rem 1.5rem 1.6rem; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.9rem; animation: gsFade 0.5s ease both;
}
.termin-card.is-full .full-veil { position: absolute; inset: 0; background: rgba(244,240,233,0.5); backdrop-filter: grayscale(0.85); z-index: 1; pointer-events: none; }
.termin-card .badge { position: absolute; top: 1rem; right: 1rem; z-index: 2; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.3rem 0.7rem; border-radius: 999px; background: var(--ink); color: #fff; }
.termin-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.8rem; }
.termin-place { color: var(--blue-2); font-weight: 700; font-size: 0.95rem; }
.termin-date { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); }
.termin-card > strong { font-size: 1.02rem; position: relative; z-index: 2; }
.termin-suited { font-size: 0.9rem; color: var(--ink-soft); margin: 0; display: flex; gap: 0.5rem; position: relative; z-index: 2; }
.termin-suited .k { color: var(--ink); font-weight: 600; white-space: nowrap; }
.termin-begl { margin-top: 0.2rem; position: relative; z-index: 2; }
.termin-begl .lbl { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute); margin-bottom: 0.5rem; }
.termin-begl ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.termin-begl li { display: flex; align-items: center; gap: 0.7rem; }
.termin-begl img, .termin-begl .ph { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.termin-begl .ph { background: #8fb6d1; color: #fff; display: grid; place-items: center; font-size: 0.85rem; font-weight: 700; }
.termin-begl .who { display: flex; flex-direction: column; line-height: 1.25; }
.termin-begl .who strong { font-size: 0.92rem; color: var(--ink); }
.termin-begl .who span { font-size: 0.8rem; color: var(--blue-2); font-weight: 600; }
.termin-card .cta { position: relative; z-index: 2; align-self: flex-start; margin-top: 0.3rem; }

/* ---------- Begleitung / Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.4rem; }
.team-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; text-align: center; }
/* Quadratischer Ausschnitt, mittig zentriert. Fotos sollten
   moeglichst quadratisch mit zentriertem Gesicht vorliegen,
   damit der Zuschnitt bei allen gleich gut sitzt. */
.team-photo { aspect-ratio: 1/1; background-size: cover; background-position: center; background-color: var(--bg-alt); }
.team-body { padding: 1.1rem 1.2rem 1.4rem; }
.team-body h3 { font-size: 1.2rem; margin: 0 0 0.2rem; color: var(--ink); }
.team-role { color: var(--blue-2); font-weight: 700; font-size: 0.85rem; margin: 0 0 0.5rem; }
.team-body p:last-child { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* ---------- Galerie ---------- */
.album-bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem; margin: 0 0 1.8rem; }
.album-bar > .lbl { font-size: 0.78rem; color: var(--ink-mute); display: inline-flex; align-items: center; gap: 0.4rem; margin-right: 0.3rem; }
.album-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.album-tabs .pill .count { opacity: 0.6; font-weight: 600; margin-left: 0.45rem; }
.gallery { columns: 4 220px; column-gap: 1rem; }
.gallery figure {
  margin: 0 0 1rem; break-inside: avoid; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); cursor: zoom-in; position: relative; animation: gsFade 0.4s ease both;
}
.gallery img { width: 100%; display: block; }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 0.8rem 0.9rem 0.6rem;
  background: linear-gradient(transparent, rgba(44,42,38,0.75)); color: #fff; font-size: 0.82rem;
}

/* ---------- Kontakt ---------- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.kontakt-grid h2 { line-height: 1.15; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0 0 0.5em; }
.kontakt-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.6rem; }
.kontakt-list li { display: flex; gap: 0.8rem; align-items: baseline; }
.kontakt-list .k { min-width: 112px; color: var(--ink-soft); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.contact-form { background: var(--surface); padding: 1.8rem; border-radius: var(--radius); box-shadow: var(--shadow); display: grid; gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font: inherit; padding: 0.7rem 0.85rem; border: 1.5px solid var(--line);
  border-radius: 12px; background: var(--bg); color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-2); background: #fff; }
.check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--ink-soft); }
.check input { margin-top: 0.2rem; }
.form-hint { font-size: 0.88rem; color: var(--blue); margin: 0; min-height: 1.2em; }
.form-hint.is-error { color: #a5352b; }

/* Spam-Falle: unsichtbar, aber nicht display:none – manche
   Bots ignorieren ausgeblendete Felder gezielt. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Fallback ---------- */
.fallback { text-align: center; color: var(--ink-soft); background: var(--surface); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); grid-column: 1 / -1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #ded9d0; padding: 3rem 0 2rem; }
.footer-inner { display: grid; gap: 1.4rem; }
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-brand .logo-badge { display: inline-flex; background: #fff; border-radius: 12px; padding: 0.5rem 0.85rem; }
.footer-brand img { height: 34px; width: auto; display: block; }
.footer-brand p { margin: 0; font-size: 0.9rem; color: #b7b1a6; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a { color: #ded9d0; font-size: 0.92rem; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: 0.82rem; color: #9c968b; margin: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(28,26,23,0.9);
  display: grid; place-items: center; padding: 4vw; animation: gsFade 0.25s ease both;
}
.lightbox[hidden] { display: none; }
.lightbox-close { position: absolute; top: 20px; right: 26px; font-size: 2.4rem; line-height: 1; color: #fff; background: none; border: 0; cursor: pointer; }
.lightbox-img { width: 92vw; height: 88vh; background-size: contain; background-repeat: no-repeat; background-position: center; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); }

/* ---------- Animationen ---------- */
@keyframes gsFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes gsKen  { from { transform: scale(1.02); } to { transform: scale(1.12); } }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about-grid, .reisen-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; right: 0; left: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 0; }
  .main-nav li { padding: 0 4%; }   /* an den 92%-Container ausgerichtet, nicht var(--wrap) */
  .main-nav a { display: block; padding: 0.7rem 0; }
  .main-nav a.nav-cta { display: inline-block; margin: 0.4rem 0; }
  .header-inner { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; }
  .hero-slide { transition: opacity 0.4s ease; }
}
