/* ═══════════════════════════════════════════════════════
   MARIANNE FABIANO – Modernes Wellness Design (Grün)
   ═══════════════════════════════════════════════════════ */

/* ── Self-hosted Fonts ── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/cormorant-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('../fonts/cormorant-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/jost.woff2') format('woff2');
}

/* ── Variablen ── */
:root {
  --rose:       #7aab7a;
  --rose-dark:  #3d6b4a;
  --rose-light: #c2dfc2;
  --cream:      #f4faf5;
  --cream-dark: #e6f2e7;
  --gold:       #8a9f5a;
  --gold-light: #c8d8a0;
  --charcoal:   #1c2a1e;
  --text:       #1e2d1c;
  --text-light: #3e5440;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;
  --radius-xl:  64px;

  --shadow-sm:  0 2px 12px rgba(22,42,24,.08);
  --shadow-md:  0 8px 32px rgba(22,42,24,.12);
  --shadow-lg:  0 24px 64px rgba(22,42,24,.16);

  --transition: .4s cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

/* ── Typography ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--rose-dark);
}
.section-title--center { text-align: center; }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold-light); }

.label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.label--light { color: var(--gold-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(61,107,74,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61,107,74,.45);
}
.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--rose-dark);
  border: 1.5px solid var(--rose);
}
.btn--outline:hover {
  background: var(--rose-light);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ═══ NAVIGATION ══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  padding: .65rem 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: padding var(--transition);
}
.nav.scrolled {
  padding: .5rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
}
.nav__logo-img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--rose-light);
  padding-left: .9rem;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: .02em;
}
.nav__logo-sub {
  font-size: .72rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: .15rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--rose-dark);
  transition: var(--transition);
}
.nav__link:hover { color: var(--rose-dark); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--rose-dark); }
.nav__link.active::after { width: 100%; }
.nav__link--cta {
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  color: var(--white) !important;
  padding: .5rem 1.4rem;
  border-radius: 100px;
  font-weight: 500;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ═══ HERO ════════════════════════════════════════════════ */
.hero {
  padding-top: 72px;
  background: #ffffff;
}
.hero__banner {
  width: 100%;
  line-height: 0;
}
.hero__banner img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__cta-bar {
  background: var(--cream);
  border-top: 2px solid var(--rose-light);
  border-bottom: 2px solid var(--rose-light);
  padding: 2rem 0;
}
.hero__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--rose-dark);
  line-height: 1;
}
.hero__stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: .3rem;
}
.hero__stat-sep {
  width: 1px;
  height: 40px;
  background: var(--rose-light);
  flex-shrink: 0;
}
.hero__actions {
  display: flex;
  gap: 1rem;
}

/* ═══ REVEAL ANIMATIONS ══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ WELCOME ════════════════════════════════════════════ */
.welcome {
  padding: 6rem 0;
  background: var(--cream);
}
.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.welcome__text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.welcome__text .btn { margin-top: 1rem; }

.welcome__visual {
  position: relative;
  height: 440px;
}
.welcome__blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, var(--rose-light), var(--cream-dark));
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobMorph 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33%       { border-radius: 30% 70% 40% 60% / 60% 40% 60% 40%; }
  66%       { border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%; }
}
.welcome__card-stack {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.welcome__card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
  border: 1px solid rgba(74,122,90,.15);
  animation: cardFloat 4s ease-in-out infinite;
}
.welcome__card--1 { top: 10%; left: 0; animation-delay: 0s; }
.welcome__card--2 { top: 45%; right: 0; animation-delay: 1.3s; }
.welcome__card--3 { bottom: 10%; left: 15%; animation-delay: 2.6s; }
.welcome__card-icon {
  width: 26px;
  height: 26px;
  color: var(--rose-dark);
  flex-shrink: 0;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ═══ SERVICES ═══════════════════════════════════════════ */
.services {
  padding: 6rem 0;
  background: var(--cream-dark);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-light), transparent);
}
.services__intro {
  text-align: center;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  font-weight: 300;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem 2rem;
  border: 1px solid rgba(74,122,90,.15);
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-light);
}
.service-card:hover .service-card__glow { opacity: 1; }
.service-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(74,122,90,.08) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--rose-dark);
  margin-bottom: 1.5rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: .8rem;
}
.service-card__text {
  font-size: .88rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--rose-dark);
  text-transform: uppercase;
  transition: var(--transition);
}
.service-card__link span { transition: var(--transition); }
.service-card__link:hover { color: var(--charcoal); }
.service-card__link:hover span { transform: translateX(4px); }

/* ═══ ABOUT ══════════════════════════════════════════════ */
.about {
  padding: 6rem 0;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
}
.about__image-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.about__image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--rose-light), var(--cream-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(138,159,90,.25), transparent 60%);
}
.about__monogram {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--rose-dark);
  opacity: .4;
  position: relative;
  z-index: 1;
}
.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.about__badge-text {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
  text-align: center;
}
.about__text p {
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.about__feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.about__feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--rose-light);
  color: var(--rose-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  margin-top: .1rem;
}
.about__feature strong { display: block; color: var(--charcoal); font-size: .95rem; }
.about__feature p { font-size: .85rem; color: var(--text-light); margin: 0; }

/* ═══ REGION ═════════════════════════════════════════════ */
.region {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.region__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a1a0f 0%, #162e1e 50%, #0e2015 100%);
}
.region .container { position: relative; z-index: 1; }
.region__intro {
  text-align: center;
  color: rgba(255,255,255,.65);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 3rem;
}
.region__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.region__tag {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .5rem 1.4rem;
  font-size: .85rem;
  letter-spacing: .04em;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.region__tag:hover {
  background: rgba(74,122,90,.25);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══ CONTACT ════════════════════════════════════════════ */
.contact {
  padding: 6rem 0;
  background: var(--cream-dark);
}
.contact__intro {
  color: var(--text-light);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 3rem;
}
.contact__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.contact__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .8rem;
  border: 1px solid rgba(74,122,90,.15);
  transition: var(--transition);
  color: inherit;
}
a.contact__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.contact__card-icon {
  width: 34px;
  height: 34px;
  color: var(--rose-dark);
  margin-bottom: .4rem;
}
.contact__card-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact__card-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ═══ FOOTER ═════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: .3rem;
}
.footer__tagline {
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--rose-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer__copy { font-size: .8rem; margin-top: auto; }
.footer__links h4 {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer__links li + li { margin-top: .7rem; }
.footer__links a {
  font-size: .88rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--rose-light); }
.footer__contact h4 {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer__contact p { font-size: .88rem; margin-bottom: .8rem; line-height: 1.6; }
.footer__contact a {
  display: block;
  font-size: .88rem;
  transition: var(--transition);
}
.footer__contact a:hover { color: var(--rose-light); }
.footer__bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: .8rem;
  opacity: .5;
}

/* ═══ RESPONSIVE ═════════════════════════════════════════ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .nav__logo-sub { display: none; }
  .welcome, .services, .about, .region, .contact { padding: 5rem 0; }
  .welcome__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__cards { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  .container { width: min(1180px, 100% - 2.5rem); }

  /* Nav */
  .nav__logo-img { height: 40px; }
  .nav__logo-name { font-size: .95rem; }

  /* Burger immer sichtbar über dem Panel */
  .nav__burger {
    display: flex;
    position: relative;
    z-index: 1001;
    padding: .6rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav__burger span { width: 22px; }

  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right .4s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav__links.open { right: 0; }
  .nav__links li { width: 100%; }
  .nav__link {
    display: block;
    color: var(--text) !important;
    font-size: 1.05rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rose-light);
    width: 100%;
  }
  .nav__link::after { display: none; }
  .nav__link--cta {
    margin-top: 1.5rem;
    text-align: center;
    border-bottom: none;
    border-radius: 100px;
    padding: .9rem 1.4rem;
  }

  /* Sections */
  .welcome, .services, .about, .region, .contact { padding: 4rem 0; }

  /* Hero */
  .hero { padding-top: 68px; }
  .hero__cta-bar { padding: 1.8rem 0; }
  .hero__cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }
  .hero__tagline { font-size: 1rem; }
  .hero__stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
  }
  .hero__stat-num { font-size: 1.7rem; }
  .hero__stat-label { font-size: .65rem; }
  .hero__stat-sep { height: 32px; }
  .hero__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: .7rem;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Animationen auf Mobile deaktivieren (Performance) */
  .welcome__blob { animation: none; }
  .welcome__card { animation: none; }

  /* Welcome */
  .welcome__grid { grid-template-columns: 1fr; gap: 0; }
  .welcome__visual { height: 220px; margin-top: 2rem; }
  .welcome__blob { width: 200px; height: 200px; }
  .welcome__card--1 { top: 5%; left: 5%; }
  .welcome__card--2 { top: 40%; right: 5%; }
  .welcome__card--3 { bottom: 5%; left: 20%; }

  /* Services: 2 Spalten auf Mobile */
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .service-card { padding: 1.4rem 1rem; }
  .service-card__icon { width: 38px; height: 38px; margin-bottom: .8rem; }
  .service-card__title { font-size: 1.2rem; margin-bottom: .5rem; }
  .service-card__text { font-size: .82rem; margin-bottom: 1rem;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

  /* Kontakt-Karten: kompakter */
  .contact__cards { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .contact__card { padding: 1.2rem .8rem; gap: .5rem; }
  .contact__card-icon { width: 26px; height: 26px; margin-bottom: 0; }
  .contact__card-value { font-size: .88rem; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .footer { padding: 4rem 0 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
}

/* ── Klein-Mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { width: min(1180px, 100% - 2rem); }

  /* Sections */
  .welcome, .services, .about, .region, .contact { padding: 2.5rem 0; }

  /* Hero stats */
  .hero__stats { gap: 1rem; }
  .hero__stat-num { font-size: 1.5rem; }
  .hero__stat-sep { height: 26px; }

  /* Welcome */
  .welcome__card { font-size: .78rem; padding: .75rem .9rem; }
  .welcome__visual { height: 180px; }
  .welcome__blob { width: 160px; height: 160px; }

  /* Services: 2 Spalten bleiben, noch kompakter */
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .service-card { padding: 1.1rem .85rem; }
  .service-card__icon { width: 32px; height: 32px; margin-bottom: .6rem; }
  .service-card__title { font-size: 1.05rem; }
  .service-card__text { font-size: .78rem; -webkit-line-clamp: 2; }
  .service-card__link { font-size: .75rem; }

  /* Kontakt: horizontal als Liste */
  .contact__cards { grid-template-columns: 1fr; gap: .5rem; }
  .contact__card {
    flex-direction: row;
    text-align: left;
    padding: .9rem 1rem;
    gap: .8rem;
    justify-content: flex-start;
    align-items: center;
  }
  .contact__card-icon { width: 22px; height: 22px; margin: 0; flex-shrink: 0; }
  .contact__card-label { font-size: .62rem; text-align: left; }
  .contact__card-value { font-size: .88rem; text-align: left; }

  /* Buttons */
  .btn { padding: .9rem 1.8rem; min-height: 48px; }

  /* Footer: single col */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ═══ UNTERSEITEN ════════════════════════════════════════ */
.page-hero {
  padding: 5rem 0 4rem;
  background: var(--cream);
  border-bottom: 1px solid var(--rose-light);
  margin-top: 76px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.page-hero__title em { font-style: italic; color: var(--rose-dark); }
.page-hero__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.8;
}

.page-body {
  padding: 5rem 0;
  background: var(--white);
}
.page-body__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 5rem;
  align-items: start;
}
.page-text h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--charcoal);
  margin: 2.5rem 0 .8rem;
}
.page-text h2:first-child { margin-top: 0; }
.page-text p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.page-text ul { list-style: none; margin-bottom: 1.5rem; }
.page-text ul li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: .6rem;
}
.page-text ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose-dark);
  flex-shrink: 0;
  margin-top: .65rem;
}

.page-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid var(--rose-light);
}
.sidebar-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--rose-light);
}
.sidebar-contact__item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(74,122,90,.1);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.sidebar-contact__item:last-of-type { border-bottom: none; }
a.sidebar-contact__item:hover { color: var(--rose-dark); }
.sidebar-contact__item svg { width: 18px; height: 18px; color: var(--rose-dark); flex-shrink: 0; }
.sidebar-contact__label {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.sidebar-contact__value {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
}
.sidebar-hours {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rose-light);
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(74,122,90,.1);
  color: var(--text);
  font-size: .9rem;
  text-decoration: none;
  transition: var(--transition);
}
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover { color: var(--rose-dark); padding-left: .3rem; }
.sidebar-services a::before { content: '→'; font-size: .8rem; color: var(--rose-dark); }

/* Legal pages */
.legal-body {
  padding: 5rem 0;
  background: var(--white);
}
.legal-body__inner {
  max-width: 780px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--charcoal);
  margin: 2.5rem 0 .8rem;
}
.legal-body h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 1.5rem 0 .4rem;
}
.legal-body p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-body a { color: var(--rose-dark); }
.legal-body a:hover { text-decoration: underline; }
.legal-body ul { margin: .5rem 0 1rem 1.2rem; }
.legal-body ul li {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: .3rem;
  list-style: disc;
}

@media (max-width: 1024px) {
  .page-body__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-sidebar { position: static; }
  .page-hero { padding: 4rem 0 3rem; }
  .page-body { padding: 4rem 0; }
}
@media (max-width: 768px) {
  .page-hero { padding: 3rem 0 2rem; margin-top: 68px; }
  .page-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .page-body { padding: 3rem 0; }
  .page-text h2 { font-size: 1.5rem; }
  .legal-body { padding: 3rem 0; }
  .legal-body h2 { font-size: 1.3rem; margin: 2rem 0 .6rem; }
}
@media (max-width: 480px) {
  .page-hero { padding: 2.5rem 0 1.8rem; }
  .page-body { padding: 2.5rem 0; }
  .sidebar-card { padding: 1.4rem; }
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--rose-dark);
  padding: 1rem 2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 10000;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
}
.cookie-banner.visible { display: flex; }
.cookie-banner__text strong { font-size: 0.95rem; display: block; margin-bottom: 0.2rem; }
.cookie-banner__text p { font-size: 0.85rem; color: #666; margin: 0; }
.cookie-banner__text a { color: var(--rose-dark); }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-banner__btn { padding: 0.55rem 1.2rem; border-radius: 6px; border: none; cursor: pointer; font-size: 0.88rem; font-weight: 600; transition: opacity .2s; }
.cookie-banner__btn--accept { background: var(--rose-dark); color: #fff; }
.cookie-banner__btn--decline { background: #f0f0f0; color: #555; }
.cookie-banner__btn:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}
