/*
═══════════════════════════════════════════════════════════════
  180° SÜD – GeoExperiences
  Gemeinsame Stylesheet-Datei
  ─────────────────────────────────────────────────────────────
  FARBEN ANPASSEN: Suche nach dem Abschnitt "DESIGN TOKENS"
  SCHRIFTEN ANPASSEN: Suche nach --f-h, --f-b, --f-m
  ABSTÄNDE ANPASSEN: padding/margin Werte direkt in den Sektionen
═══════════════════════════════════════════════════════════════
*/

/* ═══ DESIGN TOKENS ════════════════════════════════════════ */
:root {
  /* Papier-Töne (Hintergründe) */
  --paper:        #F0EDE4;   /* Haupt-Hintergrund */
  --paper-2:      #E4DFD3;   /* Leicht dunkler */
  --paper-3:      #D5CFC0;   /* Trennlinien, Akzente */

  /* Tinte (Texte) */
  --ink:          #111820;   /* Überschriften, Haupttext */
  --ink-2:        #1E2E3A;   /* Fliesstext, Beschreibungen */
  --ink-3:        #3D4F5E;   /* Nebentexte, Labels (nur ≥12px) */

  /* Ozean-Akzent */
  --ocean:        #1D5F78;   /* Hauptakzent: Buttons, Links */
  --ocean-2:      #2E7A96;   /* Hover-Zustand */
  --ocean-light:  #4A8FA8;   /* Helle Variante auf Dunkel */
  --ocean-deep:   #0E2535;   /* Dunkle Hintergründe */
  --ocean-pale:   #BCD8E4;   /* Sehr hell, für Zitate auf Dunkel */

  /* Struktur */
  --rule:         rgba(17,24,32,0.12);   /* Trennlinien fein */
  --rule-strong:  rgba(17,24,32,0.22);   /* Trennlinien stark */
  --white:        #FDFAF5;               /* Formularhintergründe */

  /* Schriften */
  --f-h: 'Barlow Condensed', sans-serif;  /* Überschriften */
  --f-b: 'Jost', sans-serif;              /* Fliesstext */
  --f-m: 'IBM Plex Mono', monospace;      /* Labels, Koordinaten */

  /* Animation */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══ RESET & BASIS ════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-b);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--f-h);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .02em;
}
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ═══ LOGO ═════════════════════════════════════════════════
   Das Logo hat einen transparenten Hintergrund.
   .logo-icon zeigt nur den Kompassteil (ohne Schrifttext unten).
   Bei Problemen (schwarzer Kasten): mix-blend-mode ergänzen.
══════════════════════════════════════════════════════════════ */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;   /* zeigt den Kompass-Anker Teil */
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: auto;
  display: block;
  /* Schwarzen Hintergrund entfernen falls nötig: */
  /* mix-blend-mode: multiply;  ← für Navy-Logo auf hellen Flächen */
  /* mix-blend-mode: screen;    ← für Weiss-Logo auf dunklen Flächen */
}
/* Auf hellen Hintergründen: mix-blend-mode: multiply */
.logo-icon--dark img   { mix-blend-mode: multiply; }
/* Auf dunklen Hintergründen: mix-blend-mode: screen */
.logo-icon--light img  { mix-blend-mode: screen; }

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-wordmark {
  font-family: var(--f-h);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-wordmark em {
  font-style: italic;
  font-weight: 400;
}
.logo-tagline {
  font-family: var(--f-m);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ═══ NAVIGATION ════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-strong);
  transition: box-shadow .3s;
}
.nav.elevated { box-shadow: 0 2px 16px rgba(17,24,32,.1); }

/* Nav Logo — heller Hintergrund → Navy-Logo */
.nav .logo-wordmark { color: var(--ink); }
.nav .logo-wordmark em { color: var(--ocean); }
.nav .logo-tagline { color: var(--ink-3); }

.nav-sep {
  width: 1px; height: 22px;
  background: var(--rule-strong);
  margin: 0 .3rem;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-family: var(--f-m);
  font-size: 12px; font-weight: 400;
  color: var(--ink-2);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--ocean);
  transition: width .25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: .45rem 1.2rem !important;
  border: 1.5px solid var(--ocean) !important;
  color: var(--ocean) !important;
  font-weight: 500 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ocean) !important; color: #fff !important; }

/* ═══ PAGE HEADER (Unterseiten) ════════════════════════════ */
.page-header {
  margin-top: 64px;
  background: var(--ocean-deep);
  padding: 4rem 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--ocean);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(29,95,120,.2), transparent);
  pointer-events: none;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.breadcrumb {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--f-m); font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.2rem;
}
.breadcrumb a:hover { color: rgba(255,255,255,.6); }
.breadcrumb-sep { opacity: .3; }
.breadcrumb-current { color: var(--ocean-light); }
.page-h1 {
  font-family: var(--f-h);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: .8rem;
}
.page-h1 em {
  font-style: italic; font-weight: 400;
  color: var(--ocean-pale);
  text-transform: none;
}
.page-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,.5);
  max-width: 560px; line-height: 1.8;
}

/* ═══ SECTION BASICS ════════════════════════════════════════ */
.section { padding: 5rem 2.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header {
  display: flex; align-items: baseline; gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}
.section-num {
  font-family: var(--f-m);
  font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ocean);
}
.section-h2 {
  font-family: var(--f-h);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700; text-transform: uppercase;
  color: var(--ink); letter-spacing: .04em;
}
.section-subtitle {
  font-size: 15px; color: var(--ink-2);
  margin-left: auto; font-style: italic;
  font-family: var(--f-b); font-weight: 300;
}

/* ═══ BUTTONS ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem;
  font-family: var(--f-h);
  font-size: 15px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: all .22s var(--ease);
}
.btn-primary { background: var(--ocean); color: #fff; }
.btn-primary:hover {
  background: var(--ocean-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,95,120,.3);
}
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--rule-strong);
}
.btn-outline:hover {
  border-color: var(--ink-2); color: var(--ink);
  background: rgba(17,24,32,.04);
}
.btn-ocean-outline {
  background: transparent; color: var(--ocean);
  border: 1.5px solid var(--ocean);
}
.btn-ocean-outline:hover { background: var(--ocean); color: #fff; }

/* ═══ FORMULARE ════════════════════════════════════════════ */
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-family: var(--f-m);
  font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-2);
  margin-bottom: .5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--rule-strong);
  background: var(--white);
  font-family: var(--f-b); font-size: 15px; color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--ocean); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-3); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-note {
  font-family: var(--f-m);
  font-size: 11px; letter-spacing: .08em;
  color: var(--ink-3); margin-top: .6rem;
}
.form-success {
  padding: 1.2rem 1.5rem;
  background: rgba(45,122,74,.1);
  border-left: 3px solid #2d7a4a;
  font-size: 15px; color: #1a5c35;
  display: none;
}

/* ═══ KARTEN / CARDS ════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 2rem;
  transition: box-shadow .2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(17,24,32,.08); }
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
}

/* ═══ ROUTE STOP LABEL ══════════════════════════════════════ */
.route-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-m); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ocean);
  border: 1px solid rgba(29,95,120,.25);
  padding: .25rem .7rem;
}

/* ═══ EYEBROW LABEL ════════════════════════════════════════ */
.eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--f-m); font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--ocean); flex-shrink: 0;
}
.eyebrow--light { color: var(--ocean-light); }
.eyebrow--light::before { background: var(--ocean-light); }

/* ═══ DIVIDER ══════════════════════════════════════════════ */
.divider { width: 48px; height: 2px; background: var(--rule-strong); margin: 1.5rem 0; }

/* ═══ SCROLL REVEAL ════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.r1 { transition-delay: .08s; }
.r2 { transition-delay: .16s; }
.r3 { transition-delay: .24s; }
.r4 { transition-delay: .32s; }

/* ═══ FOOTER ════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 3rem 2.5rem 2rem;
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { }
/* Footer Logo — dunkler Hintergrund → Weiss-Logo */
.footer .logo-wordmark { color: rgba(255,255,255,.7); }
.footer .logo-wordmark em { color: rgba(255,255,255,.3); }
.footer .logo-tagline { color: rgba(255,255,255,.25); }
.footer-about {
  font-size: 13px; color: rgba(255,255,255,.3);
  line-height: 1.8; margin-top: .8rem;
}
.footer-col-title {
  font-family: var(--f-m);
  font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: .8rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.75); }
.footer-bottom {
  max-width: 1200px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,.2);
  font-family: var(--f-m); letter-spacing: .06em;
}
.footer-coord {
  font-family: var(--f-m); font-size: 11px;
  letter-spacing: .15em; color: rgba(255,255,255,.15);
}

/* ═══ NEWSLETTER INLINE ════════════════════════════════════ */
.newsletter-inline {
  display: flex; gap: 0; max-width: 440px;
}
.newsletter-inline .form-input {
  border-right: none; flex: 1;
}
.newsletter-inline .btn {
  white-space: nowrap; padding: .85rem 1.4rem;
  font-size: 14px;
}

/* ═══ DARK SECTION ═════════════════════════════════════════ */
.section-dark {
  background: var(--ocean-deep);
  color: rgba(255,255,255,.8);
}
.section-dark .section-h2 { color: #fff; }
.section-dark .eyebrow { color: var(--ocean-light); }
.section-dark .eyebrow::before { background: var(--ocean-light); }
.section-dark p { color: rgba(255,255,255,.55); }

/* ═══ HIGHLIGHT BOX ════════════════════════════════════════ */
.highlight-box {
  border-left: 3px solid var(--ocean);
  padding: 1.2rem 1.5rem;
  background: rgba(29,95,120,.06);
  margin: 1.5rem 0;
}
.highlight-box p {
  font-size: 15px; color: var(--ink-2); line-height: 1.8;
}

/* ═══ INFO TABLE ════════════════════════════════════════════ */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--rule); }
.info-table tr:last-child { border-bottom: none; }
.info-table td {
  padding: .9rem .5rem;
  font-size: 14px; vertical-align: top;
}
.info-table td:first-child {
  font-family: var(--f-m); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); width: 140px; padding-top: 1rem;
}
.info-table td:last-child { color: var(--ink-2); }
.info-table td strong { color: var(--ink); font-weight: 500; }

/* ═══ RESPONSIVE ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 1rem; }
  .nav-links { display: flex !important; }
  .nav-sep { display: none; }
  .section { padding: 3rem 1.2rem; }
  .page-header { padding: 3rem 1.2rem 2.5rem; }
  .footer { padding: 2.5rem 1.2rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; gap: .5rem; }
  .section-subtitle { margin-left: 0; }
  .newsletter-inline { flex-direction: column; }
  .newsletter-inline .form-input { border-right: 1.5px solid var(--rule-strong); }
}

/* ═══ MOBILE NAV (Hamburger) ════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem;
}
.nav-hamburger span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all .2s;
}
.mobile-nav {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-strong);
  padding: 1rem 1.2rem 1.5rem;
  z-index: 99;
  box-shadow: 0 4px 16px rgba(17,24,32,.1);
}
.mobile-nav a {
  display: block; padding: .7rem 0;
  font-size: 16px; color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.mobile-nav a:last-child { border-bottom: none; }
@media (max-width: 900px) {
  .nav {
    padding: 0 1rem 0 1rem;
    height: auto;
    min-height: 56px;
    flex-wrap: wrap;
    align-items: center;
    overflow: visible;
  }
  .nav-sep { display: none; }
  .nav-tagline { display: none; }
  .nav-hamburger { display: none; }
  .mobile-nav { display: none !important; }
  #markt-switcher { display: none; }
  .nav-links {
    display: flex !important;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding: .4rem 0 .6rem;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-top: 1px solid var(--rule);
    flex-shrink: 0;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a, .nav-links .nav-dd-trigger {
    white-space: nowrap;
    padding: .4rem .7rem;
    font-size: 13px;
    flex-shrink: 0;
  }
  /* Mobile dropdown handled via JS body-level panel — see components.js */
}

/* ═══════════════════════════════════════════════════════════
   LIVE DATA WIDGETS — 180° Süd
   ═══════════════════════════════════════════════════════════ */

.widget-section {
  background: var(--paper-2);
  border: 1px solid var(--rule-strong);
  padding: 1.4rem 1.6rem;
  margin-top: 2rem;
}
.widget-eyebrow {
  font-family: var(--f-m); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: .6rem;
  display: flex; align-items: center; gap: .5rem;
}
.widget-eyebrow::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ocean);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}
.widget-title {
  font-family: var(--f-h); font-size: 18px;
  font-weight: 600; text-transform: uppercase;
  color: var(--ink); margin-bottom: 1rem;
}
.wx-source {
  font-family: var(--f-m); font-size: 10px;
  letter-spacing: .08em; color: var(--ink-3);
  margin-top: .8rem; border-top: 1px solid var(--rule);
  padding-top: .5rem;
}

/* Wetter */
.wx-widget { display: flex; flex-direction: column; gap: .8rem; }
.wx-main { display: flex; align-items: center; gap: 1.2rem; }
.wx-icon-big { font-size: 2.8rem; line-height: 1; }
.wx-main-info {}
.wx-temp-big {
  font-family: var(--f-h); font-size: 2.2rem;
  font-weight: 700; color: var(--ink); line-height: 1;
}
.wx-cond {
  font-size: 14px; color: var(--ink-2); margin: .2rem 0;
}
.wx-wind-info {
  font-family: var(--f-m); font-size: 11px;
  letter-spacing: .08em; color: var(--ocean-light);
}
.wx-hourly {
  display: flex; gap: 1px; background: var(--rule);
}
.wx-hour {
  flex: 1; background: var(--paper);
  padding: .6rem; text-align: center;
}
.wx-h-time {
  font-family: var(--f-m); font-size: 10px;
  color: var(--ink-3); margin-bottom: .2rem;
}
.wx-h-icon { font-size: 16px; margin-bottom: .2rem; }
.wx-h-temp {
  font-family: var(--f-h); font-size: 15px;
  font-weight: 600; color: var(--ink);
}
.wx-error { font-size: 13px; color: var(--ink-3); font-style: italic; }

/* Meerestemperatur */
.sst-widget {}
.sst-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
}
.sst-item {
  background: var(--paper); padding: .9rem 1rem;
}
.sst-label {
  font-family: var(--f-m); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: .3rem;
}
.sst-val {
  font-family: var(--f-h); font-size: 1.6rem;
  font-weight: 700; color: var(--ink);
}
.sst-warm { color: #e08030; }
.sst-mid  { color: #5BA3C9; }
.sst-cool { color: #7ab8d4; }

/* Seismik */
.seis-widget {}
.seis-header {
  font-family: var(--f-m); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: .8rem;
}
.seis-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .6rem 0; border-bottom: 1px solid var(--rule);
}
.seis-row:last-of-type { border-bottom: none; }
.seis-mag {
  font-family: var(--f-h); font-size: 1.1rem;
  font-weight: 700; min-width: 44px; padding-top: 2px;
}
.seis-place {
  font-size: 13px; color: var(--ink-2); margin-bottom: .15rem;
}
.seis-meta {
  font-family: var(--f-m); font-size: 10px;
  letter-spacing: .08em; color: var(--ink-3);
}
.seis-none {
  font-size: 13px; color: var(--ink-3);
  font-style: italic; padding: .5rem 0;
}

/* Stromboli */
.stromboli-widget {}
.stromboli-header {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: .6rem;
}
.stromboli-dot {
  width: 12px; height: 12px; border-radius: 50%;
  flex-shrink: 0;
}
.stromboli-status {
  font-family: var(--f-h); font-size: 15px;
  font-weight: 600; text-transform: uppercase;
}
.stromboli-date {
  font-family: var(--f-m); font-size: 10px;
  color: var(--ink-3); letter-spacing: .08em;
}
.stromboli-desc {
  font-size: 13px; color: var(--ink-2);
  line-height: 1.6;
}

/* CO₂ */
.co2-widget {}
.co2-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
}
.co2-item {
  background: var(--paper); padding: .9rem 1rem;
}
.co2-label {
  font-family: var(--f-m); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: .3rem;
}
.co2-val {
  font-family: var(--f-h); font-size: 1.5rem;
  font-weight: 700; color: var(--ink);
}
.co2-unit { font-size: .85rem; font-weight: 300; }
.co2-warn { color: #e08030; }
.co2-ref  { color: var(--ink-3); font-size: 1.2rem; }

/* Meeresspiegel */
.sl-widget {}
.sl-title {
  font-family: var(--f-m); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 1rem;
}
.sl-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 100px; padding-bottom: 1.8rem; position: relative;
}
.sl-bar-wrap {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; height: 100%;
  position: relative;
}
.sl-bar {
  width: 100%; border-radius: 2px 2px 0 0;
  position: relative; min-height: 4px;
  transition: height .3s;
}
.sl-bar-val {
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-m); font-size: 9px;
  color: var(--ink-3); white-space: nowrap;
}
.sl-year {
  position: absolute; bottom: -18px;
  font-family: var(--f-m); font-size: 9px;
  color: var(--ink-3);
}
.sl-note {
  font-family: var(--f-m); font-size: 11px;
  color: var(--ink-2); margin-top: .6rem;
}

/* Astronomie */
.astro-widget {}
.astro-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--rule);
}
.astro-item {
  background: var(--paper); padding: .9rem .8rem;
  text-align: center;
}
.astro-icon { font-size: 1.6rem; margin-bottom: .3rem; }
.astro-label {
  font-family: var(--f-m); font-size: 9px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: .2rem;
}
.astro-val {
  font-family: var(--f-h); font-size: 14px;
  font-weight: 600; color: var(--ink); line-height: 1.2;
}
.astro-sub {
  font-size: 10px; color: var(--ink-3); margin-top: .2rem;
}

@media (max-width: 768px) {
  .sst-row, .co2-row { grid-template-columns: 1fr 1fr; }
  .astro-row { grid-template-columns: 1fr 1fr; }
  .wx-hourly { display: none; }
}

/* Testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule-strong);
}
.testimonial-card {
  background: var(--white); padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column; gap: .8rem;
}
.testimonial-stars {
  color: var(--brass); font-size: 14px; letter-spacing: 2px;
}
.testimonial-text {
  font-size: 14px; color: var(--ink-2); line-height: 1.75;
  font-style: italic;
  border-left: 2px solid var(--ocean-pale); padding-left: 1rem;
}
.testimonial-author {
  margin-top: auto;
}
.testimonial-name {
  font-family: var(--f-h); font-size: 14px;
  font-weight: 600; text-transform: uppercase;
  color: var(--ink);
}
.testimonial-meta {
  font-family: var(--f-m); font-size: 10px;
  letter-spacing: .12em; color: var(--ink-3);
}
.testimonial-placeholder {
  background: var(--paper-2);
  border: 2px dashed var(--rule-strong);
  padding: 2rem; text-align: center;
  font-size: 13px; color: var(--ink-3);
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ═══ NAUTISCHE AUFZÄHLUNGS-ICONS ══════════════════════════ */
/* Verwendung: <ul class="nautical-list icon-compass"> ... */
.nautical-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.nautical-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: 15px; font-weight: 300; color: var(--ink-2); line-height: 1.7;
}
.nautical-list li::before {
  content: ''; display: inline-block; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 2px;
  background-size: contain; background-repeat: no-repeat;
  background-position: center; opacity: .75;
}
/* Kompass — für GeoExpeditions, Navigation, Wissen */
.nautical-list.icon-compass li::before,
.nautical-list li.icon-compass::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D5F78' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='12,2 14.5,9.5 12,12 9.5,9.5' fill='%231D5F78' opacity='.8'/%3E%3Cpolygon points='12,22 9.5,14.5 12,12 14.5,14.5' fill='%231D5F78' opacity='.3'/%3E%3C/svg%3E");
}
/* Anker — für Entspannung, Ankern, Ruhe */
.nautical-list.icon-anchor li::before,
.nautical-list li.icon-anchor::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D5F78' stroke-width='1.5'%3E%3Ccircle cx='12' cy='5' r='3'/%3E%3Cline x1='12' y1='8' x2='12' y2='22'/%3E%3Cpath d='M5 15c0 3.87 3.13 7 7 7s7-3.13 7-7'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
/* Wellen — für Meer, Klima */
.nautical-list.icon-wave li::before,
.nautical-list li.icon-wave::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D5F78' stroke-width='1.5'%3E%3Cpath d='M2 12c2-4 4-4 6 0s4 4 6 0 4-4 6 0'/%3E%3Cpath d='M2 17c2-4 4-4 6 0s4 4 6 0 4-4 6 0' opacity='.4'/%3E%3C/svg%3E");
}
/* Segel — für Segeln */
.nautical-list.icon-sail li::before,
.nautical-list li.icon-sail::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D5F78' stroke-width='1.5'%3E%3Cpath d='M12 2v20M12 2C12 2 4 8 4 18h8'/%3E%3Cpath d='M12 7c0 0 5 3 6 9h-6' opacity='.5'/%3E%3Cline x1='3' y1='22' x2='21' y2='22'/%3E%3C/svg%3E");
}
/* Buch/Lupe — für Briefings, Wissen */
.nautical-list.icon-book li::before,
.nautical-list li.icon-book::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D5F78' stroke-width='1.5'%3E%3Cpath d='M4 19.5A2.5 2.5 0 016.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 014 19.5v-15A2.5 2.5 0 016.5 2z'/%3E%3C/svg%3E");
}
/* Schild — für Qualifikationen, Sicherheit */
.nautical-list.icon-shield li::before,
.nautical-list li.icon-shield::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D5F78' stroke-width='1.5'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}
/* Standard (kein Class): Kompass als Default */
.nautical-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D5F78' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='12,2 14.5,9.5 12,12 9.5,9.5' fill='%231D5F78' opacity='.8'/%3E%3Cpolygon points='12,22 9.5,14.5 12,12 14.5,14.5' fill='%231D5F78' opacity='.3'/%3E%3C/svg%3E");
}
