/* ============================================================
   HUTTER REISEN – Stylesheet
   Design-Tokens aus DESIGN.md: Alpen trifft Adria.
   Tannengrün · Stein-Weiß · Adria-Türkis · Sonnen-Amber
   ============================================================ */

/* ---------- Fonts (lokal gehostet, DSGVO-freundlich) ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-var.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-var.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --pine:      #20342A;   /* Primär dunkel – Header, Footer, Headlines */
  --pine-deep: #18271F;   /* Footer-Verlauf, Schatten auf Grün */
  --stone:     #F4F3EE;   /* Seitenhintergrund */
  --stone-2:   #ECEAE1;   /* alternierende Abschnitte */
  --teal:      #1E6E72;   /* Akzent – Buttons, Links */
  --teal-dark: #17575A;   /* Hover */
  --amber:     #D98A3D;   /* Highlight – NUR sparsam (Badge) */
  --ink:       #232826;   /* Fließtext */
  --muted:     #5D645E;   /* Sekundärtext */
  --line:      #DCD9CF;   /* Trennlinien, Karten-Rahmen */
  --white:     #FFFFFF;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Type-Scale: 14 / 16 / 18 / 22 / 30 / 40 / 56 */
  --fs-sm: .875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-h4: 1.375rem;
  --fs-h3: 1.875rem;
  --fs-h2: 2.5rem;
  --fs-h1: 3.5rem;

  /* Spacing (4er-Basis) */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-6: 1.5rem; --sp-8: 2rem; --sp-12: 3rem; --sp-16: 4rem; --sp-24: 6rem;

  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(32, 52, 42, .08);
  --shadow-md: 0 6px 24px rgba(32, 52, 42, .10);
  --shadow-lg: 0 16px 48px rgba(32, 52, 42, .14);
  --transition: .25s ease;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--pine);
}
h4 { font-family: var(--font-body); font-weight: 700; color: var(--pine); }

h1 { font-size: clamp(2.4rem, 6vw, var(--fs-h1)); }
h2 { font-size: clamp(1.85rem, 4.2vw, var(--fs-h2)); }
h3 { font-size: clamp(1.4rem, 3vw, var(--fs-h3)); }

/* Sichtbarer Tastatur-Fokus */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--pine); color: #fff;
  padding: .75rem 1.25rem; z-index: 200; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

section { padding-block: clamp(3.5rem, 8vw, var(--sp-24)); }

/* ---------- Utility-Typo (Preise, Labels) ---------- */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-3);
}
.eyebrow--light { color: #A8D2CE; }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, var(--sp-12)); }
.section-head p { color: var(--muted); font-size: var(--fs-lg); margin-top: var(--sp-3); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; box-shadow: var(--shadow-md); }

.btn-outline { border-color: var(--pine); color: var(--pine); background: transparent; }
.btn-outline:hover { background: var(--pine); color: var(--stone); }

.btn-light { background: var(--stone); color: var(--pine); }
.btn-light:hover { background: #fff; color: var(--pine); box-shadow: var(--shadow-md); }

.btn-ghost-light { border-color: rgba(244, 243, 238, .5); color: var(--stone); background: transparent; }
.btn-ghost-light:hover { border-color: var(--stone); background: rgba(244, 243, 238, .1); color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 243, 238, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  min-height: 76px;
}

.nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 52px;
  width: auto;
  transition: transform var(--transition);
}
.nav-logo img:hover { transform: scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nav-links a:not(.btn) {
  font-weight: 500;
  color: var(--ink);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); border-bottom-color: var(--teal); }
.nav-links .btn { padding: .65rem 1.35rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--pine);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO – illustrierte Bergkulisse mit Höhenlinien (Signature)
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #F6F2E9 0%, #E4EAE4 60%, #20342A 100%);
}

/* Wenn ein echtes Foto da ist: <img class="hero-photo" …> einsetzen
   und die .hero-scene entfernen. */
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-scene svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(6rem, 14vh, 9rem) clamp(9rem, 22vh, 14rem);
  max-width: 620px;
  margin-right: auto;
}

.hero h1 {
  font-size: clamp(2.7rem, 7vw, var(--fs-h1));
  margin-bottom: var(--sp-4);
}
.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, var(--fs-lg));
  color: var(--ink);
  max-width: 52ch;
  margin-bottom: var(--sp-8);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* Ehrlichkeits-Leiste (statt erfundener Statistiken) */
.hero-facts {
  position: relative;
  z-index: 3;
  margin-top: -4.5rem;
  margin-bottom: -1rem;
}
.hero-facts-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.fact {
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  border-left: 1px solid var(--line);
}
.fact:first-child { border-left: 0; }
.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--pine);
  line-height: 1.1;
}
.fact span {
  display: block;
  margin-top: var(--sp-1);
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* ============================================================
   TOUREN
   ============================================================ */
.touren-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: clamp(2rem, 5vw, var(--sp-12));
}
.touren-head .section-head { margin-bottom: 0; }

.tour-group { margin-bottom: clamp(2.5rem, 6vw, var(--sp-16)); }
.tour-group:last-child { margin-bottom: 0; }

.tour-group-label {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.tour-group-label h3 {
  font-size: var(--fs-h4);
  white-space: nowrap;
}
.tour-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.tour-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

/* Bildfläche – Duotone-Platzhalter, wird durch echte Fotos ersetzt */
.tc-media {
  position: relative;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.tc-media--glockner  { background: linear-gradient(165deg, #4A7D74 0%, #20342A 100%); }
.tc-media--nockberge { background: linear-gradient(165deg, #6E9B84 0%, #2C4A38 100%); }
.tc-media--frischenkofel { background: linear-gradient(165deg, #567D8A 0%, #23404E 100%); }
.tc-media--ljubljana { background: linear-gradient(165deg, #4E8C8F 0%, #1E4A52 100%); }
.tc-media--triest    { background: linear-gradient(165deg, #3E7A85 0%, #1E4A5A 100%); }
.tc-media--graz      { background: linear-gradient(165deg, #5E8A6A 0%, #26402E 100%); }

.tc-media-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: rgba(255, 255, 255, .88);
  letter-spacing: .02em;
  padding-bottom: 1.5rem;
}

.tc-ridge {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 34%;
}

.tc-chip {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 2;
  background: rgba(24, 39, 31, .55);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.tc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--sp-6);
  gap: var(--sp-2);
}

.tc-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.tc-meta .tc-price { color: var(--teal); }

.tc-body h3 { font-size: var(--fs-h4); }
.tc-body p { color: var(--muted); font-size: .95rem; flex: 1; }

.tc-excerpt { color: var(--muted); font-size: .95rem; flex: 1; }
.tc-excerpt p { margin: 0; }

.posts-loading, .posts-fallback {
  grid-column: 1 / -1;
  color: var(--muted);
  padding-block: var(--sp-6);
}

.tc-link {
  margin-top: var(--sp-2);
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--transition);
  display: inline-flex;
  gap: .4rem;
}
.tour-card:hover .tc-link { color: var(--teal-dark); gap: .7rem; }

/* ============================================================
   EMPFEHLUNG DES MONATS
   ============================================================ */
.highlight { padding-block: 0; }
.highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.highlight-media {
  position: relative;
  min-height: 420px;
  background: linear-gradient(160deg, #567D8A 0%, #2A4A44 55%, var(--pine) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.highlight-media .tc-media-label { font-size: 2.4rem; }
.highlight-media .tc-ridge { height: 30%; }

.badge-amber {
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-6);
  z-index: 2;
  background: var(--amber);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(217, 138, 61, .4);
}

.highlight-body {
  background: var(--pine);
  color: var(--stone);
  padding: clamp(2rem, 5vw, var(--sp-16)) clamp(1.5rem, 4vw, var(--sp-12));
}
.highlight-body h2 { color: #fff; margin-bottom: var(--sp-4); }
.highlight-body > p { color: rgba(244, 243, 238, .8); margin-bottom: var(--sp-6); }

.highlight-list { display: grid; gap: var(--sp-4); margin-bottom: var(--sp-8); }
.highlight-list li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.highlight-list .li-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(244, 243, 238, .1);
  border-radius: 10px;
  font-size: 1.1rem;
}
.highlight-list strong { color: #fff; display: block; }
.highlight-list span { color: rgba(244, 243, 238, .72); font-size: .95rem; }

.highlight-foot {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.highlight-price { line-height: 1.15; }
.highlight-price small {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244, 243, 238, .6);
}
.highlight-price strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: #fff;
}

/* ============================================================
   WARUM HUTTER
   ============================================================ */
.why { background: var(--stone-2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-8) var(--sp-6);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.why-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: var(--sp-4);
}
.why-card h4 { margin-bottom: var(--sp-2); font-size: 1.1rem; }
.why-card p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   STIMMEN AUS DEM BUS
   ============================================================ */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.voice-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
}
.voice-card::before {
  content: '\201E';
  position: absolute;
  top: -4px;
  left: var(--sp-6);
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--teal);
  opacity: .3;
}
.voice-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--pine);
  margin-bottom: var(--sp-4);
}
.voice-card figcaption { font-size: var(--fs-sm); color: var(--muted); }
.voice-card figcaption strong { color: var(--ink); display: block; font-family: var(--font-body); }

.voices-note {
  margin-top: var(--sp-6);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Bewusst heller Hintergrund statt Teal: die Sektion steht direkt vor
   dem teal-farbenen Abschluss-CTA - zwei gleichfarbige Bänder
   hintereinander wirkten wie eine Wand. Hell hier lässt den CTA am
   Seitenende der stärkere Blickfang bleiben. */
.newsletter {
  background: var(--stone-2);
  color: var(--ink);
  border-block: 1px solid var(--line);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.newsletter h2 { color: var(--pine); margin-bottom: var(--sp-2); }
.newsletter p { color: var(--muted); max-width: 46ch; }

.newsletter-form {
  display: flex;
  gap: var(--sp-2);
  flex: 1 1 320px;
  max-width: 440px;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: .8rem 1rem;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30, 110, 114, .15);
}
.newsletter-form .btn:disabled { opacity: .6; cursor: wait; }

/* ============================================================
   CTA-BAND
   ============================================================ */
.cta-band {
  background: var(--teal);
  color: #fff;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: var(--sp-2); }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 46ch; }
.cta-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: rgba(244, 243, 238, .75);
  padding-block: var(--sp-16) var(--sp-6);
  font-size: .95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(244, 243, 238, .14);
}

.footer-brand p { margin-top: var(--sp-4); max-width: 34ch; }
.footer-logo img {
  height: 48px;
  width: auto;
  /* Logo hat dunkle Schrift – dezente helle Kontur für den dunklen Footer */
  filter: drop-shadow(1px 0 0 rgba(255,255,255,.9)) drop-shadow(-1px 0 0 rgba(255,255,255,.9))
          drop-shadow(0 1px 0 rgba(255,255,255,.9)) drop-shadow(0 -1px 0 rgba(255,255,255,.9));
}

.footer h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: grid; gap: var(--sp-2); }
.footer a { color: rgba(244, 243, 238, .75); }
.footer a:hover { color: #fff; }

.footer-contact li { display: flex; gap: var(--sp-2); align-items: flex-start; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding-top: var(--sp-6);
  font-size: var(--fs-sm);
  color: rgba(244, 243, 238, .55);
}
.footer-bottom a { color: rgba(244, 243, 238, .7); }

/* ============================================================
   UNTERSEITEN – gemeinsamer Seitenkopf
   ============================================================ */
.page-hero {
  background: var(--pine);
  color: var(--stone);
  padding-block: clamp(3.5rem, 9vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; margin-bottom: var(--sp-3); }
.page-hero p { color: rgba(244, 243, 238, .78); max-width: 56ch; font-size: var(--fs-lg); }
.page-hero .container { position: relative; z-index: 1; }

/* dezente Höhenlinien rechts im Seitenkopf */
.page-hero-topo {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  opacity: .3;
  pointer-events: none;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.team-card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-photo {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 140px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
}
/* Platzhalter-Flächen, bis echte Porträts da sind */
.team-photo--1 { background: linear-gradient(165deg, #4A7D74, #20342A); }
.team-photo--2 { background: linear-gradient(165deg, #4E8C8F, #1E4A52); }
.team-photo--3 { background: linear-gradient(165deg, #6E9B84, #2C4A38); }
.team-photo--4 { background: linear-gradient(165deg, #567D8A, #23404E); }
.team-photo--5 { background: linear-gradient(165deg, #3E7A85, #1E4A5A); }
.team-photo--6 { background: linear-gradient(165deg, #5E8A6A, #26402E); }
.team-photo--7 { background: linear-gradient(165deg, #7DA294, #2A4A44); }
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.team-body { padding: var(--sp-6); }
.team-body h3 { font-size: var(--fs-h4); }
.team-role {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: var(--sp-1) 0 var(--sp-3);
}
.team-body p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   FLOTTE
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.fleet-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.fleet-photo {
  position: relative;
  height: 260px;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
}
/* Platzhalter-Flächen, bis echte Fotos da sind */
.fleet-photo--1 { background: linear-gradient(165deg, #4A7D74, #20342A); }
.fleet-photo--2 { background: linear-gradient(165deg, #567D8A, #23404E); }
.fleet-photo--3 { background: linear-gradient(165deg, #3E7A85, #1E4A5A); }
.fleet-photo--4 { background: linear-gradient(165deg, #6E9B84, #2C4A38); }
.fleet-photo--5 { background: linear-gradient(165deg, #567D8A, #1E4A52); }
.fleet-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* Logo sitzt tief im Bild (Rumpf/Wasserlinie) - Bildausschnitt entsprechend nach unten verschoben */
.fleet-photo--3 img { object-position: center 82%; }

.fleet-body { padding: var(--sp-6); }
.fleet-body h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.fleet-body p { color: var(--muted); font-size: .95rem; }

.fleet-candid {
  margin: var(--sp-8) auto 0;
  max-width: 420px;
  text-align: center;
}
.fleet-candid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.fleet-candid figcaption {
  margin-top: var(--sp-3);
  color: var(--muted);
  font-size: var(--fs-sm);
}

/* Werte */
.values { background: var(--stone-2); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: var(--sp-3); }
.value-card h4 { margin-bottom: var(--sp-2); }
.value-card p { color: var(--muted); font-size: .92rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, var(--sp-16));
  align-items: start;
}

.contact-info h2 { margin-bottom: var(--sp-3); }
.contact-info > p { color: var(--muted); margin-bottom: var(--sp-8); }

.contact-item {
  display: flex;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
  border-top: 1px solid var(--line);
}
.contact-item:last-of-type { border-bottom: 1px solid var(--line); }
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1.2rem;
}
.contact-item h4 { font-size: 1rem; margin-bottom: .15rem; }
.contact-item p { color: var(--muted); font-size: .95rem; }

.contact-hours { margin-top: var(--sp-6); }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-2);
  border-bottom: 1px dashed var(--line);
  font-size: .95rem;
  color: var(--muted);
}
.hours-row strong { color: var(--ink); }

/* Formular */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, var(--sp-8));
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { margin-bottom: var(--sp-2); }
.contact-form-card > p { color: var(--muted); font-size: .95rem; margin-bottom: var(--sp-6); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { margin-bottom: var(--sp-4); }
.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--sp-1);
  color: var(--pine);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem .9rem;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 110, 114, .15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}
.form-check input { width: auto; margin-top: .3rem; }
.form-check label { font-weight: 400; font-size: .88rem; color: var(--muted); cursor: pointer; }

.form-submit { width: 100%; margin-top: var(--sp-2); }

/* Honeypot-Feld: außerhalb des sichtbaren Bereichs, aber nicht
   display:none - manche Bots überspringen unsichtbare Felder. */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Fehlerhinweis mit mailto-Rettungsanker */
.form-error {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  border: 1px solid #E0B084;
  background: #FBF3E8;
  border-radius: var(--radius);
  font-size: .92rem;
}

/* Erfolgsanzeige: grüner Kreis, in den sich ein Häkchen zeichnet.
   Bei prefers-reduced-motion erscheint beides ohne Animation
   (globale Regel setzt animation-duration auf ~0). */
.form-success { text-align: center; padding: var(--sp-8) var(--sp-4); }
.form-success:focus { outline: none; }
.form-success h3 { margin-bottom: var(--sp-2); }
.form-success p { color: var(--muted); }

.check-circle {
  width: 84px;
  height: 84px;
  display: block;
  margin: 0 auto var(--sp-4);
}
.check-circle circle {
  stroke: #2E9E5B;
  stroke-width: 2.5;
  stroke-dasharray: 158;
  stroke-dashoffset: 158;
  animation: check-draw .5s ease-out forwards;
}
.check-circle path {
  stroke: #2E9E5B;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 38;
  stroke-dashoffset: 38;
  animation: check-draw .35s ease-out .5s forwards;
}
@keyframes check-draw { to { stroke-dashoffset: 0; } }

/* ============================================================
   RECHTLICHES (Impressum / Datenschutz / AGB)
   ============================================================ */
.legal { max-width: 760px; }
.legal h2 { font-size: var(--fs-h3); margin: var(--sp-8) 0 var(--sp-3); }
.legal h3 { font-size: var(--fs-h4); margin: var(--sp-6) 0 var(--sp-2); }
.legal p, .legal li { color: var(--ink); margin-bottom: var(--sp-3); }
.legal ul { list-style: disc; padding-left: 1.4rem; }
.legal address { font-style: normal; }

.notice-box {
  background: #FBF3E7;
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-6);
  margin-bottom: var(--sp-8);
  font-size: .95rem;
}
.notice-box strong { color: var(--amber); }

.placeholder-data {
  background: var(--stone-2);
  border-radius: 6px;
  padding: 0 .35rem;
  font-style: italic;
  color: var(--muted);
}

/* Schmale Hinweis-Sektion (z. B. Satire-Disclaimer am Seitenende) */
.section-slim { padding-block: 0 clamp(2.5rem, 6vw, var(--sp-12)); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translate(-50%, 120%);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--pine);
  color: var(--stone);
  padding: .9rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: .95rem;
  max-width: min(92vw, 480px);
  transition: transform .35s ease;
}
.toast.show { transform: translate(-50%, 0); }

/* ============================================================
   EINBLEND-ANIMATIONEN
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tour-grid, .voices-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .team-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--stone);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: var(--sp-2) var(--sp-6) var(--sp-6);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; padding-top: var(--sp-4); }
  .nav-links a:not(.btn) { display: block; padding: .9rem 0; border-bottom: 0; }
  .nav-links .btn { width: 100%; }
  .nav-burger { display: flex; }
  .navbar .container { min-height: 64px; }
  .nav-logo img { height: 38px; }

  .highlight-inner { grid-template-columns: 1fr; }
  .highlight-media { min-height: 300px; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-facts-card { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(odd) { border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
  .touren-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .tour-grid, .voices-grid, .why-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .form-row { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .team-photo { width: 100%; height: 150px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* flex-basis wirkt bei umgeschalteter flex-direction als Höhe statt
     Breite - ohne diesen Reset würde das Eingabefeld riesig werden
     (siehe derselbe Fix im Blog-Theme). */
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex: 0 0 auto; width: 100%; max-width: none; }

  /* Hero mobil: Text und Bergkulisse untereinander statt überlagert.
     Hintergrund = oberster Himmelston der SVG-Szene, damit keine Kante entsteht. */
  .hero { display: block; min-height: 0; background: #F7F3EA; }
  .hero-inner { padding: 3.5rem 0 0; }
  .hero-scene { position: relative; height: 320px; margin-top: -1.5rem; }
  .hero-photo { position: relative; height: 320px; margin-top: -1.5rem; }
  .hero-facts { margin-top: -3.25rem; }
}
