/* ════════════════════════════════════════════════════════
   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) === */
.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.webp') center/cover no-repeat; }
.hero::before, .hero::after { display: none; }
.hero-visual { display: none; }
