/* =============================================
   Deutsch Kurzhaar vom Ondruper Berg
   Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-dark:   #473e35;
  --brown-mid:    #7a6855;
  --tan:          #d1baa2;
  --tan-light:    #e8d8c8;
  --cream:        #f7f3ef;
  --white:        #ffffff;
  --text:         #2c2420;
  --text-light:   #6b5e54;
  --accent:       #c4965a;
  --accent-hover: #b0833e;
  --shadow:       0 4px 24px rgba(71,62,53,.12);
  --shadow-lg:    0 8px 40px rgba(71,62,53,.18);
  --radius:       4px;
  --transition:   .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--brown-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { max-width: 68ch; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--tan   { background: var(--tan-light); }
.section--dark  { background: var(--brown-dark); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--tan); }

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
  display: block;
}

.section-title { margin-bottom: 1rem; }
.section-intro { font-size: 1.125rem; color: var(--text-light); margin-bottom: 2.5rem; max-width: 60ch; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,150,90,.35);
}
.btn--outline {
  background: transparent;
  color: var(--brown-dark);
  border-color: var(--brown-dark);
}
.btn--outline:hover {
  background: var(--brown-dark);
  color: var(--white);
}
.btn--outline-light {
  background: transparent;
  color: var(--tan);
  border-color: var(--tan);
}
.btn--outline-light:hover {
  background: var(--tan);
  color: var(--brown-dark);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  padding: .75rem 0;
  box-shadow: 0 2px 20px rgba(71,62,53,.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  transition: color var(--transition);
}
.nav__logo-sub {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tan);
  transition: color var(--transition);
}
.nav.scrolled .nav__logo-main { color: var(--brown-dark); }
.nav.scrolled .nav__logo-sub  { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--tan); }
.nav.scrolled .nav__links a { color: var(--brown-mid); }
.nav.scrolled .nav__links a:hover { color: var(--accent); }

.nav__links .btn--primary {
  font-size: .8rem;
  padding: .55rem 1.25rem;
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.scrolled .nav__toggle span { background: var(--brown-dark); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brown-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--cream);
}
.nav__mobile a:hover { color: var(--tan); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--tan);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(71,62,53,.65) 0%, rgba(71,62,53,.35) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
}
/* Fallback falls Bild nicht lädt */
.hero__bg--fallback { display: none; }
.hero__bg--fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #473e35 0%, #7a6855 40%, #c4965a 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 6rem;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.25rem;
  display: block;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--tan-light);
  margin-bottom: 1.5rem;
}
.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem;
  max-width: 55ch;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.hero__scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* =============================================
   FEATURES / INTRO STRIP
   ============================================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  background: var(--brown-dark);
}
.feature-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.feature-item:last-child { border-right: none; }
.feature-item__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
}
.feature-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--tan);
  margin-bottom: .35rem;
}
.feature-item__text {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  max-width: none;
}

/* =============================================
   DOG CARDS
   ============================================= */
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.dog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dog-card__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--tan) 0%, var(--brown-mid) 100%);
}
.dog-card__image--placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--tan) 0%, var(--brown-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.dog-card__body { padding: 2rem; }
.dog-card__role {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
  display: block;
}
.dog-card__name { margin-bottom: .75rem; }
.dog-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
  margin: 1.25rem 0;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
}
.dog-card__stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
}
.dog-card__stat-value {
  font-weight: 600;
  font-size: .9rem;
  color: var(--brown-dark);
}

/* =============================================
   LITTER CARDS
   ============================================= */
.litters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.litter-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.litter-card__header {
  background: var(--brown-dark);
  padding: 2rem;
  color: var(--cream);
}
.litter-card__header h3 { color: var(--tan); margin-bottom: .5rem; }
.litter-card__date {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
}
.litter-card__body { padding: 2rem; flex: 1; }
.litter-card__badge {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.badge--vergeben { background: #f0ebe5; color: var(--brown-mid); }
.badge--available { background: #e8f5e9; color: #2e7d32; }
.litter-card__details { display: flex; gap: 1.5rem; margin: 1rem 0; }
.litter-card__detail { text-align: center; }
.litter-card__detail-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.litter-card__detail-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 500px) { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 12px rgba(71,62,53,.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(71,62,53,.2);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(71,62,53,.35);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: .8;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 1rem .75rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.3); }
.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .875rem;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--tan-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: .2rem;
}
.contact-info__value {
  font-weight: 600;
  color: var(--brown-dark);
}
.contact-info__value a { color: var(--brown-dark); }
.contact-info__value a:hover { color: var(--accent); }

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .5rem;
}
.form-control {
  width: 100%;
  padding: .875rem 1rem;
  border: 1.5px solid var(--tan);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,150,90,.15);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: .15rem;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-check-label { font-size: .9rem; color: var(--text-light); }
.form-msg {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: .9rem;
  display: none;
}
.form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-msg.error   { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(160deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  color: var(--white);
}
.page-hero__eyebrow {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: .75rem;
  display: block;
}
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-top: .75rem;
}

/* =============================================
   DOG DETAIL PAGE
   ============================================= */
.dog-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) { .dog-detail { grid-template-columns: 1fr; gap: 2rem; } }

.dog-detail__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.dog-detail__image--placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--tan) 0%, var(--brown-mid) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.stats-table { width: 100%; margin: 1.5rem 0; border-collapse: collapse; }
.stats-table tr { border-bottom: 1px solid var(--tan-light); }
.stats-table td { padding: .6rem .25rem; font-size: .95rem; }
.stats-table td:first-child { color: var(--text-light); width: 45%; }
.stats-table td:last-child { font-weight: 600; color: var(--brown-dark); }

.achievement-list { margin: 1rem 0; }
.achievement-list li {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  padding: .35rem 0;
  font-size: .95rem;
}
.achievement-list li::before {
  content: '✦';
  color: var(--accent);
  font-size: .6rem;
  flex-shrink: 0;
}

/* =============================================
   PROVERB / QUOTE BLOCK
   ============================================= */
.quote-block {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--brown-dark);
}
.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--tan);
  max-width: 700px;
  margin: 0 auto .75rem;
  line-height: 1.4;
}
.quote-block cite {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
}

/* =============================================
   MAP
   ============================================= */
.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}
.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* =============================================
   SOCIAL LINKS
   ============================================= */
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  border: 1.5px solid var(--tan);
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brown-dark);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,.6);
  padding: 3rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--tan);
  margin-bottom: .5rem;
}
.footer__brand-sub {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.footer__desc { font-size: .875rem; max-width: none; line-height: 1.6; }

.footer__heading {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1rem;
}
.footer__links li { margin-bottom: .5rem; }
.footer__links a {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--tan); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--tan); }
.breadcrumb span { margin: 0 .4rem; }

/* =============================================
   UTILITY
   ============================================= */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1.25rem 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* =============================================
   WURF-SEITEN GRIDS
   ============================================= */
.grid-wurf-overview {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.grid-parents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .section { padding: 3.5rem 0; }
  .dogs-grid, .litters-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .lightbox__prev, .lightbox__next { display: none; }

  /* Wurf-Seiten: Übersicht über Text, Eltern untereinander */
  .grid-wurf-overview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .grid-parents {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* =============================================
   ABOUT GRID (Startseite)
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 4rem;
  align-items: start;
}
.about-grid__img {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  .about-grid__img {
    grid-row: auto;
    grid-column: 1;
  }
}
