/* ── variables.css ── */
/* ══════════════════════════════════════════════════════════════
   RTG Camping – Design-Tokens
   Farb-/Schriftbasis abgeleitet aus RTG Performance (Familien-Look).
   Voll dokumentiert im CI-Stylebook (CI/RTG-Camping-Stylebook.html).
   ══════════════════════════════════════════════════════════════ */
:root {
  /* ── Marke ───────────────────────────────────────────── */
  --navy:        #002855;   /* Primär – Wortmarke „RTG", Flächen, Text */
  --navy-700:    #013a78;   /* Verlauf / Hover */
  --navy-900:    #001b3b;   /* Tiefster Navy-Ton */
  --gold:        #ffcd00;   /* Akzent – zweites Wort, Highlights */
  --gold-600:    #e0b400;   /* Gold-Hover */
  --ink:         #1a1a1a;   /* Near-Black – dunkle Balken, Kontrast */
  --white:       #ffffff;
  --paper:       #f4f6f9;   /* dezenter Grauton für Sektionsflächen */
  --paper-2:     #eef2f7;
  --line:        #e3e8ef;   /* Trennlinien / Rahmen */
  --muted:       #5a6675;   /* Sekundärtext */
  --muted-2:     #8593a5;

  /* Funktionsfarben */
  --success:     #1c7a3e;
  --danger:      #c0392b;

  /* ── Schrift ─────────────────────────────────────────── */
  --font-display: 'Aero', 'Kanit', system-ui, sans-serif;       /* Marken-Schrift – große Headlines (H1/H2) */
  --font-head:    'Kanit', system-ui, -apple-system, sans-serif; /* Sub-Headlines, Eyebrows, Buttons, Nav */
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  /* ── Layout ──────────────────────────────────────────── */
  --container:        75rem;   /* 1200px */
  --container-narrow: 46rem;   /* 736px  */
  --container-wide:   66rem;   /* 1056px */
  --radius:    10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,40,85,.06), 0 1px 3px rgba(0,40,85,.08);
  --shadow-md: 0 6px 24px rgba(0,40,85,.10);
  --shadow-lg: 0 20px 50px rgba(0,40,85,.16);

  /* ── Marken-Verläufe ─────────────────────────────────── */
  --gradient-navy: linear-gradient(120deg, var(--navy) 0%, var(--navy-700) 100%);
  --gradient-dark: linear-gradient(120deg, var(--ink) 0%, var(--navy-900) 100%);

  /* ── Kompat-Aliase ───────────────────────────────────── */
  /* consent.js (Cookie-Banner) nutzt noch die Vorlagen-Namen → auf RTG mappen. */
  --beige:           var(--line);
  --sand:            var(--muted-2);
  --anthrazit:       var(--ink);
  --anthrazit-light: var(--muted);
  --anthrazit-dark:  var(--navy);
}

/* ── fonts.css ── */
/* Selbst gehostete Webfonts (Latin-Subset) – DSGVO-konform, keine Google-Requests.
   Aero = Marken-Display-Schrift (große Headlines, wie RTG-Logo) · Kanit = Sub-Headlines/UI · Inter = Text. */

/* ── Aero (Marken-Schrift, nativ schräg – font-weight-Range verhindert synthetisches Bold) ── */
@font-face {
  font-family: 'Aero'; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('../fonts/Aero.woff') format('woff');
}

/* ── Kanit (Headlines) ── */
@font-face {
  font-family: 'Kanit'; font-style: italic; font-weight: 600; font-display: swap;
  src: url('../fonts/Kanit-600-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Kanit'; font-style: italic; font-weight: 700; font-display: swap;
  src: url('../fonts/Kanit-700-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Kanit'; font-style: italic; font-weight: 800; font-display: swap;
  src: url('../fonts/Kanit-800-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Kanit'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/Kanit-700-normal.woff2') format('woff2');
}

/* ── Inter (Body / UI) ── */
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/Inter-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/Inter-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/Inter-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/Inter-700-normal.woff2') format('woff2');
}

/* ── main.css ── */
/* ════════════════════════════════════════════════════════
   RTG Camping – Grundgerüst
   Kantig-technischer RTG-Look: Navy dominant, Gold als Akzent,
   Kanit-italic-Headlines, diagonale Schnittkanten, Plus-Bullets.
   ════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--gold); color: var(--ink); }

/* ── Typo ── */
h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.04;
  letter-spacing: -0.005em;
}
/* Große Headlines in der Marken-Schrift Aero (nativ schräg → font-style normal). */
h1, h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
}
/* em in großen Headlines nur farblich hervorheben, KEIN künstliches Kursiv auf Aero. */
h1 em, h2 em { font-style: normal; color: var(--gold); }
/* Sub-Headlines bleiben Kanit (kursiv). */
h3, h4 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { line-height: 1.7; }
strong, b { font-weight: 600; }

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

/* ── Layout-Helfer ── */
.container        { max-width: var(--container);        margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--container-narrow);  margin: 0 auto; padding: 0 1.5rem; }
.container-wide   { max-width: var(--container-wide);    margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.bg-paper { background: var(--paper); }
.bg-navy  { background: var(--navy); color: #fff; }
.bg-ink   { background: var(--ink); color: #fff; }

/* Eyebrow – kleines getracktes Kanit-Label über Headlines */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-style: italic; font-weight: 700;
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--gold); display: inline-block; }
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); }

.lead { font-size: 1.15rem; color: var(--muted); line-height: 1.75; }

/* Section-Rhythmus */
.section    { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-title { margin-bottom: 2.75rem; }
.section-title h2 { margin: .6rem 0 .75rem; }
.section-title .lead { max-width: 46rem; }
.section-title.text-center .lead { margin-inline: auto; }

/* ════════════════════════════════════════════════════════
   Buttons – kantig, uppercase, Kanit
   ════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-style: italic; font-weight: 700;
  font-size: .92rem; letter-spacing: .02em;
  padding: .95rem 1.9rem; border-radius: 8px;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer; white-space: nowrap;
}
.btn svg { transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 4px 14px rgba(255,205,0,.28); }
.btn-primary:hover { background: var(--gold-600); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); padding: calc(.95rem - 2px) calc(1.9rem - 2px); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline.on-dark { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline.on-dark:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-sm { padding: .6rem 1.15rem; font-size: .82rem; border-radius: 7px; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.02rem; }

/* ════════════════════════════════════════════════════════
   Topbar (Near-Black)
   ════════════════════════════════════════════════════════ */
.topbar { background: var(--ink); color: rgba(255,255,255,.72); font-size: .82rem; }
.topbar-inner {
  max-width: var(--container); margin: 0 auto; padding: .5rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.topbar-loc { display: inline-flex; align-items: center; gap: .5rem; }
.topbar-loc svg { color: var(--gold); flex-shrink: 0; }
.topbar-meta { display: inline-flex; align-items: center; gap: 1.4rem; }
.topbar-hours { color: rgba(255,255,255,.55); }
.topbar-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: #fff; }
.topbar-phone svg { color: var(--gold); }
.topbar-phone:hover { color: var(--gold); }
@media (max-width: 860px) {
  .topbar-hours { display: none; }
}
@media (max-width: 560px) {
  .topbar-loc span, .topbar-loc { font-size: .76rem; }
  .topbar-inner { padding: .45rem 1rem; }
}

/* ════════════════════════════════════════════════════════
   Header / Nav (sticky, weiß)
   ════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,40,85,.08); }
.nav {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 98px; transition: height .3s ease;
}
/* Beim Scrollen kompakter (Logo + Nav schrumpfen) */
.site-header.scrolled .nav { height: 64px; }

/* Logo (Bild-Wortmarke) */
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 78px; width: auto; display: block; transition: height .3s ease; }
.site-header.scrolled .brand-logo { height: 46px; }

/* Slogan rechts neben dem Logo (wie im Footer); margin-right:auto gruppiert ihn zum Logo */
.header-claim {
  display: none;
  font-family: var(--font-head); font-style: italic; font-weight: 600;
  font-size: .95rem; line-height: 1.35; color: var(--navy);
  margin: 0 auto 0 1.25rem; padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}
@media (min-width: 1100px) { .header-claim { display: block; } }
/* Mobil (Burger-Modus): Slogan kompakt neben dem Logo; nur im engen
   Zwischenbereich 881–1099px (Desktop-Links sichtbar) bleibt er aus. */
@media (max-width: 880px) {
  .header-claim { display: block; font-size: .78rem; line-height: 1.3; margin-left: .9rem; padding-left: .9rem; min-width: 0; }
}
@media (max-width: 360px) { .header-claim { display: none; } }
.footer-logo-link { display: inline-flex; }
.footer-logo { height: 76px; width: auto; display: block; }

.nav-desktop { display: flex; align-items: center; gap: 2.25rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-style: italic; font-weight: 700;
  font-size: 1.16rem; color: var(--navy); position: relative; padding: .25rem 0;
  transition: color .2s, font-size .3s ease;
}
.site-header.scrolled .nav-links a { font-size: 1rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav-links a:hover { color: var(--navy-700); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle { display: none; color: var(--navy); padding: 4px; }

/* Mobile-Menü */
.nav-mobile {
  display: none; overflow: hidden; max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
  background: #fff; border-top: 1px solid var(--line);
}
.nav-mobile.open { max-height: 26rem; padding: 1.25rem 0 1.5rem; }
.nav-mobile ul { list-style: none; padding: 0 1.5rem; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.25rem; }
.nav-mobile a {
  font-family: var(--font-head); font-style: italic; font-weight: 700; font-size: 1.15rem;
  color: var(--navy);
}
.nav-mobile a.active { color: var(--gold-600); }
.nav-mobile .mobile-cta { padding: 0 1.5rem; display: flex; flex-direction: column; gap: .85rem; }
.nav-mobile .mobile-cta .btn { width: 100%; }
.mobile-phone {
  font-family: var(--font-head); font-style: italic; font-weight: 700;
  text-align: center; color: var(--navy); font-size: 1.05rem;
}

@media (max-width: 880px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile { display: block; }
  /* Mobile etwas kompakter, aber Logo trotzdem gut erkennbar */
  .nav { height: 76px; }
  .site-header.scrolled .nav { height: 60px; }
  .brand-logo { height: 58px; }
  .site-header.scrolled .brand-logo { height: 44px; }
}

/* ════════════════════════════════════════════════════════
   Marken-Bausteine (für alle Seiten wiederverwendbar)
   ════════════════════════════════════════════════════════ */

/* Diagonale Schnittkante – das RTG-Signature-Element */
.cut-tr { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%); }
.cut-bl { clip-path: polygon(0 0, 100% 0, 100% 100%, 28px 100%, 0 calc(100% - 28px)); }

/* Karten */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3 { margin-bottom: .6rem; }

/* Plus-Liste – RTG-Bullet-Stil */
.plus-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.plus-list li { position: relative; padding-left: 1.7rem; line-height: 1.55; }
.plus-list li::before {
  content: "+"; position: absolute; left: 0; top: -1px;
  font-family: var(--font-head); font-style: italic; font-weight: 800;
  color: var(--gold-600); font-size: 1.15rem;
}
.plus-list.on-dark li::before { color: var(--gold); }

/* Check-Liste (USP/Vorteile) */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.check-list li { position: relative; padding-left: 2.1rem; line-height: 1.55; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 1.35rem; height: 1.35rem;
  border-radius: 50%; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/0.85rem no-repeat, linear-gradient(#000,#000);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/0.85rem no-repeat;
}
/* Fallback ohne Mask: einfacher Haken */
@supports not (mask: url("#")) {
  .check-list li::before { content: "✓"; background: none; color: var(--gold-600); font-weight: 800; width: auto; }
}

/* Badge / Pill */
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-head); font-style: italic; font-weight: 700; font-size: .78rem;
  letter-spacing: .04em; text-transform: uppercase;
  background: rgba(0,40,85,.06); color: var(--navy);
  padding: .3rem .75rem; border-radius: 6px;
}
.badge.gold { background: var(--gold); color: var(--ink); }

/* Dünner Gold-Trenner */
.gold-rule { width: 54px; height: 4px; background: var(--gold); border: 0; }

/* Fahrzeugauswahl-Kacheln (Start + Service) */
.fz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.1rem; }
.fz-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.25rem 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.fz-icon {
  display: inline-flex; width: 66px; height: 66px; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(0,40,85,.06); color: var(--navy);
  transition: background .2s ease, color .2s ease; margin-bottom: .35rem;
}
.fz-card:hover .fz-icon { background: var(--navy); color: var(--gold); }
.fz-card h3 { margin: 0; }
.fz-card p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ════════════════════════════════════════════════════════
   Footer (Navy, Gold-Kante oben)
   ════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.66); position: relative; }
.site-footer::before {
  content: ""; display: block; height: 5px;
  background: linear-gradient(90deg, var(--gold) 0 62%, var(--ink) 62% 100%);
}
.site-footer .footer-inner { max-width: var(--container); margin: 0 auto; padding: 4rem 1.5rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.75rem; margin-bottom: 3rem; }
.footer-brand .brand--footer { margin-bottom: 1.1rem; }
.footer-claim { font-family: var(--font-head); font-style: italic; font-weight: 600; font-size: 1.15rem; color: #fff; line-height: 1.3; margin-bottom: 1rem; }
.footer-group { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-col .footer-heading { color: var(--gold); font-family: var(--font-head); font-style: italic; font-weight: 700; font-size: .95rem; letter-spacing: .04em; margin: 0 0 1.15rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: .85rem; }
.footer-contact .footer-addr,
.footer-contact a,
.footer-contact .footer-hours { display: flex; align-items: flex-start; gap: .65rem; font-size: .95rem; line-height: 1.55; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
  font-size: .85rem; text-align: center;
}
.footer-legal { display: flex; gap: 1.4rem; align-items: center; }
.footer-legal a:hover, .footer-legal button:hover { color: #fff; }
.cookie-settings-link { font-size: .85rem; color: inherit; font-family: inherit; }

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.3fr; gap: 3rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ════════════════════════════════════════════════════════
   Formulare (Kontakt)
   ════════════════════════════════════════════════════════ */
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 620px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label {
  font-family: var(--font-head); font-style: italic; font-weight: 700; font-size: .9rem; color: var(--navy);
}
.field label .req { color: var(--gold-600); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,40,85,.1);
}
.field textarea { resize: vertical; min-height: 140px; }
.field-check { display: flex; align-items: flex-start; gap: .7rem; font-size: .9rem; color: var(--muted); line-height: 1.5; }
.field-check input { width: 1.15rem; height: 1.15rem; margin-top: .15rem; accent-color: var(--navy); flex-shrink: 0; }
.field-check a { color: var(--navy); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .82rem; color: var(--muted-2); }
.form-error {
  background: #fdecec; border: 1px solid #f4c9c9; color: var(--danger);
  padding: .85rem 1.1rem; border-radius: 8px; font-size: .92rem; margin-bottom: 1.1rem;
}
.form-success {
  background: #eaf6ee; border: 1px solid #bfe3ca; color: var(--success);
  padding: 1.5rem 1.5rem; border-radius: var(--radius);
}

/* ════════════════════════════════════════════════════════
   Scroll-Reveal (IntersectionObserver in main.js)
   ════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* ════════════════════════════════════════════════════════
   Google-Karte (DSGVO: lädt erst nach Klick) – Kontakt + Unternehmen
   ════════════════════════════════════════════════════════ */
.gmap {
  position: relative; width: 100%; min-height: 360px;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--navy); box-shadow: var(--shadow-sm);
}
.gmap-placeholder {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: .45rem; padding: 1.75rem;
  background: var(--gradient-navy, var(--navy)); color: #fff;
}
.gmap-pin { color: var(--gold); }
.gmap-title { font-family: var(--font-head); font-style: italic; font-weight: 800; font-size: 1.3rem; color: #fff; }
.gmap-addr { color: rgba(255,255,255,.82); font-size: .96rem; }
.gmap-load { margin-top: .7rem; }
.gmap-note { font-size: .78rem; color: rgba(255,255,255,.6); max-width: 32ch; margin-top: .3rem; }
.gmap iframe { display: block; position: relative; z-index: 2; width: 100%; height: 100%; min-height: 360px; border: 0; }
/* Wichtig: .gmap-placeholder hat display:flex – das schlägt das UA-[hidden].
   Ohne diese Regel bleibt der Platzhalter über der geladenen Karte liegen. */
.gmap-placeholder[hidden] { display: none !important; }

/* ── Öffnungszeiten (Standard-Darstellung: Tag links fett, Uhrzeit rechts) ── */
.hours-table { display: inline-grid; grid-template-columns: auto auto; gap: .1rem 1.15rem; }
.hours-days { font-weight: 700; }
.hours-time { white-space: nowrap; }

/* ── pages/home.css ── */
/* ════════════════════════════════════════════════════════
   Startseite (home.css) – RTG Camping
   ════════════════════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--gradient-navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
/* Diagonaler Gold-Keil rechts (Marken-Schnittkante) */
.hero::before {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0; width: 46%;
  background: linear-gradient(160deg, rgba(255,205,0,.14), rgba(255,205,0,0) 60%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}
/* dezentes Liniengitter */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 100% 46px;
}
.hero-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
  padding: clamp(3rem, 8vw, 5.5rem) 1.5rem clamp(3.5rem, 9vw, 6.5rem);
}
.hero-content { max-width: 40rem; flex: 1 1 auto; }
.hero-visual { flex: 0 0 auto; width: 42%; max-width: 500px; }
.hero-visual img { width: 100%; height: auto; filter: drop-shadow(0 16px 44px rgba(0,0,0,.32)); }
@media (max-width: 900px) { .hero-inner { display: block; } .hero-visual { display: none; } }
/* Große Slogan-Zeile (ehemals h1 – die echte h1 ist jetzt die Keyword-Zeile im Eyebrow-Look).
   Repliziert exakt die globale h1-Optik: Aero, normal, 400, enge Zeilenhöhe. */
.hero .hero-h1 { margin: 0; }
.hero .hero-claim {
  color: #fff; font-size: clamp(2.6rem, 7vw, 5rem); margin: 1rem 0 1.25rem;
  font-family: var(--font-display); font-style: normal; font-weight: 400;
  line-height: 1.04; letter-spacing: -0.005em;
}
.hero .hero-claim em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.82); max-width: 34rem; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem .6rem;
  margin-top: 2.75rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.14);
}
.hero-tags li {
  font-family: var(--font-head); font-style: italic; font-weight: 700; font-size: .82rem;
  letter-spacing: .02em; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.2); border-radius: 6px; padding: .3rem .7rem;
}

/* ── USP-Band (Bild + Text) ── */
.usp-grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; align-items: center; }
.usp-visual img { width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.usp-body h2 { margin: .7rem 0 1rem; }
.usp-list { gap: 1rem; margin-top: 1.5rem; }
.usp-list li { font-size: 1.05rem; font-weight: 500; }
.usp-body .btn { margin-top: 1.75rem; }
@media (min-width: 860px) {
  .usp-grid { grid-template-columns: .92fr 1.08fr; gap: 3.5rem; }
}

/* ── Leistungen-Teaser ── */
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem;
}
.svc-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.75rem 1.6rem; position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 0; background: var(--gold);
  transition: width .3s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { width: 100%; }
.svc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 12px;
  background: rgba(0,40,85,.06); color: var(--navy); margin-bottom: 1.15rem;
  transition: background .25s ease, color .25s ease;
}
.svc-card:hover .svc-icon { background: var(--navy); color: var(--gold); }
.svc-card h3 { margin-bottom: .55rem; }
.svc-card p { font-size: .95rem; color: var(--muted); line-height: 1.6; flex-grow: 1; }
.svc-more {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.25rem;
  font-family: var(--font-head); font-style: italic; font-weight: 700; font-size: .9rem; color: var(--navy);
}
.svc-card:hover .svc-more { color: var(--gold-600); }
.svc-more svg { transition: transform .2s ease; }
.svc-card:hover .svc-more svg { transform: translateX(3px); }

/* ── Ablauf / Schritte ── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.steps li { position: relative; padding-top: 1rem; }
.steps li::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 4px; background: var(--gold); }
.step-no {
  display: block; font-family: var(--font-head); font-style: italic; font-weight: 800;
  font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: .35rem;
}
.steps h3 { margin-bottom: .5rem; }
.steps p { font-size: .95rem; color: var(--muted); }

/* ── CTA-Band (Near-Black, diagonale Kante) ── */
.cta-band {
  background: var(--ink); color: #fff; position: relative; overflow: hidden;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.cta-band::before {
  content: ""; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: var(--gradient-navy); opacity: .5;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
.cta-inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.cta-text h2 { color: #fff; margin: .6rem 0 .75rem; }
.cta-text p { color: rgba(255,255,255,.75); max-width: 34rem; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 1.75rem; }
.cta-phone {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-style: italic; font-weight: 700; font-size: 1.25rem; color: #fff;
}
.cta-phone svg { color: var(--gold); }
.cta-phone:hover { color: var(--gold); }
@media (min-width: 820px) {
  .cta-inner { grid-template-columns: 1.4fr auto; }
  .cta-actions { justify-content: flex-end; }
}

/* === Foto-Hero (Freepik #21842847, lizenziert · Wohnmobil am Fjord, Norwegen) === */
/* Mobil die kleine Hero-Variante (118 kB), ab 900px das große Bild – LCP-Maßnahme */
.hero { background: linear-gradient(95deg, rgba(0,40,85,.94) 0%, rgba(0,40,85,.74) 46%, rgba(0,40,85,.30) 100%), url('/images/hero-mobil.webp') center/cover no-repeat; }
@media (min-width: 900px) {
  .hero { background-image: linear-gradient(95deg, rgba(0,40,85,.94) 0%, rgba(0,40,85,.74) 46%, rgba(0,40,85,.30) 100%), url('/images/hero.webp'); }
}
.hero::before, .hero::after { display: none; }
.hero-visual { display: none; }

