/* ============================================================
   ImmoRheinland · Boutique-Theme "Mauve & Cream"
   Anthrazit + Soft Mauve + Champagne auf warmem Cremeweiß
   Cormorant Garamond (Display) + DM Sans (Body)
   ============================================================ */

:root {
  /* Farben */
  --bg:           #faf7f2;
  --bg-soft:      #f3ede4;
  --surface:      #ffffff;
  --text:         #1a1818;
  --text-soft:    #4a4242;
  --muted:        #857c7d;
  --primary:      #1a1818;     /* Anthrazit */
  --primary-soft: #3a3537;
  --accent:       #b8908e;     /* Soft Mauve */
  --accent-dark:  #9a6f6c;
  --accent-soft:  #e8d6d4;
  --gold:         #c9a96e;     /* Champagne */
  --gold-soft:    #ebd9b5;
  --border:       #ebe3d6;
  --border-soft:  #f0ebe1;
  --success:      #6a8a6f;
  --hero-bg-grad: linear-gradient(135deg, #f3ede4 0%, #faf7f2 60%, #f0e0dd 100%);

  /* Typografie */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container:    1240px;
  --radius-sm:    4px;
  --radius:       8px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin: 0 0 0.55em 0;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; }
em.italic-accent, h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dark);
}
p { margin: 0 0 1em 0; color: var(--text-soft); }
.lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 56ch;
  font-weight: 400;
  line-height: 1.7;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
}
.section { padding: 6rem 0; }
.section-tight { padding: 4rem 0; }
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.brand, .nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}
.brand i, .nav-logo i {
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 400;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: -2px;
  font-weight: 500;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 2.5rem;
}
.nav-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
  transition: color .2s ease;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent-dark);
  transition: width .25s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent-dark); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: all .2s ease;
}
.nav-cta:hover { background: var(--primary); color: var(--bg); }

.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; color: var(--primary); }

@media (max-width: 880px) {
  .nav { height: 72px; }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg);
    padding: 1.5rem 1.75rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 0.5rem;
  }
  .nav-menu.open a { padding: 0.65rem 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2.25rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  font-family: var(--font-body);
  background: transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--bg);
}
.btn-accent {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--bg);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: var(--bg); }
.btn-light {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--border);
}
.btn-light:hover { border-color: var(--primary); }
.btn-link {
  border: none;
  padding: 0;
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.btn-link:hover { color: var(--primary); }
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn-whatsapp:hover { background: #1ea957; border-color: #1ea957; color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--hero-bg-grad);
  padding: 7rem 0 8rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .hero { padding: 4rem 0 5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero-meta::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent-dark);
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 400;
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 48ch;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-credentials {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-cred {
  font-size: 0.85rem;
  color: var(--text-soft);
}
.hero-cred strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.hero-cred span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.hero-visual {
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--accent);
  pointer-events: none;
  z-index: 2;
}
.hero-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background:
    radial-gradient(circle at 70% 30%, var(--accent-soft) 0%, transparent 60%),
    var(--bg-soft);
}
.hero-visual-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-soft);
  font-size: 1.15rem;
  text-align: center;
}
.hero-visual-tag span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 0.6rem;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-head.left {
  text-align: left;
  margin-left: 0;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}

/* ============================================================
   USP STRIP (kompakt unter Hero)
   ============================================================ */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 880px) {
  .usp-strip { grid-template-columns: repeat(2, 1fr); }
}
.usp {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.usp:last-child { border-right: 0; }
@media (max-width: 880px) {
  .usp:nth-child(2) { border-right: 0; }
  .usp:nth-child(1), .usp:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.usp-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}
.usp-icon svg { width: 18px; height: 18px; }
.usp-text {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.usp-text small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 3px;
}

/* ============================================================
   SERVICES (4 Spalten, Linien-Design)
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 880px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services { grid-template-columns: 1fr; } }
.service {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background-color .25s ease;
}
.service:last-child { border-right: 0; }
.service:hover { background: var(--bg-soft); }
@media (max-width: 880px) {
  .service:nth-child(2) { border-right: 0; }
  .service:nth-child(1), .service:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 540px) {
  .service { border-right: 0; border-bottom: 1px solid var(--border); }
  .service:last-child { border-bottom: 0; }
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.service h3 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.service p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--text-soft);
}
.service-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 4px;
  transition: color .2s ease;
}
.service-link:hover { color: var(--accent-dark); }
.service ul {
  list-style: none;
  padding: 0; margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.service ul li {
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
}
.service ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 6px; height: 1px;
  background: var(--accent-dark);
}

/* ============================================================
   ABOUT SPLIT (für Über uns, Leistungs-Detailseiten)
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
}
.about-photo {
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: 1.25rem;
  border: 1px solid var(--accent);
  pointer-events: none;
  z-index: 2;
}
.about-photo-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-soft) 100%);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
}
.about-photo-inner span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 0.6rem;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0;
}
.credential-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   PROPERTY CARDS (Angebote)
   ============================================================ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}
.property-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease;
}
.property-card:hover { border-color: var(--accent); }
.property-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-soft) 100%);
  position: relative;
  overflow: hidden;
}
.property-image img { width: 100%; height: 100%; object-fit: cover; }
.property-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
}
.property-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.95rem;
  background: var(--bg);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.property-status.reserved { background: var(--accent); color: var(--bg); }
.property-status.sold     { background: var(--muted); color: var(--bg); }

.property-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.property-location {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.property-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 1rem;
  line-height: 1.2;
}
.property-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}
.property-meta {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-soft);
}
.property-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--primary);
}
.property-meta-item span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.property-actions {
  padding: 0 1.75rem 1.75rem;
}
.property-actions .btn {
  width: 100%;
  padding: 0.9rem 1.25rem;
}

/* ============================================================
   FEATURED HIGHLIGHT (großes einzelnes Objekt)
   ============================================================ */
.featured {
  background: var(--bg-soft);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .featured-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.featured-img {
  aspect-ratio: 5/6;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.featured-img::after {
  content: '';
  position: absolute;
  inset: 1.25rem;
  border: 1px solid var(--accent);
  z-index: 2;
}
.featured-img-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 1.1rem;
  text-align: center;
}
.featured-tag {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.featured h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}
.featured-meta {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.featured-meta div { font-size: 0.85rem; }
.featured-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 500;
}
.featured-meta span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.featured-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--accent-dark);
  margin-bottom: 2rem;
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
/* keine border-right in letzter Spalte (3 Spalten = jedes 3.) */
.review-card:nth-child(3n) { border-right: 0; }
@media (max-width: 880px) {
  .review-card { border-right: 1px solid var(--border); }
  .review-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .review-card:nth-child(2n) { border-right: 0; }
}
@media (max-width: 540px) {
  .review-card { border-right: 0; }
  .review-card:nth-child(2n) { border-right: 0; }
}
.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 4px;
  margin-bottom: 1.25rem;
}
.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 1.75rem;
}
.review-author {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-soft);
}
.review-author small {
  display: block;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4px;
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================================
   CTA BANNER (zentriert, edel)
   ============================================================ */
.cta {
  text-align: center;
  padding: 8rem 0;
}
.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.cta p {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.cta-banner {
  background: var(--primary);
  color: var(--bg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--bg);
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner h2 em { color: var(--accent); }
.cta-banner p {
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 2rem;
  position: relative;
}
.cta-banner .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  position: relative;
}
.cta-banner .btn-primary:hover {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--primary);
}

/* ============================================================
   SUBHERO (für Unterseiten)
   ============================================================ */
.subhero {
  background: var(--hero-bg-grad);
  padding: 6rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
.subhero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
}
.subhero p { font-size: 1.05rem; max-width: 60ch; }
.breadcrumbs {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent-dark); }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
}
@media (max-width: 768px) {
  .form-card { padding: 2rem 1.5rem; }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.55rem;
}
.form-field label .req { color: var(--accent-dark); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: all .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.form-field-checkbox input { width: auto; margin-top: 4px; }
.form-field-checkbox label {
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  font-size: 0.9rem;
}

/* Mehrstufiges Formular */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.form-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.form-step-num {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}
.form-step.active { color: var(--primary); }
.form-step.active .form-step-num {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}
.form-step.done .form-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}
.option-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: all .2s ease;
}
.option-tile:hover { border-color: var(--accent); }
.option-tile input { display: none; }
.option-tile.checked {
  border-color: var(--primary);
  background: var(--surface);
}
.option-tile svg { width: 24px; height: 24px; color: var(--accent-dark); margin-bottom: 0.6rem; }
.option-tile span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

/* ============================================================
   CONTACT GRID
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-list {
  list-style: none;
  margin: 0; padding: 0;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.contact-text a, .contact-text span {
  color: var(--text-soft);
  font-weight: 400;
  font-size: 0.95rem;
}
.contact-text a:hover { color: var(--accent-dark); }
.contact-text small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 4px;
  font-style: italic;
  font-family: var(--font-display);
}

.info-box {
  margin-top: 2rem;
  padding: 1.75rem;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent-dark);
}
.info-box h4 {
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.info-box p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary);
  color: var(--bg);
  padding: 5rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--bg); }
.site-footer .brand i { color: var(--accent); }
.site-footer .brand small { color: rgba(255,255,255,0.55); }
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  font-weight: 400;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.75); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  z-index: 99;
  transition: all .25s ease;
}
.fab-whatsapp:hover {
  transform: scale(1.06);
  background: #1ea957;
  color: #fff;
}
.fab-whatsapp svg { width: 28px; height: 28px; }

/* ============================================================
   PROSE (Impressum / Datenschutz)
   ============================================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.prose p, .prose ul, .prose ol {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-soft);
}
.prose strong { color: var(--primary); font-weight: 500; }
.prose ul { padding-left: 1.25rem; }
.prose a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

/* Animation */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
}

/* Print */
@media print {
  .site-header, .site-footer, .fab-whatsapp, .nav-cta { display: none; }
  body { background: #fff; }
}
