/* ============================================================
   PradBike — shared stylesheet
   Used by all pages. Keep page-specific styles in their own HTML.
   ============================================================ */

:root {
  /* Base palette */
  --light: #f0ebe3;
  --dark: #14100c;
  --black: #000000;

  /* Primary CTA (overridable via tweaks panel) */
  --cta: #b8905a;         /* default: ochre */
  --cta-hover: #9c7848;
  --cta-ink: #1c1508;

  /* Named accents */
  --ochre: #b8905a;
  --alpine: #7a92a8;
  --olive: #5a6a40;
  --hot: #c83828;

  /* Dark surfaces */
  --d-head: #ece4d8;
  --d-body: #d4c4b0;
  --d-mute: #b0a090;
  --d-card: #1e1812;
  --d-border: #2e2318;

  /* Light surfaces */
  --l-head: #1c1508;
  --l-body: #6a5035;
  --l-mute: #7a5a2a;
  --l-card: #e0d8cc;
  --l-border: #c8b898;

  /* Difficulty badges (spec: S1 olive → S2 alpine → S3 ochre → S4 red) */
  --sl-s1: #5a6a40;
  --sl-s2: #7a92a8;
  --sl-s3: #b8905a;
  --sl-s4: #c83828;
  --sl-other: #8a7a65; /* Schotter/Asphalt */

  /* Warning/note box */
  --warn-bg: #fff3d6;
  --warn-border: #e0c080;
  --warn-text: #6a4a20;

  /* Subtle background */
  --subtle-bg: #fafaf5;

  /* Pure white — for card/table backgrounds on warm surfaces */
  --white: #ffffff;

  /* ── Spacing scale ─────────────────────────────────────────── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-7:  28px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;   /* not used directly — via semantic tokens */
  --space-25: 100px;
  --space-30: 120px;
  --space-35: 140px;

  /* ── Semantic spacing tokens ───────────────────────────────── */

  /* Section vertical padding */
  --space-section:    100px;  /* standard content sections */
  --space-section-lg: 120px;  /* CTA / dark emphasis sections */
  --space-section-xl: 140px;  /* full hero sections */

  /* Mobile section padding (applied via @media) */
  --space-section-mob: 56px;
  --space-cta-mob: 72px;   /* CTA sections on mobile (reduced from 120–140px desktop) */

  /* Typography spacing */
  --space-eyebrow-gap:    20px;  /* eyebrow → heading (margin-bottom on .eyebrow) */
  --space-heading-sub:    12px;  /* heading → sub-element in section heads */
  --space-heading-text:   24px;  /* heading/claim → body copy */
  --space-heading-flow:   20px;  /* h2 → next element in two-col intro grids */
  --space-section-head:   48px;  /* section-head block → content grid (margin-bottom) */

  /* Claim spacing by context */
  --space-claim-flow: 24px;  /* claim in content flow (intro, profile sections) */
  --space-claim-cta:  40px;  /* claim before CTA buttons in CTA sections */

  /* Card / component internals */
  --space-card-inner: 32px;  /* standard card padding */
  --space-card-gap:   24px;  /* gap between cards in grid */
  --space-item-gap:   14px;  /* tag/step-n → heading inside cards */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  color: var(--l-body);
  background: var(--light);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--l-mute);
  display: inline-block;
  margin-bottom: var(--space-eyebrow-gap);
}
section.dark .eyebrow,
.dark .eyebrow { color: var(--ochre); }

/* Eyebrow → Headline-Abstand (ersetzt inline style="margin-top:14px") */
.eyebrow + .h2,
.eyebrow + h2 { margin-top: 14px; }

/* Eyebrow → Headline in dark CTA sections — slightly larger gap for breathing room */
.eyebrow-dark + .h2,
.eyebrow-dark + h2 { margin-top: 20px; }

.claim {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  max-width: 46ch;
}
section.dark .claim { color: var(--d-body); }

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--l-body);
  max-width: 60ch;
}

h1.h1, .h1 { font-size: clamp(44px, 6vw, 84px); line-height: 0.98; letter-spacing: -0.03em; font-family: "Outfit", sans-serif; font-weight: 800; color: var(--l-head); }
h2.h2, .h2 { font-size: clamp(36px, 4.2vw, 60px); line-height: 1.0; letter-spacing: -0.025em; font-family: "Outfit", sans-serif; font-weight: 800; color: var(--l-head); }
h3.h3, .h3 { font-size: 24px; line-height: 1.15; letter-spacing: -0.015em; font-family: "Outfit", sans-serif; font-weight: 800; color: var(--l-head); }

section.dark .h1, section.dark .h2, section.dark .h3 { color: var(--d-head); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-cta { background: var(--cta); color: var(--cta-ink); }
.btn-cta:hover { background: var(--cta-hover); }
.btn-dark { background: var(--l-head); color: var(--light); padding: 14px 22px; }
.btn-dark:hover { background: var(--black); }
.btn-ghost {
  background: transparent;
  border-color: var(--l-border);
  color: var(--l-body);
}
.btn-ghost:hover { border-color: var(--l-head); color: var(--l-head); }
.btn-ghost-dark {
  background: transparent;
  border-color: rgba(236,228,216,0.25);
  color: var(--d-head);
  padding: 14px 22px;
  font-size: 11px;
}
.btn-ghost-dark:hover { border-color: var(--ochre); color: var(--ochre); }
.btn-simple {
  padding: 0;
  background: none;
  border: none;
  color: var(--l-head);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  cursor: pointer;
}
section.dark .btn-simple { color: var(--d-head); }
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- Layout ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
section { width: 100%; }
section.light { background: var(--light); color: var(--l-body); }
section.dark  { background: var(--dark);  color: var(--d-body); }

/* ---------- Site header ---------- */
.site-header {
  background: var(--light);
  border-bottom: 1px solid var(--l-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 56px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.site-logo-text {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--l-head);
}
.site-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.site-nav a {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--l-head);
  letter-spacing: 0.02em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.site-nav a:hover { color: var(--cta); }
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--cta);
  color: var(--cta);
}
.site-header-cta { justify-self: end; }

/* ---------- Language switcher ---------- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-btn {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--l-mute);
  text-decoration: none;
  padding: 8px 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  transition: color 0.15s;
  line-height: 1;
}
.lang-btn:hover { color: var(--l-head); }
.lang-btn.active { color: var(--cta); pointer-events: none; }
.site-drawer-foot .lang-switcher { margin-top: 16px; justify-content: center; }

/* ---------- Site footer ---------- */
.site-footer {
  padding: var(--space-section-lg) 0 var(--space-10);
  background: var(--dark);
  color: var(--d-body);
}
.site-footer .foot-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--d-border);
}
.site-footer .foot-logo {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.035em;
  color: var(--d-head);
  margin-bottom: 20px;
  display: block;
}
.site-footer .foot-addr {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--d-body);
  line-height: 1.55;
  max-width: 28ch;
}
.site-footer h5 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 22px;
}
.site-footer ul { list-style: none; }
.site-footer li {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--d-body);
  padding: 6px 0;
}
.site-footer li a:hover { color: var(--d-head); }
.site-footer .foot-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-mute);
}

/* ---------- Page hero (shared across subpages) ---------- */
.page-hero {
  padding: var(--space-section) 0 var(--space-20);
  background: var(--light);
  border-bottom: 1px solid var(--l-border);
}
.page-hero .eyebrow { margin-bottom: var(--space-eyebrow-gap); display: inline-block; }
.page-hero h1 { margin-bottom: var(--space-heading-flow); max-width: 20ch; }
.page-hero .claim { font-size: 22px; max-width: 60ch; }

/* ---------- Difficulty badges ---------- */
.badge-diff {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--d-head);
  border-radius: 2px;
  white-space: nowrap;
}
.badge-diff.s1 { background: var(--sl-s1); }
.badge-diff.s2 { background: var(--sl-s2); color: var(--l-head); } /* alpine bg: needs dark ink — d-head gives only 2.56:1 */
.badge-diff.s3 { background: var(--sl-s3); color: var(--cta-ink); }
.badge-diff.s4 { background: var(--sl-s4); color: var(--white); } /* red bg: white (5.18:1) > d-head (4.11:1) */
.badge-diff.other {
  background: transparent;
  color: var(--l-body);
  border: 1px solid var(--l-border);
}

/* ---------- Bike-type badges ---------- */
.badge-bike {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1.5px solid currentColor;
  background: transparent;
}
.badge-bike.ebike   { color: var(--alpine); }
.badge-bike.natural { color: var(--olive);  }
.badge-bike.mixed   { color: var(--sl-other); }

/* ---------- Generic pills ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l-head);
  background: transparent;
  border: 1px solid var(--l-border);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { border-color: var(--cta); color: var(--cta); }
.chip[aria-pressed="true"] {
  background: var(--l-head);
  color: var(--light);
  border-color: var(--l-head);
}

/* ---------- Tweaks panel ---------- */
#tweaks-panel { display: none; }
#tweaks-panel[data-open="1"] { display: block; }
#tweaks-panel .tw-root {
  position: fixed; right: 20px; bottom: 20px; width: 300px;
  background: var(--dark); color: var(--d-head);
  border: 1px solid var(--d-border); border-radius: 4px;
  padding: 20px; font-family: "Outfit", sans-serif;
  z-index: 9999; box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
#tweaks-panel .tw-title {
  font-weight: 800; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ochre); margin-bottom: 16px;
}
#tweaks-panel .tw-group { margin-bottom: 22px; }
#tweaks-panel .tw-label {
  display: block; font-weight: 700; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--d-body); margin-bottom: 10px;
}
#tweaks-panel .tw-swatches { display: flex; gap: 8px; }
#tweaks-panel .tw-sw-wrap { flex: 1; }
#tweaks-panel .tw-sw {
  height: 40px; border-radius: 3px; border: 1px solid var(--d-border);
  cursor: pointer; transition: transform .15s, border-color .15s;
}
#tweaks-panel .tw-sw:hover { transform: translateY(-1px); border-color: var(--d-mute); }
#tweaks-panel .tw-sw[data-active="1"] {
  border-color: var(--d-head); box-shadow: 0 0 0 1px var(--d-head) inset;
}
#tweaks-panel .tw-sw-name {
  text-align: center; margin-top: 6px; font-size: 8px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; color: var(--d-mute);
}
#tweaks-panel .tw-row { display: flex; gap: 8px; }
#tweaks-panel .tw-opt {
  flex: 1; padding: 10px 8px; border: 1px solid var(--d-border); border-radius: 3px;
  background: transparent; color: var(--d-body); font-family: "Outfit", sans-serif;
  font-weight: 700; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; cursor: pointer;
}
#tweaks-panel .tw-opt[data-active="1"] {
  background: var(--d-head); color: var(--dark); border-color: var(--d-head);
}
#tweaks-panel .tw-opt:hover:not([data-active="1"]) { border-color: var(--d-mute); color: var(--d-head); }

/* ---------- Utility ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Image zoom on hover — add to any overflow:hidden container */
.img-zoom { overflow: hidden; }
.img-zoom img,
.img-zoom .img { transition: transform .45s ease; }
.img-zoom:hover img,
.img-zoom:hover .img { transform: scale(1.05); }

/* ---------- Responsive ---------- */

/* Hamburger button — hidden on desktop */
.site-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.burger-icon { display: block; color: var(--l-head); }
.burger-icon--close { display: none; }
body.nav-open .burger-icon--open { display: none; }
body.nav-open .burger-icon--close { display: block; }

/* Mobile drawer — mounted directly on <body>, independent of header stacking context */
.site-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0; right: 0; bottom: 0;
  background: var(--light);
  z-index: 99;
  padding: 32px 24px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}
body.nav-open .site-drawer { display: block; }
.site-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-drawer-nav a {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--l-head);
  padding: 16px 0;
  border-bottom: 1px solid var(--l-border);
}
.site-drawer-nav a[aria-current="page"] { color: var(--cta); }
.site-drawer-foot {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--l-body);
  letter-spacing: 0.02em;
}

/* ── 1100px: nav collapses to burger — content stays in desktop mode ── */
@media (max-width: 1100px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .site-nav { display: none; }
  .site-header-cta { display: none; }
  .site-header-inner > .lang-switcher { display: none; }
  .site-burger { display: flex; align-items: center; justify-content: center; justify-self: end; min-height: 44px; min-width: 44px; }
}

@media (max-width: 960px) {
  .wrap { padding: 0 20px; }
  .site-header-inner { padding: 16px 20px; }

  /* Footer stacks */
  .site-footer { padding: var(--space-cta-mob) 0 32px; }
  .site-footer .foot-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .site-footer .foot-logo { font-size: 32px; }
  .site-footer .foot-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }

  /* Page hero tighter */
  .page-hero { padding: var(--space-section-mob) 0 48px; }
  .page-hero .claim { font-size: 17px; }
  .page-hero h1 { max-width: none; }

  /* Type */
  h1.h1, .h1 { font-size: clamp(36px, 9vw, 52px); }
  h2.h2, .h2 { font-size: clamp(30px, 7vw, 42px); }
  h3.h3, .h3 { font-size: 20px; }
  .lead { font-size: 16px; }
  .claim { font-size: 17px; }

  /* Buttons — tap targets (min 44px per iOS/Android guidelines) */
  .btn { padding: 14px 22px; font-size: 11px; min-height: 44px; }
  .btn-dark { padding: 13px 20px; }

  /* Tweaks panel — smaller + inset */
  #tweaks-panel .tw-root {
    right: 12px; bottom: 12px; left: 12px;
    width: auto; max-height: 70vh; overflow-y: auto;
    padding: 16px;
  }
  #tweaks-panel .tw-sw { height: 34px; }

  .legal { padding: 64px 0 80px; }

  .site-drawer .lang-btn { padding: 10px 8px; min-height: 44px; display: inline-flex; align-items: center; }
  .chip { min-height: 44px; min-width: 44px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .site-header-inner { padding: 14px 16px; }
  .site-logo-img { height: 32px; }
  .page-hero { padding: 44px 0 40px; }
}

/* ---------- Utility: Byline ---------- */
.byline {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--l-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Utility: Note box (Platzhalter-Warnung) ---------- */
.note-box {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-left: 4px solid var(--ochre);
  padding: 16px 22px;
  margin-bottom: 32px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  color: var(--warn-text);
}
.note-box strong {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--ochre);
  display: block;
  margin-bottom: 2px;
}

/* ---------- Utility: Muted small text ---------- */
.text-muted-sm {
  font-size: 14px;
  color: var(--l-mute);
}

/* ---------- Utility: Legal meta stamp ---------- */
.legal-meta {
  margin-top: 40px;
  font-size: 12px;
  color: var(--l-mute);
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ================================================================
   SHARED: .legal (datenschutz.html + impressum.html)
   ================================================================ */
.legal { padding: var(--space-section-xl) 0 var(--space-section-lg); background: var(--light); }
.legal .wrap { max-width: 760px; }
.legal h1 {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95; letter-spacing: -0.03em;
  color: var(--l-head); margin-bottom: 40px;
}
.legal h2 {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: 18px; color: var(--l-head);
  letter-spacing: -0.01em; margin: 36px 0 12px;
  padding-top: 24px; border-top: 1px solid var(--l-border);
}
.legal p, .legal li {
  font-family: "Lora", Georgia, serif; font-weight: 400;
  font-size: 15px; line-height: 1.7; color: var(--l-body);
  margin-bottom: 10px;
}
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--l-head); text-decoration: underline; text-underline-offset: 3px; }
.legal h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--l-head);
  margin-top: 20px;
  margin-bottom: 6px;
}
.legal-divider {
  border: none; border-top: 2px solid var(--l-border);
  margin: 48px 0 40px;
}

/* ================================================================
   PAGE: index.html (Home)
   ================================================================ */

/* ---------- Hero ---------- */
.home-hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: var(--dark);
}
.home-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.home-hero-img.active { opacity: 0.88; }
.home-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.35) 0%, rgba(20,16,12,0.65) 100%);
  pointer-events: none;
}
.home-hero-inner {
  position: relative; z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--d-head);
}
.home-hero .eyebrow { color: var(--ochre); }
.home-hero h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: var(--tw-hero-size, 88px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--d-head);
  max-width: 18ch;
  margin-bottom: 28px;
}
.home-hero-sub {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  color: var(--d-body);
  max-width: 44ch;
  margin-bottom: 44px;
  line-height: 1.55;
}
.home-hero-ctas { display: flex; gap: 14px; }
.home-hero-ctas .btn-ghost-dark { padding: 16px 28px; font-size: 12px; }
.home-hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.home-hero-dots button {
  width: 32px; height: 44px; /* touch target ≥ 44px (WCAG 2.5.5) */
  background: rgba(236,228,216,0.35);
  background-clip: content-box; /* visual bar only on 4px content area */
  border: none;
  padding: 20px 0; /* 44px total − 40px padding = 4px visual bar */
  margin: 0;
  cursor: pointer;
}
.home-hero-dots button[aria-selected="true"] { background: var(--d-head); background-clip: content-box; }

/* ---------- Trust bar ---------- */
.trust {
  background: var(--dark);
  padding: var(--space-section-mob) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 8px 32px;
  border-right: 1px solid var(--d-border);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-item:last-child { border-right: none; }
.trust-item .t-icon {
  width: 28px; height: 28px;
  color: var(--ochre);
  margin-bottom: 4px;
}
.trust-item h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--d-head);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.trust-item p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--d-body);
  line-height: 1.5;
}

/* ---------- Offer overview (2 cards) ---------- */
.offer {
  padding: var(--tw-rhythm, 100px) 0;
  background: var(--light);
}
.offer-head {
  margin-bottom: var(--space-section-head);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.offer-head .eyebrow { margin-bottom: var(--space-eyebrow-gap); }
.offer-head h2 { max-width: 14ch; }
.offer-head .lead { max-width: 44ch; text-align: right; margin-left: auto; }
.offer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.offer-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3.4;
  background: var(--l-card);
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  padding: 36px 36px 36px;
  color: var(--d-head);
}
.offer-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .45s ease;
}
.offer-card:hover img { transform: scale(1.05); }
.offer-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.62) 0%, rgba(20,16,12,0.80) 50%, rgba(20,16,12,0.95) 100%);
  z-index: 1;
}
.offer-card > * { position: relative; z-index: 2; }
.offer-card picture {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}
.offer-card:first-child img { object-position: 60% center; }
.offer-card:last-child img { object-position: 50% 35%; }
.offer-card .tag {
  grid-row: 1;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 14px;
}
.offer-card h3 {
  grid-row: 2;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 0.98;
  color: var(--d-head);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.offer-card .sub {
  grid-row: 3;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: rgba(236,228,216,0.82);
  margin-bottom: 16px;
  max-width: 36ch;
}
.offer-card p:not(.sub) {
  grid-row: 4;
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(236,228,216,0.75);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 38ch;
}
.offer-card .btn-ghost-dark { grid-row: 6; justify-self: start; align-self: end; }

/* ---------- Region ---------- */
.region {
  padding: var(--tw-rhythm, 100px) 0;
  background: var(--dark);
}
.region-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.region h2 { color: var(--d-head); margin-bottom: var(--space-heading-text); }
.region .claim { margin-bottom: var(--space-8); color: var(--d-body); }
.region p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--d-body);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 52ch;
}
.region-photo {
  width: 100%;
  aspect-ratio: 4/5;
  margin-top: 45px;
  background: var(--d-card);
}
.region-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 33% 50%; display: block; }
@media (max-width: 960px) {
  .region-photo img { object-position: 20% 50%; }
}

/* ---------- Guide ---------- */
.guide {
  padding: var(--tw-rhythm, 100px) 0;
  background: var(--light);
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.guide-photo {
  width: 100%;
  aspect-ratio: 4/5;
  margin-top: 45px;
  background: var(--l-card);
  border: 1px solid var(--l-border);
}
.guide-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.guide h2 { margin-bottom: var(--space-heading-text); }
.guide .claim { margin-bottom: var(--space-claim-flow); }
.guide p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--l-body);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 52ch;
}
.guide-certs {
  margin: 28px 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.guide-cert {
  padding: 14px 16px;
  border: 1px solid var(--l-border);
  border-top: 2px solid var(--cta);
  background: var(--light);
}
.guide-cert:nth-child(2) { border-top-color: var(--alpine); }
.guide-cert:nth-child(3) { border-top-color: var(--olive); }
.guide-cert .c-n {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--l-mute);
  margin-bottom: 4px;
}
.guide-cert .c-t {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--l-head);
  line-height: 1.25;
}

/* ---------- Steps ---------- */
.steps {
  padding: var(--tw-rhythm, 100px) 0;
  background: var(--light);
  border-top: 1px solid var(--l-border);
}
.steps-head { margin-bottom: var(--space-14); text-align: left; }
.steps-head h2 { margin-bottom: var(--space-heading-sub); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  padding: 36px 32px;
  background: var(--l-card);
  border-top: 3px solid var(--cta);
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.step:nth-child(2) { border-top-color: var(--alpine); }
.step:nth-child(3) { border-top-color: var(--olive); }
.step-n {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--cta);
  margin-bottom: 14px;
}
.step h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--l-head);
  line-height: 1.1;
  margin-bottom: 12px;
}
.step p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--l-body);
  line-height: 1.6;
}

/* ---------- Audiences ---------- */
.audiences {
  padding: var(--tw-rhythm, 100px) 0;
  background: var(--l-card);
}
.audiences-head {
  margin-bottom: var(--space-section-head);
}
.audiences-head .eyebrow { margin-bottom: var(--space-eyebrow-gap); }
.audiences-head h2 { max-width: 20ch; }
.audiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.audience {
  background: var(--light);
  padding: 32px 34px;
  border-top: 3px solid var(--cta);
}
.audience:nth-child(2) { border-top-color: var(--alpine); }
.audience:nth-child(3) { border-top-color: var(--olive); }
.audience:nth-child(4) { border-top-color: var(--hot); }
.audience h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--l-head);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.audience p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--l-body);
  line-height: 1.6;
}

/* ---------- Trail highlights ---------- */
.highlights {
  padding: var(--tw-rhythm, 100px) 0;
  background: var(--light);
}
.highlights-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: var(--space-section-head);
  align-items: end;
}
.highlights-head > :first-child { grid-column: 1 / 3; }
.highlights-head .claim { grid-column: 3 / 4; }
.highlights-head h2 { max-width: 16ch; margin-bottom: var(--space-heading-sub); }
.highlights-head .claim { color: var(--l-body); max-width: 40ch; text-align: right; margin-left: auto; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.highlight {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--l-card);
}
.highlight img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.highlight::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0) 30%, rgba(20,16,12,0.08) 50%, rgba(20,16,12,0.65) 72%, rgba(20,16,12,0.95) 100%);
}
.highlight-body {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
  color: var(--d-head);
}
.highlight-body .tag {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 8px;
}
.highlight-body h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--d-head);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.highlight-body p {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--d-body);
  line-height: 1.4;
}
.highlights-cta { margin-top: 40px; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: var(--space-section-xl) 0;
  background: var(--dark) url('images/hero-group.jpeg') center/cover no-repeat;
  position: relative;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(20,16,12,0.78);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta .eyebrow {
  color: var(--ochre);
}
.final-cta h2 {
  color: var(--d-head);
  margin: 0 auto 18px;
  max-width: 20ch;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.028em;
}
.final-cta .claim {
  color: var(--d-body);
  margin: 0 auto var(--space-claim-cta);
  max-width: 52ch;
}
/* ---------- Home responsive ---------- */
@media (max-width: 960px) {
  .home-hero { height: calc(100svh - 64px - 80px); }
  .home-hero picture:first-of-type img { object-position: 68% center; }
  .home-hero-inner { padding: 0 20px; }
  .home-hero h1 { font-size: clamp(40px, 10vw, 64px) !important; max-width: none; margin-bottom: 20px; }
  .home-hero-sub { font-size: 16px; margin-bottom: 32px; max-width: none; }
  .home-hero-ctas { flex-direction: column; gap: 12px; align-items: stretch; }
  .home-hero-ctas .btn { width: 100%; justify-content: center; }
  .home-hero-dots { bottom: 20px; }

  .trust { padding: 36px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--d-border); padding: 20px 16px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--d-border); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .offer { padding: var(--space-section-mob) 0; }
  .offer-head, .region-grid, .guide-grid, .highlights-head { grid-template-columns: 1fr; gap: 24px; }
  .offer-head .lead { text-align: left; margin-left: 0; }
  .highlights-head > :first-child { grid-column: auto; }
  .highlights-head .claim { grid-column: auto; text-align: left; margin-left: 0; }
  .offer-cards { grid-template-columns: 1fr; }
  .offer-card { aspect-ratio: unset; min-height: 420px; }
  .offer-card:first-child img { object-position: 65% center; }
  .offer-card:last-child img { object-position: 50% 40%; }
  .offer-card-body { padding: 28px 24px; }
  .offer-card-body h3 { font-size: 28px; }

  .region { padding: var(--space-section-mob) 0; }
  .region-visual { aspect-ratio: 4/3; }
  .region-facts { gap: 16px; }

  .guide { padding: var(--space-section-mob) 0; }
  .guide-photo { aspect-ratio: 4/5; max-width: none; margin: 0 auto 8px; }
  .guide-certs { grid-template-columns: 1fr 1fr; gap: 10px; }

  .steps { padding: var(--space-section-mob) 0; }
  .steps-grid, .audiences-grid { grid-template-columns: 1fr; gap: 16px; }

  .highlights { padding: var(--space-section-mob) 0; }
  .highlights-grid { grid-template-columns: 1fr; gap: 12px; }
  .highlight { aspect-ratio: 4/3; }
  .final-cta { padding: var(--space-cta-mob) 0; }
}

@media (max-width: 480px) {
  .home-hero { height: calc(100svh - 64px - 80px); }
  .trust-item h3 { font-size: 15px; }
  .trust-item p { font-size: 14px; }
}

/* ================================================================
   PAGE: camps.html (Camps)
   ================================================================ */

/* Hero */
.camp-hero {
  position: relative;
  padding: var(--space-section-xl) 0 var(--space-section-lg);
  background: var(--dark);
  overflow: hidden;
}
.camp-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('images/hero-group.jpeg') center/cover no-repeat;
  opacity: 0.4;
  z-index: 0;
}
.camp-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.35) 0%, rgba(20,16,12,0.88) 100%);
  z-index: 1;
}
.camp-hero .wrap { position: relative; z-index: 2; }
.camp-hero .eyebrow { color: var(--ochre); }
.camp-hero h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--d-head);
  max-width: 20ch;
  margin-bottom: 22px;
}
.camp-hero .claim {
  color: var(--d-body);
  font-size: 22px;
  max-width: 56ch;
}
.camp-hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(236,228,216,0.15);
}
.camp-hero-meta .m {
  font-family: "Outfit", sans-serif;
}
.camp-hero-meta .m-l {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 4px;
}
.camp-hero-meta .m-v {
  font-weight: 800;
  font-size: 20px;
  color: var(--d-head);
  letter-spacing: -0.01em;
}

/* Intro */
.camp-intro {
  padding: var(--space-section) 0;
  background: var(--light);
}
.camp-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.camp-intro h2 { max-width: 14ch; margin-bottom: var(--space-heading-flow); }
.camp-intro .claim { margin-bottom: var(--space-claim-flow); }
.camp-intro p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--l-body);
  margin-bottom: 20px;
  max-width: 54ch;
}
.camp-intro-fact {
  background: var(--l-card);
  padding: 32px 32px;
  border-top: 3px solid var(--cta);
  margin-top: 47px; /* align card top to h2 — eyebrow(~13px) + mb(20) + mt(14) */
}
@media (max-width: 960px) {
  .camp-intro-fact { margin-top: 0; }
}
.camp-intro-fact h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 14px;
}
.camp-intro-fact ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.camp-intro-fact li {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--l-head);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.camp-intro-fact li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--cta);
  font-weight: 800;
}

/* Camp types (3 cards) */
.camp-types {
  padding: var(--space-section) 0;
  background: var(--l-card);
}
.camp-types-head {
  margin-bottom: var(--space-14);
}
.camp-types-head h2 { max-width: 16ch; margin-bottom: var(--space-heading-sub); }
.camp-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ct-card {
  background: var(--light);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--alpine);
  min-height: 420px;
}
.ct-card.advanced { border-top-color: var(--ochre); }
.ct-card.summit { border-top-color: var(--hot); }
.ct-card.womens { border-top-color: var(--olive); }
.ct-card .tag {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--l-mute);
  margin-bottom: 14px;
}
.ct-card.advanced .tag { color: var(--ochre); }
.ct-card.summit .tag { color: var(--hot); }
.ct-card.womens .tag { color: var(--olive); }
.ct-card h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--l-head);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.ct-card .sub {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--l-mute);
  margin-bottom: 18px;
}
.ct-card p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--l-body);
  margin-bottom: 22px;
}
.ct-card .specs {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--l-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ct-card .spec {
  font-family: "Outfit", sans-serif;
}
.ct-card .spec .l {
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--l-mute);
  margin-bottom: 2px;
}
.ct-card .spec .v {
  font-weight: 800;
  font-size: 13px;
  color: var(--l-head);
}

/* Inclusions strip */
.camp-incl {
  padding: var(--space-20) 0;
  background: var(--dark);
}
.camp-incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.camp-incl-col h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 18px;
}
.camp-incl-col ul { list-style: none; }
.camp-incl-col li {
  padding: 10px 0;
  border-bottom: 1px solid var(--d-border);
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--d-body);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
}
.camp-incl-col li::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 2px;
  background: var(--ochre);
}
.camp-incl-col.exc li::before { background: var(--d-mute); }
.camp-incl-col.exc li { color: var(--d-mute); }
.camp-incl-col .pradcard {
  padding: 20px 22px;
  background: var(--d-card);
  border: 1px solid var(--ochre);
  border-radius: 2px;
}
.camp-incl-col .pradcard .big {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--ochre);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.camp-incl-col .pradcard p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--d-body);
  line-height: 1.5;
}

/* Camp dates table */
.camp-dates {
  padding: var(--space-section) 0 60px;
  background: var(--light);
}
.camp-dates-head { margin-bottom: var(--space-10); }
.camp-dates-head h2 { max-width: 18ch; margin-bottom: var(--space-heading-sub); }
.camp-table {
  background: var(--white);
  border: 1px solid var(--l-border);
  overflow: hidden;
}
.camp-row {
  display: grid;
  grid-template-columns: 0.7fr 1.9fr 1.5fr 1fr 1.1fr 1.1fr;
  padding: 0;
  border-bottom: 1px solid var(--l-border);
  align-items: stretch;
}
.camp-row:last-child { border-bottom: none; }
.camp-row.head {
  background: var(--l-card);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--l-mute);
}
.camp-row > div {
  padding: 18px 16px;
  border-right: 1px solid var(--l-border);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--l-head);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  align-items: flex-start;
  min-width: 0;
}
.camp-row > div:last-child { border-right: none; }
.camp-row .c-month {
  font-weight: 800;
  color: var(--cta);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.camp-row .c-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--l-head);
  letter-spacing: -0.01em;
}
.camp-row .c-dates {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--l-head);
  white-space: nowrap;
}
.camp-row .c-awt {
  font-weight: 500;
  font-size: 11px;
  color: var(--l-mute);
}
.camp-row .c-price {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--l-head);
  letter-spacing: -0.01em;
}
.camp-row .c-price-pc {
  font-weight: 600;
  font-size: 12px;
  color: var(--cta);
}
.camp-row .c-cta {
  padding: 14px 16px;
  display: flex;
  align-items: center;
}
.camp-row .c-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l-head);
  padding: 10px 16px;
  border: 1px solid var(--l-head);
  background: transparent;
  transition: background .2s, color .2s;
  width: 100%;
  justify-content: center;
}
.camp-row .c-cta a:hover { background: var(--l-head); color: var(--light); }

/* Breakdowns */
.camp-break {
  padding: var(--space-20) 0 var(--space-section-lg);
  background: var(--light);
}
.camp-break h2 { margin-bottom: var(--space-heading-sub); max-width: 18ch; }
.camp-break .claim { margin-bottom: var(--space-claim-cta); }
.camp-break-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.camp-break-card {
  background: var(--white);
  border: 1px solid var(--l-border);
  border-top: 3px solid var(--cta);
  padding: 28px 32px;
}
.camp-break-card.summit { border-top-color: var(--hot); }
.camp-break-card.womens { border-top-color: var(--olive); }
.camp-break-card.advanced { border-top-color: var(--ochre); }
.camp-break-card .cb-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--l-border);
  gap: 20px;
  flex-wrap: wrap;
}
.camp-break-card h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--l-head);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.camp-break-card .cb-date {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta);
  white-space: nowrap;
}
.cb-days {
  display: grid;
  gap: 10px;
}
.cb-day {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  padding: 10px 0;
  font-family: "Outfit", sans-serif;
  align-items: center;
  border-bottom: 1px dashed var(--l-border);
}
.cb-day:last-child { border-bottom: none; }
.cb-day .d {
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--l-mute);
}
.cb-day .s {
  font-weight: 600;
  font-size: 13px;
  color: var(--l-head);
  font-variant-numeric: tabular-nums;
}
.cb-day .t {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--l-head);
  white-space: nowrap;
  align-self: center;
}

/* Final */
.camp-final {
  padding: var(--space-section-lg) 0;
  background: var(--dark);
  text-align: center;
}
.camp-final h2 {
  color: var(--d-head);
  margin: 0 auto var(--space-5);
  max-width: 20ch;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.028em;
}
.camp-final .claim {
  color: var(--d-body);
  margin: 0 auto var(--space-claim-cta);
  max-width: 52ch;
}
/* Camps responsive */
@media (max-width: 960px) {
  .camp-intro { padding: var(--space-section-mob) 0; }
  .camp-types { padding: var(--space-section-mob) 0; }
  .camp-types-grid { grid-template-columns: 1fr; gap: 16px; }
  .camp-incl-grid { grid-template-columns: 1fr; gap: 28px; }
  .camp-intro-grid { grid-template-columns: 1fr; gap: 32px; }

  .camp-dates { padding: var(--space-section-mob) 0 40px; }
  .camp-incl { padding: var(--space-section-mob) 0; }
  .bring { padding: var(--space-section-mob) 0; }
  .camp-row { grid-template-columns: 1fr; padding: 18px; gap: 4px; }
  .camp-row.head { display: none; }
  .camp-row > div { border-right: none !important; border-bottom: none; padding: 4px 0; }
  .camp-row > div[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--l-mute);
    margin-bottom: 2px;
  }
  .camp-row .c-month { padding-top: 0; }
  .camp-row .c-name { font-size: 18px; }
  .camp-row .c-cta { padding: 12px 0 0; }
  .camp-row .c-cta a { width: 100%; text-align: center; justify-content: center; }
  .camp-hero-meta { flex-wrap: wrap; gap: 16px 32px; }

  .camp-breaks { padding: var(--space-section-mob) 0; }
  .camp-break-grid { grid-template-columns: 1fr; gap: 16px; }
  .cb-day { grid-template-columns: 70px 1fr auto; gap: 10px; font-size: 12px; }
  .camp-final { padding: var(--space-cta-mob) 0; }
}

/* ================================================================
   PAGE: touren.html (Tagestouren)
   ================================================================ */

/* Page hero (image + overlay) */
.touren-hero {
  position: relative;
  padding: var(--space-section-lg) 0 var(--space-section);
  background: var(--dark);
  overflow: hidden;
}
.touren-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('images/hero-trail.jpeg') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}
.touren-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.4) 0%, rgba(20,16,12,0.9) 100%);
  z-index: 1;
}
.touren-hero .wrap { position: relative; z-index: 2; }
.touren-hero .eyebrow { color: var(--ochre); }
.touren-hero h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--d-head);
  max-width: 18ch;
  margin-bottom: 22px;
}
.touren-hero .claim {
  color: var(--d-body);
  font-size: 22px;
  max-width: 60ch;
}

/* Intro */
.intro {
  padding: var(--space-section) 0 var(--space-20);
  background: var(--light);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-grid h2 { margin-bottom: var(--space-heading-flow); max-width: 14ch; }
.intro-grid .claim { margin-bottom: var(--space-claim-flow); }
.intro-grid p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--l-body);
  margin-bottom: 20px;
  max-width: 54ch;
}
.intro-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--l-card);
  margin-top: 47px; /* align photo top to h2 — eyebrow(~13px) + mb(20) + mt(14) */
}
@media (max-width: 960px) {
  .intro-photo { margin-top: 0; }
}
.intro-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Bring / Liefern */
.bring {
  padding: var(--space-20) 0;
  background: var(--l-card);
}
.bring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bring-col {
  background: var(--light);
  padding: 44px 40px;
  border-top: 3px solid var(--cta);
}
.bring-col.liefern { border-top-color: var(--alpine); }
.bring-col .eyebrow { margin-bottom: var(--space-eyebrow-gap); display: inline-block; }
.bring-col h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--l-head);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.bring-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.bring-col li {
  padding: 10px 0 10px 0;
  border-bottom: 1px solid var(--l-border);
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--l-head);
  position: relative;
}
.bring-col li:last-child { border-bottom: none; }
.bring-col li::before {
  content: "";
  display: inline-block;
  width: 16px; height: 2px;
  background: var(--cta);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}
.bring-col.liefern li::before { background: var(--alpine); }

/* LTS widget area */
.lts-wrap {
  padding: var(--space-section) 0;
  background: var(--light);
}
.lts-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-10);
  gap: 40px;
  flex-wrap: wrap;
}
.lts-head h2 { max-width: 16ch; margin-bottom: var(--space-heading-sub); }
.lts-head .claim { color: var(--l-body); max-width: 42ch; }
/* Good to know */
.gtk {
  padding: var(--space-section) 0;
  background: var(--dark);
}
.gtk-head { margin-bottom: var(--space-section-head); }
.gtk-head h2 { color: var(--d-head); }
.gtk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--d-border);
}
.gtk-item {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--d-border);
  border-bottom: 1px solid var(--d-border);
}
.gtk-item:last-child { border-right: none; }
.gtk-item:nth-child(4n) { border-right: none; }
.gtk-item > * { padding-left: 0; }
.gtk-item:nth-child(n+2) > * { padding-left: 28px; }
.gtk-n {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 16px;
}
.gtk-item h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--d-head);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.gtk-item p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--d-body);
  line-height: 1.6;
}

/* Camp teaser + programm teaser */
.teasers {
  padding: var(--space-section) 0;
  background: var(--light);
}
.teasers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.teaser {
  background: var(--l-card);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  border-top: 3px solid var(--cta);
}
.teaser .eyebrow { margin-bottom: var(--space-eyebrow-gap); display: inline-block; }
.teaser h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--l-head);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 16ch;
}
.teaser p {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: var(--l-body);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 42ch;
}

/* Touren responsive */
@media (max-width: 960px) {
  .touren-hero { padding: 64px 0 56px; }
  .touren-hero h1 { font-size: clamp(36px, 9vw, 52px); max-width: none; }
  .touren-hero .claim { font-size: 17px; }

  .intro { padding: var(--space-section-mob) 0; }
  .intro-grid, .bring-grid, .teasers-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-grid h2 { max-width: none; }
  .intro-photo { aspect-ratio: 4/3; }

  .bring { padding: var(--space-section-mob) 0; }
  .lts-wrap { padding: var(--space-section-mob) 0; }
  .gtk { padding: var(--space-section-mob) 0; }
  .gtk-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .gtk-item { padding: 24px 16px; }
  .bring-col li { padding-left: 28px; position: relative; }
  .bring-col li::before { position: absolute; left: 0; top: 20px; transform: none; }
  .gtk-item:nth-child(odd) > * { padding-left: 0; }
  .gtk-item:nth-child(even) > * { padding-left: 0; }

  .teasers { padding: var(--space-section-mob) 0; }
  .teaser { aspect-ratio: unset; }
}
/* Override: single column below 480px (must come after 960px block to win cascade) */
@media (max-width: 480px) {
  .gtk-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PAGE: guides.html (Guide)
   ================================================================ */

.g-hero { padding: var(--space-section-xl) 0 var(--space-section); background: var(--dark); position: relative; overflow: hidden; }
.g-hero::before { content:""; position: absolute; inset: 0;
  background: url('images/hero-trail.jpeg') center/cover no-repeat;
  opacity: 0.3;
}
.g-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,16,12,0.4), rgba(20,16,12,0.9)); }
.g-hero .wrap { position: relative; z-index: 2; }
.g-hero .eyebrow { color: var(--ochre); }
.g-hero h1 {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95; letter-spacing: -0.03em;
  color: var(--d-head); max-width: 16ch; margin-bottom: 22px;
}
.g-hero .claim { color: var(--d-body); font-size: 22px; max-width: 56ch; }

.g-profile { padding: var(--space-section) 0; background: var(--light); }
.g-profile-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.g-photo { width: 100%; aspect-ratio: 4/5; background: var(--l-card); }
.g-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-profile h2 { max-width: 16ch; margin-bottom: var(--space-heading-flow); }
.g-profile .claim { margin-bottom: var(--space-claim-flow); }
.g-profile p { font-family: "Lora", Georgia, serif; font-weight: 400; font-size: 16px; line-height: 1.7; color: var(--l-body); margin-bottom: 18px; max-width: 54ch; }
.g-profile blockquote {
  font-family: "Lora", Georgia, serif; font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.5; color: var(--l-head);
  border-left: 3px solid var(--cta);
  padding: 10px 0 10px 24px;
  margin: 30px 0 24px;
  max-width: 48ch;
}

.g-creds { padding: var(--space-section) 0; background: var(--l-card); }
.g-creds-head { margin-bottom: var(--space-section-head); }
.g-creds-head h2 { max-width: 18ch; margin-bottom: var(--space-heading-sub); }
.g-creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.g-cred-item { padding: 36px 24px 36px 0; border-top: 3px solid var(--cta); border-right: 1px solid var(--l-border); border-bottom: 1px solid var(--l-border); }
.g-cred-item:nth-child(4n+2) { border-top-color: var(--alpine); }
.g-cred-item:nth-child(4n+3) { border-top-color: var(--olive); }
.g-cred-item:nth-child(4n+4) { border-top-color: var(--hot); }
.g-cred-item:nth-child(4n) { border-right: none; padding-right: 0; }
.g-cred-item:not(:nth-child(4n+1)) { padding-left: 24px; }
.g-cred-item .num { font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: 44px; letter-spacing: -0.02em; color: var(--cta); line-height: 1; margin-bottom: 12px; }
.g-cred-item h3 { font-family: "Outfit", sans-serif; font-weight: 800; font-size: 18px; color: var(--l-head); letter-spacing: -0.015em; margin-bottom: 8px; }
.g-cred-item p { font-family: "Lora", Georgia, serif; font-weight: 400; font-size: 14px; line-height: 1.55; color: var(--l-body); }

.g-cta { padding: var(--space-section-lg) 0; background: var(--dark); text-align: center; }
.g-cta h2 { color: var(--d-head); margin: 0 auto var(--space-5); max-width: 20ch; font-family: "Outfit", sans-serif; font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -0.028em; }
.g-cta .claim { color: var(--d-body); margin: 0 auto var(--space-claim-cta); max-width: 50ch; }

/* Guides responsive */
@media (max-width: 960px) {
  .g-profile { padding: var(--space-section-mob) 0; }
  .g-creds { padding: var(--space-section-mob) 0; }
  .g-profile-grid { grid-template-columns: 1fr; gap: 32px; }
  .g-photo { aspect-ratio: 4/5; max-width: none; margin: 0 auto; }
  .g-creds-grid { grid-template-columns: 1fr 1fr; }
  .g-cred-item { padding: 24px 12px; }
  /* Fix nth-child border/padding for 2-column layout */
  .g-cred-item:not(:nth-child(odd)) { padding-left: 12px; }
  .g-cred-item:nth-child(even) { border-right: none; padding-right: 0; }
  .g-cred-item:nth-child(odd) { border-right: 1px solid var(--l-border); padding-left: 0; }
  .g-cred-item .num { font-size: 26px; }
  .g-cta { padding: var(--space-cta-mob) 0; }
}

/* ================================================================
   PAGE: vinschgau.html (Region)
   ================================================================ */

.vin-hero {
  position: relative;
  padding: var(--space-section-xl) 0 var(--space-section-lg);
  background: var(--dark);
  overflow: hidden;
}
.vin-hero::before {
  content:""; position: absolute; inset: 0;
  background: url('images/hero-trail.jpeg') center/cover no-repeat;
  opacity: 0.4;
}
.vin-hero::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.35), rgba(20,16,12,0.88));
}
.vin-hero .wrap { position: relative; z-index: 2; }
.vin-hero .eyebrow { color: var(--ochre); }
.vin-hero h1 {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 0.95; letter-spacing: -0.03em;
  color: var(--d-head); max-width: 20ch; margin-bottom: 22px;
}
.vin-hero .claim { color: var(--d-body); font-size: 22px; max-width: 56ch; }

.vin-intro { padding: var(--space-section) 0; background: var(--light); }
.vin-intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.vin-intro h2 { max-width: 16ch; margin-bottom: var(--space-heading-flow); }
.vin-intro .claim { margin-bottom: var(--space-claim-flow); }
.vin-intro p { font-family: "Lora", Georgia, serif; font-weight: 400; font-size: 16px; line-height: 1.7; color: var(--l-body); margin-bottom: 20px; max-width: 54ch; }
.vin-intro-photo { width: 100%; aspect-ratio: 4/5; margin-top: 47px; } /* align to h2 */
.vin-intro-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 75%; display: block; }
@media (max-width: 960px) {
  .vin-intro-photo { margin-top: 0; }
  .vin-intro-photo img { object-position: 70% 50%; }
}

/* Specialties */
.vin-special { padding: var(--space-section) 0; background: var(--l-card); }
.vin-special-head { margin-bottom: var(--space-section-head); }
.vin-special-head h2 { max-width: 20ch; margin-bottom: var(--space-heading-sub); }
.vin-special-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vin-special-card {
  background: var(--light);
  padding: 40px 36px;
  border-top: 3px solid var(--cta);
  min-height: 240px;
}
.vin-special-card:nth-child(2) { border-top-color: var(--alpine); }
.vin-special-card:nth-child(3) { border-top-color: var(--olive); }
.vin-special-num {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: 44px; letter-spacing: -0.02em;
  color: var(--l-head); line-height: 1; margin-bottom: 12px;
}
.vin-special-card h3 {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: 22px; color: var(--l-head);
  letter-spacing: -0.015em; line-height: 1.1;
  margin-bottom: 14px;
}
.vin-special-card p {
  font-family: "Lora", Georgia, serif; font-weight: 400;
  font-size: 15px; line-height: 1.6; color: var(--l-body);
}

/* Map placeholder */
.vin-map-sec { padding: var(--space-section) 0; background: var(--light); }
.vin-map-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 28px; flex-wrap: wrap; }
.vin-map-head h2 { max-width: 16ch; margin-bottom: 12px; }
.vin-map-head .claim { max-width: 44ch; color: var(--l-body); }
.vin-map {
  position: relative;
  background: linear-gradient(135deg, #d8c9a6, #b8a478 50%, #8a7a50);
  border: 1px solid var(--l-border);
  aspect-ratio: 16/9;
  overflow: hidden;
}
/* Topographic SVG overlay */
.vin-map::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 260px 160px at 30% 40%, rgba(90,106,64,0.35), transparent 65%),
    radial-gradient(ellipse 220px 140px at 65% 65%, rgba(122,146,168,0.3), transparent 60%),
    radial-gradient(ellipse 180px 100px at 82% 30%, rgba(200,56,40,0.2), transparent 60%),
    radial-gradient(ellipse 150px 90px at 15% 72%, rgba(184,144,90,0.4), transparent 60%);
  mix-blend-mode: multiply;
}
.vin-map svg.vin-topo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.65;
}
.vin-zones { position: absolute; inset: 0; }
.vin-zone {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  transition: transform .2s;
}
.vin-zone:hover { transform: translateY(-2px); }
.vin-zone .pin {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cta);
  border: 3px solid var(--light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.vin-zone .pin.alpine { background: var(--alpine); }
.vin-zone .pin.olive { background: var(--olive); }
.vin-zone .pin.hot { background: var(--hot); }
.vin-zone .label {
  background: var(--dark);
  color: var(--d-head);
  padding: 8px 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.vin-zone .label small {
  display: block;
  color: var(--ochre);
  font-size: 9px;
  margin-bottom: 2px;
  letter-spacing: 0.16em;
}
.vin-mappos-1 { left: 22%; top: 58%; }
.vin-mappos-2 { left: 48%; top: 38%; }
.vin-mappos-3 { left: 68%; top: 66%; }
.vin-mappos-4 { left: 82%; top: 28%; }
.vin-map-town {
  position: absolute;
  left: 38%; top: 52%;
  display: flex; align-items: center; gap: 8px;
}
.vin-map-town .star {
  width: 14px; height: 14px;
  background: var(--light);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.vin-map-town .t {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.vin-map-attr {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(20,16,12,0.72);
  color: var(--ochre);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
}

/* Trail zones */
.vin-zones-sec { padding: var(--space-section) 0; background: var(--light); }
.vin-zones-head { margin-bottom: var(--space-section-head); }
.vin-zones-head h2 { max-width: 18ch; margin-bottom: var(--space-heading-sub); }
.vin-zones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vin-zone-card {
  background: var(--white);
  border: 1px solid var(--l-border);
  border-top: 3px solid var(--cta);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vin-zone-card:nth-child(2) { border-top-color: var(--alpine); }
.vin-zone-card:nth-child(3) { border-top-color: var(--hot); }
.vin-zone-card:nth-child(4) { border-top-color: var(--olive); }
.vin-zone-card .img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.vin-zone-card.img-zoom:hover .img { transform: none; }
.vin-zone-card .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vin-zone-card .img::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,16,12,0.7));
}
.vin-zone-card .img .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--dark);
  color: var(--ochre);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
}
.vin-zone-card .body { padding: 28px 30px; display: flex; flex-direction: column; gap: 14px; }
.vin-zone-card h3 {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: 26px; color: var(--l-head);
  letter-spacing: -0.02em; line-height: 1.05;
}
.vin-zone-card p {
  font-family: "Lora", Georgia, serif; font-weight: 400;
  font-size: 15px; line-height: 1.6; color: var(--l-body);
}
.vin-zone-card .specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--l-border);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--l-mute);
}
.vin-zone-card .specs span { display: inline-flex; align-items: center; gap: 6px; }
.vin-zone-card .specs span b { color: var(--l-head); font-weight: 800; }

/* Practical info */
.vin-practical { padding: var(--space-section) 0; background: var(--dark); }
.vin-practical-head { margin-bottom: var(--space-section-head); }
.vin-practical-head h2 { color: var(--d-head); }
.vin-practical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--d-border);
}
.vin-pr-item {
  padding: 36px 24px 36px 0;
  border-right: 1px solid var(--d-border);
  border-bottom: 1px solid var(--d-border);
}
.vin-pr-item:last-child,
.vin-pr-item:nth-child(4n) { border-right: none; }
.vin-pr-item:nth-child(n+2) { padding-left: 24px; }
.vin-pr-item .n {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 14px;
}
.vin-pr-item h3 {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: 20px; color: var(--d-head);
  letter-spacing: -0.015em; margin-bottom: 10px;
}
.vin-pr-item p {
  font-family: "Lora", Georgia, serif; font-weight: 400;
  font-size: 14px; line-height: 1.6; color: var(--d-body);
}

/* CTA */
.vin-cta { padding: var(--space-section-lg) 0; background: var(--light); text-align: center; }
.vin-cta h2 { margin: 0 auto var(--space-5); max-width: 20ch; }
.vin-cta .claim { margin: 0 auto var(--space-claim-cta); max-width: 50ch; }

/* Vinschgau responsive */
@media (max-width: 960px) {
  .vin-intro { padding: var(--space-section-mob) 0; }
  .vin-special, .vin-zones, .vin-practical { padding: var(--space-section-mob) 0 !important; }
  .vin-intro-grid, .vin-special-grid, .vin-zones-grid { grid-template-columns: 1fr; gap: 24px; }
  .vin-intro-grid { gap: 32px; }
  .vin-practical-grid { grid-template-columns: 1fr 1fr; }
  .vin-pr-item:nth-child(2n+1) { padding-left: 0; }
  .vin-map { aspect-ratio: 4/5; }
  .vin-zone .label { display: none; }
  .vin-zone .pin { width: 12px; height: 12px; }
}

/* ================================================================
   PAGE: kontakt.html (Kontakt)
   ================================================================ */

.k-hero { padding: var(--space-section-xl) 0 60px; background: var(--light); }
.k-hero h1 {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95; letter-spacing: -0.03em;
  color: var(--l-head); max-width: 16ch; margin-bottom: 22px;
}
.k-hero .claim { color: var(--l-body); font-size: 22px; max-width: 56ch; }

.k-main { padding: 40px 0 120px; background: var(--light); }

.k-info h2 { font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cta); margin-bottom: 14px; }
.k-info .big { font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: 26px; color: var(--l-head); letter-spacing: -0.015em; margin-bottom: 6px; }
.k-info p { font-family: "Lora", Georgia, serif; font-weight: 400;
  font-size: 16px; line-height: 1.6; color: var(--l-body); margin-bottom: 8px; }
.k-info a { color: var(--l-head); text-decoration: underline; text-underline-offset: 3px; }
.k-social-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.k-social-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.k-info-block { padding: 24px 0; border-bottom: 1px solid var(--l-border); }
.k-info-block:first-child { padding-top: 0; }
.k-info-block:last-child { border-bottom: none; }

/* Kontakt responsive */
@media (max-width: 960px) {
  .k-hero { padding: var(--space-section-mob) 0 40px; }
  .k-main { padding: 40px 0 var(--space-section-mob); }
}

/* ================================================================
   PAGE: programm.html (Tourenprogramm)
   ================================================================ */

.prog-hero {
  padding: var(--space-section) 0 60px;
  background: var(--light);
  border-bottom: 1px solid var(--l-border);
}
.prog-hero h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--l-head);
  max-width: 18ch;
  margin-bottom: var(--space-heading-flow);
}
.prog-hero .claim {
  color: var(--l-body);
  max-width: 60ch;
  font-size: 22px;
}

/* Stat bar */
.prog-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--l-border);
}
.prog-stat {
  padding: 0 20px;
  border-right: 1px solid var(--l-border);
}
.prog-stat:first-child { padding-left: 0; }
.prog-stat:last-child { border-right: none; padding-right: 0; }
.prog-stat-n {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.02em;
  color: var(--l-head);
  line-height: 1;
  margin-bottom: 6px;
}
.prog-stat-l {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--l-mute);
}

/* Filter bar */
.prog-filters {
  padding: 40px 0 28px;
  background: var(--light);
  border-bottom: 1px solid var(--l-border);
}
.prog-filters-inner {
  display: flex;
  gap: 16px 40px;
  align-items: center;
  flex-wrap: wrap;
}
.prog-diff-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.prog-filters-label {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--l-mute);
}
.prog-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.prog-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--l-border);
  background: var(--white);
  min-width: 240px;
}
.prog-search svg {
  width: 16px; height: 16px; stroke: var(--l-mute);
}
.prog-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 16px; /* ≥16px prevents iOS auto-zoom on focus */
  color: var(--l-head);
}

/* Table */
.prog-table-wrap {
  padding: 0 0 120px;
  background: var(--light);
}
.prog-table-wrap .wrap { padding-top: 40px; }
.prog-result-count {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--l-mute);
  margin-bottom: 20px;
}
.prog-table-outer {
  background: var(--white);
  border: 1px solid var(--l-border);
  overflow: clip;
}
table.prog-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Outfit", sans-serif;
}
table.prog-table thead {
  background: var(--l-card);
  border-bottom: 1px solid var(--l-border);
}
table.prog-table th {
  padding: 16px 14px;
  text-align: left;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--l-mute);
  white-space: nowrap;
  border-right: 1px solid var(--l-border);
}
table.prog-table th:last-child { border-right: none; }
table.prog-table th.num { text-align: right; }
table.prog-table tbody tr {
  border-bottom: 1px solid var(--l-border);
}
table.prog-table tbody tr:last-child { border-bottom: none; }
table.prog-table tbody tr:hover { background: var(--light); }
table.prog-table td {
  padding: 14px 14px;
  font-weight: 500;
  font-size: 13px;
  color: var(--l-head);
  border-right: 1px solid var(--l-border);
  vertical-align: middle;
}
table.prog-table td:last-child { border-right: none; }
table.prog-table td.num {
  text-align: center;
  font-variant-numeric: tabular-nums;
}
table.prog-table td.nr {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: var(--l-mute);
  font-size: 11px;
  letter-spacing: 0.08em;
  width: 44px;
}
table.prog-table td.name {
  font-weight: 700;
  color: var(--l-head);
  min-width: 220px;
  vertical-align: top;
}
table.prog-table td.diff-cell,
table.prog-table td.bike-cell {
  text-align: center;
}
table.prog-table td.name small {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  color: var(--l-mute);
  margin-top: 2px;
}
table.prog-table td.cat {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--l-mute);
}
.prog-cat-head {
  padding: 26px 14px 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cta);
  background: var(--subtle-bg);
  border-top: 2px solid var(--cta);
}

/* Empty state */
.prog-empty {
  padding: 80px 20px;
  text-align: center;
  background: var(--white);
}
.prog-empty h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--l-head);
  margin-bottom: 10px;
}
.prog-empty p {
  color: var(--l-body);
  font-size: 15px;
}

/* Legend */
.prog-legend {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--l-card);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.prog-legend-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--l-mute);
}
.prog-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--l-body);
}

.ebike-req {
  font-size: 1.2em;
  color: var(--l-mute);
  vertical-align: super;
  margin-left: 2px;
  font-weight: 800;
}
.bike-badge-wrap {
  white-space: nowrap;
  display: inline-block;
}
.prog-ebike-footnote {
  margin-top: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  color: var(--l-mute);
}

.prog-ebike-mark {
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}

/* CTA row */
.prog-cta {
  padding: var(--space-section) 0;
  background: var(--dark);
  text-align: center;
}
.prog-cta h2 {
  color: var(--d-head);
  margin: 0 auto var(--space-5);
  max-width: 20ch;
}
.prog-cta .claim {
  color: var(--d-body);
  margin: 0 auto var(--space-8);
  max-width: 50ch;
}

/* Programm responsive */
@media (max-width: 960px) {
  .prog-hero { padding: var(--space-section-mob) 0 40px !important; }
  .prog-stats { grid-template-columns: 1fr 1fr; gap: 0; margin-top: 32px; }
  .prog-stat { padding: 20px 0; border-right: 1px solid var(--l-border); border-bottom: 1px solid var(--l-border); }
  .prog-stat:nth-child(even) { border-right: none; padding-left: 20px; }
  .prog-stat:nth-last-child(-n+2) { border-bottom: none; }
  .prog-stat-n { font-size: 38px; }

  .prog-filters { padding: 20px 0; }
  .prog-filters-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .prog-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
  .prog-chips .chip { width: 100%; justify-content: center; }
  .prog-diff-chips { display: flex; grid-template-columns: unset; flex-wrap: wrap; gap: 8px; }
  .prog-diff-chips .chip { width: auto; flex: 0 0 auto; }
  .prog-search { margin-left: 0; width: 100%; min-width: 0; }

  .prog-table-wrap { padding-bottom: 64px; }
  .prog-table-outer { background: transparent; border: none; }
  table.prog-table thead { display: none; }
  table.prog-table, table.prog-table tbody { display: block; }
  table.prog-table tr {
    display: block;
    background: var(--white);
    border: 1px solid var(--l-border);
    margin-bottom: 12px;
    padding: 16px 18px;
  }
  table.prog-table tbody tr:hover { background: var(--white); }
  table.prog-table td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 6px 0;
    border-right: none;
    text-align: right;
    font-size: 13px;
  }
  table.prog-table td::before {
    content: attr(data-label);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--l-mute);
    text-align: left;
  }
  table.prog-table td.nr {
    width: auto;
    font-size: 11px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--l-border);
    margin-bottom: 8px;
  }
  table.prog-table td.name {
    font-size: 16px;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  table.prog-table td.name::before { margin-bottom: 2px; }
  table.prog-table td.num { font-variant-numeric: tabular-nums; }
  .prog-cat-head { padding: 16px 0 6px; background: transparent; border-top: none; }
  .prog-legend { padding: 16px; gap: 14px; }
  .prog-cta { padding: var(--space-cta-mob) 0; }
}


/* ================================================================
   Utility classes extracted from inline styles
   ================================================================ */

/* Eyebrow on dark/CTA sections — ochre tint */
.eyebrow-dark { color: var(--ochre); }

/* Camp dates table — sub-label under camp name */
.c-sub {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  color: var(--l-mute);
  margin-top: 2px;
}

/* Camp dates table footer row (legend + CTA) */
.camp-dates-footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.camp-dates-footer-note {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--l-mute);
}

/* Camp breakdown — last card spans full width but stays at half-width */
.camp-break-card--wide {
  grid-column: 1 / -1;
  max-width: 49%;
}
@media (max-width: 960px) {
  .camp-break-card--wide { max-width: none; }
}

/* Touren lts-wrap link footer — centered button row */
.lts-cta-row {
  margin-top: 28px;
  text-align: center;
}

/* Teaser — alpine border variant */
.teaser--alpine { border-top-color: var(--alpine); }

/* Buttons inside flex-column containers that need self-start alignment */
.btn--self-start { align-self: flex-start; }

/* btn-simple after flowing text — adds spacing to separate from paragraph above */
/* display: inline-block required so margin-top takes effect on <a> elements */
.btn-simple--spaced { margin-top: 12px; display: inline-block; }

/* margin-top offset for CTA button rows (programm page) */
.cta-buttons { margin-top: 16px; }

/* ================================================================
   Back-to-top
   ================================================================ */
#back-to-top {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--cta);
  color: var(--cta-ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(20, 16, 12, 0.28);
  opacity: 0;
  pointer-events: none; /* prevent invisible button from intercepting touch/click events */
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 900;
  padding: 0;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--cta-hover);
}
@media (max-width: 960px) {
  #back-to-top {
    display: flex;
  }
}

/* ---------- Social icons ---------- */
.foot-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.foot-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;  /* min 44px touch target (Apple HIG / WCAG 2.5.5) */
  height: 44px;
  color: var(--d-mute);
  transition: color .2s;
  flex-shrink: 0;
}
.foot-social-link:hover { color: var(--ochre); }
.foot-social-link svg { width: 20px; height: 20px; }

.site-drawer-social {
  display: flex;
  gap: 12px;
  padding-top: 4px;
}
.site-drawer-social .foot-social-link {
  color: var(--l-body);
}
.site-drawer-social .foot-social-link:hover { color: var(--cta); }

/* ---------- Social Strip (Homepage, zwischen Highlights + Final CTA) ---------- */
.social-strip {
  padding: 72px 0;
  background: var(--l-card);
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.social-strip-text { flex: 1; }
.social-strip-claim {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--l-head);
  margin-bottom: 10px;
}
.social-strip-handle {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--l-mute);
}
.social-strip-cta { flex-shrink: 0; }

/* Social strip btn has icon inline */
.social-strip-cta .btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 960px) {
  .social-strip-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
}

/* ---------- Unterkunft page ---------- */
.wrap--wide { max-width: 1400px; }

.section-intro {
  padding: var(--space-section) 0 var(--space-16);
}
.section-intro h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--l-head);
  margin-bottom: var(--space-6);
  max-width: 20ch;
}
.section-intro .intro-claim {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  max-width: 50ch;
  color: var(--l-body);
}

.section-widget {
  padding: var(--space-8) 0 var(--space-section);
}

@media (max-width: 960px) {
  .section-intro {
    padding: var(--space-section-mob) 0 var(--space-10);
  }
  .section-widget {
    padding: var(--space-6) 0 var(--space-section-mob);
  }
}

/* ---------- Focus visible (WCAG 2.1 AA — SC 2.4.7) ---------- */
:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
/* Remove outline for mouse/touch interaction (keyboard focus only) */
:focus:not(:focus-visible) { outline: none; }

/* ---------- Reduced motion (WCAG 2.3.3) ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Partner page ─────────────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}
@media (max-width: 640px) {
  .partner-grid { grid-template-columns: 1fr; }
}

.partner-card {
  background: var(--l-card);
  border-top: 3px solid var(--cta);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.dark .partner-card { background: var(--d-card); }

.partner-logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 var(--space-4);
  background: rgba(0,0,0,0.03);
  border: 1px dashed var(--l-border);
  border-radius: 4px;
}
.dark .partner-logo-wrap {
  background: rgba(255,255,255,0.03);
  border-color: var(--d-border);
}
.partner-logo {
  max-height: 60px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}
.partner-card h3 { margin: 0; color: var(--l-head); }

.partner-desc {
  font-size: 0.9375rem;
  color: var(--l-body);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.dark .partner-desc { color: var(--d-body); }

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cta);
  text-decoration: none;
  margin-top: var(--space-2);
}
.partner-link:hover { color: var(--cta-hover); text-decoration: underline; }
.partner-link:focus-visible { outline: 2px solid var(--cta); outline-offset: 2px; border-radius: 2px; }

.g-page-header { padding: var(--space-12) 0 var(--space-10); }
.g-page-header h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--l-head);
  margin-top: var(--space-4);
}
.g-page-header .lead { max-width: 52ch; margin-top: var(--space-4); color: var(--l-body); }
.dark .g-page-header .lead { color: var(--d-body); }
.g-partners { padding: 0 0 var(--space-12); }

/* ---------- LTS Widget overrides (tagestour-buchen) ---------- */
.lts-widget-wrapper {
  max-width: 100%;
  overflow-x: hidden;
}
.lts-widget-wrapper .lts-button,
.lts-widget-wrapper .lts-btn,
.lts-widget-wrapper .lts-pager__item.active,
.lts-widget-wrapper .lts-filter__btn.active {
  background-color: var(--cta);
  border-color: var(--cta);
  color: var(--cta-ink);
}
.lts-widget-wrapper .lts-button:hover,
.lts-widget-wrapper .lts-btn:hover {
  background-color: var(--cta-hover);
  border-color: var(--cta-hover);
}
.lts-widget-wrapper .lts-date-box,
.lts-widget-wrapper .lts-grid-item__wrapper {
  background-color: var(--l-card);
  border-color: var(--l-border);
}
.lts-widget-wrapper .lts-grid-item__title,
.lts-widget-wrapper .lts-search__bar {
  color: var(--l-head);
}
.lts-widget-wrapper .lts-checkbox input:checked,
.lts-widget-wrapper .lts-radio input:checked {
  accent-color: var(--cta);
}

/* ---------- LTS Hotelfinder (unterkunft) ---------- */
.section-widget lts-hotelfinder {
  display: block;
  width: 100%;
  overflow-x: hidden;
}

/* ================================================================
   PAGE: faq.html (FAQ)
   ================================================================ */
.faq-section { padding: var(--space-section-xl) 0 var(--space-section-lg); background: var(--light); }
.faq-section .wrap { max-width: 760px; }
.faq-section > .wrap > .eyebrow { margin-bottom: 20px; display: block; }
.faq-section h1 {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95; letter-spacing: -0.03em;
  color: var(--l-head); margin-bottom: 16px;
}
.faq-section .faq-intro {
  font-family: "Lora", Georgia, serif;
  font-size: 16px; line-height: 1.7; color: var(--l-body);
  margin-bottom: 56px;
}
.faq-category { margin-bottom: 48px; }
.faq-category-title {
  font-family: "Outfit", sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--l-mute); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--l-border);
}
details.faq-item {
  border-bottom: 1px solid var(--l-border);
}
details.faq-item + details.faq-item { margin-top: 0; }
summary.faq-question {
  font-family: "Outfit", sans-serif; font-weight: 700;
  font-size: 16px; line-height: 1.4; color: var(--l-head);
  padding: 18px 40px 18px 0;
  cursor: pointer; list-style: none; position: relative;
  transition: color 0.15s;
}
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question::after {
  content: '+';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--ochre);
  transition: transform 0.2s;
  font-family: "Outfit", sans-serif;
}
details[open] > summary.faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}
details[open] > summary.faq-question { color: var(--cta, var(--ochre)); }
.faq-answer {
  font-family: "Lora", Georgia, serif;
  font-size: 15px; line-height: 1.75; color: var(--l-body);
  padding: 0 40px 20px 0;
}
.faq-answer p { margin-bottom: 8px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { font-weight: 600; color: var(--l-head); font-family: "Outfit", sans-serif; font-size: 13px; letter-spacing: 0.04em; }

@media (max-width: 680px) {
  .faq-section { padding: 64px 0 80px; }
  summary.faq-question { font-size: 15px; padding-right: 32px; }
}
