/* ============================================================
   Labradore vom Steller See — Main Stylesheet
   Design: Luxury Organic · Cormorant + Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --cream:        #F8F4EC;
  --cream-dark:   #EDE5D2;
  --cream-deeper: #E0D5BE;
  --green:        #1E3A20;
  --green-mid:    #2C4A2E;
  --green-light:  #3D6640;
  --green-pale:   #EEF4EE;
  --gold:         #9A7B2F;
  --gold-light:   #C4A24A;
  --gold-pale:    #F5EDD6;
  --brown:        #6B4A2A;
  --text:         #1A1A1A;
  --text-mid:     #3D3D3D;
  --text-light:   #6B6B6B;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow:       0 4px 28px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 56px rgba(0,0,0,0.14);
  --shadow-gold:  0 8px 32px rgba(154,123,47,0.20);
  --radius:       6px;
  --radius-lg:    14px;
  --radius-xl:    24px;
  --transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant', serif;
  line-height: 1.18;
  color: var(--green);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem);     font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: 'Montserrat', sans-serif; letter-spacing: 0.02em; }

p { margin-bottom: 1rem; color: var(--text-light); font-weight: 300; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text-mid); }

/* --- Layout --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; position: relative; }
.section--alt { background: var(--cream); }
.section--green { background: var(--green); }

/* --- Section labels --- */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-title { margin-bottom: 1.25rem; }
.section-intro {
  font-size: 1rem;
  max-width: 620px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.9;
}
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.text-center .section-label::before { display: none; }
.text-center .section-label { padding-left: 0; }

/* --- Divider --- */
.divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 1.25rem 0 2.5rem;
  border-radius: 2px;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,58,32,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-dark:hover {
  background: var(--green);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 20px;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  padding: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav:not(.scrolled) .nav__inner {
  background: rgba(20,40,22,0.55);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
}

.nav__logo {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav__logo span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 1px;
}
.nav.scrolled .nav__logo { color: var(--green); }

.nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.nav__menu > li { position: relative; }
.nav__menu > li > a {
  display: block;
  padding: 24px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
}
.nav__menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 15px;
  right: 15px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__menu > li > a:hover::after,
.nav__menu > li > a.active::after { transform: scaleX(1); }
.nav.scrolled .nav__menu > li > a { color: var(--text-mid); }
.nav__menu > li > a:hover,
.nav__menu > li > a.active { color: var(--gold-light); }
.nav.scrolled .nav__menu > li > a:hover,
.nav.scrolled .nav__menu > li > a.active { color: var(--gold); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: -8px;
  background: var(--white);
  min-width: 230px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  list-style: none;
  padding: 10px 0;
  border-top: 2px solid var(--gold);
}
.nav__menu li:hover .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: all var(--transition);
}
.nav__dropdown li a:hover {
  color: var(--gold);
  background: var(--cream);
  padding-left: 26px;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav.scrolled .nav__toggle span { background: var(--green); }

@media (max-width: 900px) {
  .nav { padding: 12px 14px; }
  .nav__inner { padding: 0 16px; height: 60px; }
  .nav__logo { font-size: 1rem; max-width: calc(100% - 52px); }
  .nav__logo span { display: none; }
  .nav__toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-right: -8px;
  }
  .nav__menu {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(calc(-100% - 24px));
    transition: transform var(--transition), visibility var(--transition);
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }
  .nav__menu.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav__menu > li { width: 100%; }
  .nav__menu > li > a { color: var(--text); padding: 14px 28px; }
  .nav__menu > li > a::after { display: none; }
  .nav__dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--gold);
    margin: 0 28px 8px;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    border-radius: 0;
  }
  .nav__menu li.open .nav__dropdown { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 35%;
  z-index: 1;
  opacity: 0.5;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero__bg-img { transform: scale(1.0); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(16,32,18,0.82) 0%,
    rgba(16,32,18,0.45) 50%,
    rgba(16,32,18,0.65) 100%
  );
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 180px 28px 100px;
  width: 100%;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}
.hero__title {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 1.75rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.01em;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Wave bottom */
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}
.hero__wave svg { display: block; width: 100%; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  right: 48px;
  bottom: 80px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  animation: scrollPulse 2.5s ease infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.5; transform: translateY(0); }
  50%      { opacity: 1;   transform: translateY(6px); }
}

/* ============================================================
   SVG ICONS
   ============================================================ */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   ICON CARDS (Features / USPs)
   ============================================================ */
.icon-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  cursor: default;
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.icon-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
  color: var(--green);
  font-size: 1.5rem;
}
.icon-card:hover .icon-card__icon-wrap {
  background: var(--green);
  color: var(--white);
}
.icon-card__icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color var(--transition);
}
.icon-card__title {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}
.icon-card__text { font-size: 0.9rem; line-height: 1.8; }

/* Legacy: icon-card__icon (emoji fallback) */
.icon-card__icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }

/* ============================================================
   CARDS
   ============================================================ */
.cards { display: grid; gap: 28px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
}
.card__body { padding: 28px; }
.card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.card__title { font-size: 1.25rem; margin-bottom: 0.6rem; }
.card__text { font-size: 0.88rem; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  position: relative;
}
.card__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.card:hover .card__link::after { width: 100%; }
.card:hover .card__link { color: var(--gold); }

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__img { order: 2; }
.split--reverse .split__text { order: 1; }
.split__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  position: relative;
}
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--gold);
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}

/* ============================================================
   HIGHLIGHT STRIP
   ============================================================ */
.highlight-strip {
  background: var(--green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.highlight-strip::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.025);
  pointer-events: none;
}
.highlight-strip::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -50px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(154,123,47,0.06);
  pointer-events: none;
}
.highlight-strip h2 { color: var(--white); }
.highlight-strip p  { color: rgba(255,255,255,0.7); }
.highlight-strip .section-label { color: var(--gold-light); }
.highlight-strip .section-label::before { background: var(--gold-light); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.stat {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  transition: background var(--transition), transform var(--transition);
}
.stat:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.stat__number {
  font-family: 'Cormorant', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 44px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 6px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline__item { position: relative; margin-bottom: 2.5rem; }
.timeline__dot {
  position: absolute;
  left: -38px; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(154,123,47,0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.timeline__item:hover .timeline__dot {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(154,123,47,0.2);
}
.timeline__week {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem;
  display: flex; align-items: center; gap: 8px;
}
.timeline__title { margin-bottom: 0.4rem; font-size: 1.2rem; }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05); }
.accordion__item { border-bottom: 1px solid var(--cream-dark); }
.accordion__item:last-child { border-bottom: none; }
.accordion__header {
  width: 100%; background: var(--white); border: none;
  padding: 22px 28px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Cormorant', serif;
  font-size: 1.15rem; font-weight: 500; color: var(--green);
  transition: background var(--transition), color var(--transition);
}
.accordion__header:hover { background: var(--cream); }
.accordion__header.open { background: var(--cream); color: var(--gold); }
.accordion__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green); flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.accordion__header.open .accordion__icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.accordion__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--cream);
}
.accordion__body.open { max-height: 400px; padding: 4px 28px 24px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form { display: grid; gap: 20px; }
.form--2col { grid-template-columns: 1fr 1fr; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group--full { grid-column: 1 / -1; }
.form label {
  font-size: 0.72rem; font-weight: 700;
  color: var(--text-mid); letter-spacing: 0.1em; text-transform: uppercase;
}
.form input, .form select, .form textarea {
  padding: 14px 18px;
  border: 1px solid var(--cream-deeper);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,58,32,0.08);
}
.form textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--green);
  padding: 160px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center;
  opacity: 0.12; z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-label::before { background: var(--gold-light); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { background: var(--white); padding: 14px 0; border-bottom: 1px solid var(--cream-dark); }
.breadcrumb__list { display: flex; gap: 8px; list-style: none; font-size: 0.8rem; font-weight: 500; }
.breadcrumb__list li::after { content: '/'; margin-left: 8px; color: var(--cream-deeper); }
.breadcrumb__list li:last-child::after { display: none; }
.breadcrumb__list a { color: var(--green); }
.breadcrumb__list li:last-child { color: var(--text-light); }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.badge--green { background: var(--green-pale); color: var(--green); }
.badge--gold  { background: var(--gold-pale);  color: var(--gold); }
.badge--brown { background: rgba(107,74,42,0.08); color: var(--brown); }

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-top, .wave-bottom { display: block; width: 100%; line-height: 0; }
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111A12;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo {
  font-family: 'Cormorant', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--white); margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.footer__logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.5;
  margin-bottom: 1.25rem;
}
.footer p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 0; font-weight: 300; }
.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem; font-weight: 300;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer__contact-item {
  display: flex; align-items: flex-start;
  gap: 10px; margin-bottom: 0.8rem; font-size: 0.88rem; font-weight: 300;
}
.footer__contact-icon { margin-top: 1px; flex-shrink: 0; opacity: 0.6; font-size: 0.9rem; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 0.78rem; flex-wrap: wrap; gap: 12px;
  font-weight: 300; color: rgba(255,255,255,0.35);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
.mt-4 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
              transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg-img { transition: none; }
  .hero__scroll { animation: none; }
}

/* ============================================================
   HUNDE-PROFILE (Unsere Hunde)
   ============================================================ */
.hunde-section {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--cream-dark);
}
.hunde-section:first-of-type {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.dog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  align-items: start;
  transition: box-shadow var(--transition);
  margin-bottom: 48px;
  border: 1px solid rgba(0,0,0,0.04);
}
.dog-card:hover { box-shadow: var(--shadow-lg); }

.dog-card__img {
  background: var(--cream);
  overflow: hidden;
  position: sticky;
  top: 88px;
  align-self: start;
}
.dog-card__gallery {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
}
.dog-card__gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.dog-card__gallery img:first-child {
  border-radius: calc(var(--radius-xl) - 4px) calc(var(--radius-xl) - 4px) var(--radius) var(--radius);
}
.dog-card__gallery img:last-child {
  border-radius: var(--radius) var(--radius) calc(var(--radius-xl) - 4px) calc(var(--radius-xl) - 4px);
}
.dog-card:hover .dog-card__gallery img { transform: scale(1.015); }

.dog-card__body { padding: 44px 44px 44px 40px; }

.dog-card__name {
  font-family: 'Cormorant', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}
.dog-card__subtitle {
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.dog-card__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 1.5rem 0;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dog-meta-item {
  padding: 12px 14px;
  border-right: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  background: var(--white);
}
.dog-meta-item:nth-child(4n)   { border-right: none; }
.dog-meta-item:nth-last-child(-n+4) { border-bottom: none; }
.dog-meta-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}
.dog-meta-value {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}

.dog-card__tests {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 1rem 0;
  padding: 12px 14px;
  background: var(--green-pale);
  border-radius: var(--radius);
}

/* Stammbaum – Baumdiagramm */
.ptree-wrap {
  margin-top: 1.75rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ptree-wrap__header {
  background: var(--cream);
  padding: 12px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ptree-wrap__header::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 10px;
  border-left: 2px solid var(--gold);
  border-top: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  margin-right: 2px;
  opacity: 0.7;
}
.ptree-scroll {
  overflow-x: auto;
  padding: 20px 20px 16px;
  -webkit-overflow-scrolling: touch;
}
.ptree {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-width: 620px;
  gap: 28px;
  position: relative;
}
.ptree__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.ptree__col--0 { flex: 0 0 110px; justify-content: center; }
.ptree__col--1 { flex: 0 0 148px; }
.ptree__col--2 { flex: 0 0 158px; }
.ptree__col--3 { flex: 1 1 160px; }
.ptree__node {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 9px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
  position: relative;
}
.ptree__node--root {
  background: var(--green);
  border-color: var(--green);
  border-radius: var(--radius-lg);
  min-height: 72px;
  flex: 0 0 auto;
  align-self: center;
  width: 100%;
}
.ptree__node--root .ptree__name {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.ptree__node--root .ptree__role { color: rgba(255,255,255,0.55); }
.ptree__node--sire  { border-left: 2px solid #5B9BD5; }
.ptree__node--dam   { border-left: 2px solid #C48A4A; }
.ptree__node--ss    { border-left: 2px solid #5B9BD5; opacity: 0.9; }
.ptree__node--sd    { border-left: 2px solid #5B9BD5; opacity: 0.75; }
.ptree__node--ds    { border-left: 2px solid #C48A4A; opacity: 0.9; }
.ptree__node--dd    { border-left: 2px solid #C48A4A; opacity: 0.75; }
.ptree__node--ggp   { border-left: 1px solid var(--cream-dark); opacity: 0.85; }
.ptree__role {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}
.ptree__name {
  font-family: 'Cormorant', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
}
.ptree__col--3 .ptree__name {
  font-size: 0.8rem;
  color: var(--text-light);
}
.ptree__lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
}
.ptree-legend {
  display: flex;
  gap: 16px;
  padding: 8px 20px 12px;
  border-top: 1px solid var(--cream-dark);
}
.ptree-legend__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.ptree-legend__line {
  width: 18px;
  height: 2px;
  border-radius: 1px;
}
.ptree-legend__line--sire { background: #5B9BD5; }
.ptree-legend__line--dam  { background: #C48A4A; }

/* Persönliche Geschichte */
.dog-story {
  margin-top: 1.75rem;
  padding: 28px 28px 28px 32px;
  background: linear-gradient(135deg, var(--cream), var(--gold-pale));
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.dog-story::before {
  content: '\201C';
  font-family: 'Cormorant', serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: 10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.dog-story h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1rem;
}
.dog-story p { font-size: 0.9rem; line-height: 1.9; }
.dog-story p:last-child { margin-bottom: 0; }

/* --- Wurfplanung cards --- */
.wurf-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 56px;
}
.wurf-card__header {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.wurf-card--gold .wurf-card__header {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}
.wurf-card__title { color: var(--white); margin: 0; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.wurf-card__status {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
}
.wurf-card__status--aktiv { background: rgba(196,162,74,0.8); border-color: var(--gold-light); }
.wurf-card__body { padding: 40px; }
.wurf-card__body h3, .wurf-card__body h4 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.wurf-card__body ul { margin: 0 0 1rem 1.25rem; color: var(--text-light); }
.wurf-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 2rem 0 1rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--cream-dark);
}
.wurf-meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.wurf-meta-value { font-size: 1rem; color: var(--text); font-weight: 400; }
.parents {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 2rem;
}
.parent-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.parent-card__role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.parent-card__name {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  color: var(--green);
  line-height: 1.3;
}
.parents__x {
  font-size: 2rem;
  color: var(--gold);
  font-family: 'Cormorant', serif;
  text-align: center;
}
.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 1.5rem 0;
}
.puppy-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.puppy-card strong {
  display: block;
  color: var(--green);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.puppy-card span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- Kontakt --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: 1rem; }

/* --- Farbvererbung / Erbkrankheiten --- */
.accordion--diseases {
  margin-top: 2rem;
}
.accordion--diseases .accordion__body.open {
  max-height: 2000px;
}
.accordion--diseases .accordion__body p {
  margin: 0 0 1rem;
  color: var(--text-light);
  line-height: 1.7;
}
.accordion--diseases .accordion__body p:last-child {
  margin-bottom: 0;
}
.farb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 1.5rem;
}
.farb-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
}
.farb-card h4 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.farb-card ul { margin: 0 0 0 1.1rem; font-size: 0.9rem; color: var(--text-light); }

/* --- Ernährung packages --- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 2rem 0;
}
.package-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.package-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.package-card__price {
  font-family: 'Cormorant', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem !important;
}
.package-card ul {
  margin: 1rem 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split__img { order: 0; }
  .split--reverse .split__text { order: 0; }
  .farb-grid, .package-grid { grid-template-columns: 1fr 1fr; }
  .wurf-meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 70px; }
  .hero {
    min-height: auto;
    min-height: 85svh;
    align-items: center;
  }
  .hero__content { padding: 100px 24px 64px; }
  .dog-card { grid-template-columns: 1fr; }
  .dog-card__img { position: static; }
  .dog-card__meta { grid-template-columns: repeat(2, 1fr); }
  .dog-meta-item:nth-child(4n) { border-right: 1px solid var(--cream-dark); }
  .dog-meta-item:nth-child(2n) { border-right: none; }
  .dog-meta-item:nth-last-child(-n+4) { border-bottom: 1px solid var(--cream-dark); }
  .dog-meta-item:nth-last-child(-n+2) { border-bottom: none; }
  .dog-card__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    gap: 8px;
  }
  .dog-card__gallery img {
    border-radius: var(--radius);
  }
  .dog-card__name { font-size: 2rem; }
  .wurf-meta { grid-template-columns: repeat(2, 1fr); }
  .parents { grid-template-columns: 1fr; gap: 12px; }
  .parents__x { font-size: 1.5rem; padding: 4px 0; }
  .wurf-card__body { padding: 24px; }
  .wurf-card__header { padding: 24px; }
  .timeline { padding-left: 32px; }
  .timeline__dot { left: -26px; }
  .accordion__header { padding: 18px 20px; font-size: 1.05rem; }
  .accordion__body.open { padding: 4px 20px 20px; }
  .highlight-strip { padding: 60px 0; }
  .stat__number { font-size: 2.4rem; }
  .icon-card { padding: 32px 24px; }
  .contact-card { padding: 28px 24px; }
  .breadcrumb__list { flex-wrap: wrap; }

  /* Stammbaum: vertikal statt horizontal */
  .ptree-scroll {
    overflow-x: visible;
    padding: 16px 14px 12px;
  }
  .ptree {
    flex-direction: column;
    min-width: 0;
    gap: 1.25rem;
    align-items: stretch;
  }
  .ptree__lines { display: none; }
  .ptree__col {
    flex: none !important;
    width: 100%;
    display: grid;
    gap: 10px;
  }
  .ptree__col--0 { grid-template-columns: 1fr; }
  .ptree__col--1,
  .ptree__col--2 { grid-template-columns: repeat(2, 1fr); }
  .ptree__col--3 { grid-template-columns: 1fr; }
  .ptree__col--1::before {
    content: 'Eltern';
    grid-column: 1 / -1;
  }
  .ptree__col--2::before {
    content: 'Großeltern';
    grid-column: 1 / -1;
  }
  .ptree__col--3::before {
    content: 'Urgroßeltern';
    grid-column: 1 / -1;
  }
  .ptree__col--1::before,
  .ptree__col--2::before,
  .ptree__col--3::before {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 2px;
  }
  .ptree__node {
    min-height: auto;
    flex: none;
    padding: 12px 14px;
  }
  .ptree__node--root {
    width: 100%;
    align-self: stretch;
    padding: 18px 16px;
  }
  .ptree__node--root .ptree__name { font-size: 1.35rem; }
  .ptree__name { font-size: 0.92rem; }
  .ptree__col--3 .ptree__name { font-size: 0.88rem; }
  .ptree-legend {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 14px 14px;
  }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 108px 0 56px; }
  .hero__content { padding: 92px 20px 56px; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero__subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
  .dog-card__body { padding: 24px 20px; }
  .dog-card__meta { grid-template-columns: 1fr; }
  .dog-meta-item { border-right: none !important; }
  .dog-meta-item:not(:last-child) { border-bottom: 1px solid var(--cream-dark); }
  .dog-card__name { font-size: 1.75rem; }
  .dog-story { padding: 22px 20px 22px 24px; }
  .ptree__col--1,
  .ptree__col--2 { grid-template-columns: 1fr; }
  .ptree-wrap {
    margin-left: -20px;
    margin-right: -20px;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .farb-grid, .package-grid { grid-template-columns: 1fr; }
  .cards--3, .cards--2, .cards--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form--2col { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat { padding: 20px 12px; }
  .stat__number { font-size: 2rem; }
  .btn { padding: 14px 24px; }
  .section-intro { margin-bottom: 2rem; }
  .farb-card, .package-card { padding: 20px; }
  .section--green div[style*="flex"] {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .section--green .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    word-break: break-word;
  }
}

/* ============================================================
   WELPEN-ANFRAGE FORMULAR
   ============================================================ */
.inquiry-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.inquiry-sidebar {
  position: sticky;
  top: 100px;
}
.inquiry-info {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inquiry-info__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 400;
}
.inquiry-info__item svg { color: var(--gold); flex-shrink: 0; }
.inquiry-contact { margin-top: 2.5rem; }

.inquiry-form-wrap {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
}
.inquiry-form > p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

/* Section titles inside form */
.form-section-title {
  font-family: 'Cormorant', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green);
  margin: 2rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
  padding-left: 14px;
}
.form-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.form-field { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-label .required { color: var(--gold); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); font-weight: 300; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(154,123,47,0.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239A7B2F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 96px; line-height: 1.7; }

/* Checkboxes */
.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  user-select: none;
}
.form-checkbox-label:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}
.form-checkbox-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--green);
  cursor: pointer;
}
.form-checkbox-label input:checked + span { color: var(--green); }
.form-checkbox-label:has(input:checked) {
  border-color: var(--green);
  background: var(--green-pale);
  color: var(--green);
}

/* Radio buttons */
.form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.form-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  user-select: none;
}
.form-radio-label:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}
.form-radio-label input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: var(--green);
  cursor: pointer;
}
.form-radio-label:has(input:checked) {
  border-color: var(--green);
  background: var(--green-pale);
  color: var(--green);
}

/* Single checkbox (Datenschutz) */
.form-checkbox-single {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}
.form-checkbox-single input { margin-top: 2px; accent-color: var(--green); }
.form-checkbox-single a { color: var(--gold); text-decoration: underline; }

.form-error {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}

.form-actions {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success svg {
  color: var(--green);
  margin: 0 auto 1rem;
  display: block;
}
.form-success h3 { margin-bottom: 0.5rem; }

@media (max-width: 860px) {
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .inquiry-sidebar { position: static; }
  .inquiry-form-wrap { padding: 28px 24px; }
}
