/* ═══════════════════════════════════════════════
   Pfotenzauber Xtra – Stylesheet
   ═══════════════════════════════════════════════ */

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

/* ── Tokens ── */
:root {
  --sand:      #f7f2ea;
  --sand-mid:  #ede5d5;
  --sand-dark: #ddd0b8;
  --terra:     #c07840;
  --terra2:    #a06030;
  --forest:    #4a7c59;
  --forest2:   #38613f;
  --brown:     #3d2b1f;
  --brown-mid: #6b4c35;
  --text:      #2e2018;
  --muted:     #7a6150;
  --white:     #ffffff;
  --nav-h:     74px;
  --r:         8px;
  --t:         0.26s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 18px; }
body  { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--sand); line-height: 1.7; }
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ── Layout ── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section      { padding: 96px 0; }
.section-sand { background: var(--sand-mid); }
.section-dark { background: var(--brown); color: var(--white); }
.section-forest { background: var(--forest); color: var(--white); }

/* ── Typography ── */
.display       { font-family: 'Playfair Display', serif; line-height: 1.1; color: var(--brown); }
.display-light { color: var(--white); }
.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--terra); display: block; margin-bottom: 14px;
}
.eyebrow-light { color: #f7c88a; }
.wavy-rule { width: 56px; height: 3px; background: linear-gradient(90deg, var(--terra), var(--forest)); border-radius: 2px; margin: 20px 0 28px; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 14px 36px;
  font-family: 'Nunito', sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 50px; border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  line-height: 1;
}
.btn-terra        { background: var(--terra); color: var(--white); border-color: var(--terra); }
.btn-terra:hover  { background: var(--terra2); border-color: var(--terra2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,120,64,.3); }
.btn-forest       { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-forest:hover { background: var(--forest2); border-color: var(--forest2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(74,124,89,.3); }
.btn-outline      { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { background: var(--white); color: var(--brown); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--terra); border-color: var(--terra); }
.btn-outline-dark:hover { background: var(--terra); color: var(--white); }

/* ── Animations ── */
.fade   { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-l { opacity: 0; transform: translateX(-28px); transition: opacity .6s ease, transform .6s ease; }
.fade-r { opacity: 0; transform: translateX(28px);  transition: opacity .6s ease, transform .6s ease; }
.fade.up, .fade-l.up, .fade-r.up { opacity: 1; transform: none; }

/* ══════════════════ TOPBAR ══════════════════ */
.topbar { background: var(--brown); color: rgba(255,255,255,.6); font-size: .76rem; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; align-items: center; }
.topbar a { color: #f7c88a; transition: color var(--t); }
.topbar a:hover { color: var(--white); }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ══════════════════ NAV ══════════════════ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); border-bottom: 2px solid var(--sand-mid);
  height: var(--nav-h); transition: box-shadow var(--t);
}
nav.scrolled { box-shadow: 0 4px 24px rgba(61,43,31,.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--brown); }
.nav-logo .paw { font-size: 1.5rem; }
.nav-logo em   { font-style: italic; color: var(--terra); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: color var(--t);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--terra); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .btn-terra { padding: 10px 22px; font-size: .72rem; }
.nav-links .btn-terra::after { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════ HERO ══════════════════ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background:
    linear-gradient(160deg, rgba(61,43,31,.75) 0%, rgba(61,43,31,.35) 55%, rgba(61,43,31,.65) 100%),
    url('../images/hero/hero.jpg') center/cover no-repeat;
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; background: linear-gradient(transparent, var(--sand)); pointer-events: none;
}
.hero-content { max-width: 660px; position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: 8px 18px;
  font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #f7c88a; margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.08;
  color: var(--white); margin-bottom: 24px; text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.hero h1 em { font-style: italic; color: #f7c88a; }
.hero-sub { font-size: 1.05rem; font-weight: 400; color: rgba(255,255,255,.82); margin-bottom: 44px; max-width: 520px; line-height: 1.75; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 500; }
.hero-trust-item .icon { font-size: 1.1rem; }

/* ══════════════════ USP BAND ══════════════════ */
.usp-band { background: var(--white); }
.usp-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.usp-item { padding: 36px 28px; text-align: center; border-right: 1px solid var(--sand-mid); transition: background var(--t); }
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: var(--sand); }
.usp-icon { font-size: 2.2rem; margin-bottom: 12px; }
.usp-item h4 { font-family: 'Playfair Display',serif; font-size: 1.05rem; color: var(--brown); margin-bottom: 6px; }
.usp-item p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════ ÜBER UNS ══════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-imgs { position: relative; }
.about-img-main { width: 100%; height: 500px; object-fit: cover; border-radius: var(--r); }
.about-img-accent {
  position: absolute; bottom: -32px; right: -28px;
  width: 46%; height: 260px; object-fit: cover; border-radius: var(--r);
  border: 5px solid var(--white); box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.about-since {
  position: absolute; top: 24px; left: -20px;
  background: var(--terra); color: var(--white);
  padding: 16px 20px; border-radius: var(--r); text-align: center;
  box-shadow: 0 8px 24px rgba(192,120,64,.35);
}
.about-since .num { font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-since .lbl { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; opacity: .9; margin-top: 2px; }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 6px; }
.about-text p  { color: var(--muted); margin-bottom: 16px; }
.about-checks  { margin: 24px 0; }
.check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.check-icon { width: 22px; height: 22px; flex-shrink: 0; background: var(--forest); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-icon::after { content: '✓'; font-size: .65rem; color: var(--white); font-weight: 700; }
.check span { font-size: 1rem; color: var(--text); }

/* ══════════════════ LEISTUNGEN ══════════════════ */
.leist-head { text-align: center; margin-bottom: 56px; }
.leist-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.leist-head p  { color: var(--muted); max-width: 560px; margin: 16px auto 0; }
.leist-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.leist-card { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--sand-mid); transition: box-shadow var(--t), transform var(--t); }
.leist-card:hover { box-shadow: 0 12px 36px rgba(61,43,31,.12); transform: translateY(-4px); }
.leist-card-img { position: relative; }
.leist-card-img img { width: 100%; height: 210px; object-fit: cover; }
.leist-badge { position: absolute; top: 14px; left: 14px; background: var(--terra); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; }
.leist-card-body { padding: 28px 24px; }
.leist-card-body h3 { font-family: 'Playfair Display',serif; font-size: 1.25rem; color: var(--brown); margin-bottom: 10px; }
.leist-card-body p  { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.leist-includes { display: flex; flex-wrap: wrap; gap: 6px; }
.leist-tag { background: var(--sand); color: var(--muted); font-size: .68rem; font-weight: 600; letter-spacing: .08em; padding: 4px 10px; border-radius: 50px; }

/* ══════════════════ ZUHAUSE ══════════════════ */
.zuhause-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.zuhause-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.zuhause-text p  { color: var(--muted); margin-bottom: 16px; }
.zuhause-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; gap: 8px; }
.zuhause-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.zuhause-mosaic .span2 { grid-column: span 2; }

/* ══════════════════ PREISE ══════════════════ */
.preise-head { text-align: center; margin-bottom: 56px; }
.preise-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.preise-head p  { color: var(--muted); max-width: 520px; margin: 16px auto 0; }
.preise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.preis-card { background: var(--white); border-radius: var(--r); border: 2px solid var(--sand-mid); overflow: hidden; transition: box-shadow var(--t), transform var(--t); }
.preis-card:hover { box-shadow: 0 12px 36px rgba(61,43,31,.1); transform: translateY(-4px); }
.preis-card.highlight { border-color: var(--terra); }
.preis-card-head { background: var(--sand-mid); padding: 28px 28px 20px; text-align: center; }
.preis-card.highlight .preis-card-head { background: var(--terra); }
.preis-animal { font-size: 2rem; margin-bottom: 8px; }
.preis-card-head h3 { font-family: 'Playfair Display',serif; font-size: 1.3rem; color: var(--brown); margin-bottom: 4px; }
.preis-card.highlight .preis-card-head h3 { color: var(--white); }
.preis-card-head .sub { font-size: .8rem; color: var(--muted); }
.preis-card.highlight .preis-card-head .sub { color: rgba(255,255,255,.75); }
.preis-badge { display: inline-block; background: var(--forest); color: var(--white); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 8px; }
.preis-card-body { padding: 24px 28px; }
.preis-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--sand-mid); font-size: .95rem; }
.preis-row:last-of-type { border-bottom: none; }
.preis-row .name  { color: var(--text); }
.preis-row .price { color: var(--terra); font-weight: 700; }
.preis-note { font-size: .76rem; color: var(--muted); margin-top: 12px; font-style: italic; }

/* ══════════════════ ABLAUF ══════════════════ */
.ablauf-head { text-align: center; margin-bottom: 64px; }
.ablauf-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.ablauf-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.ablauf-steps::before {
  content: ''; position: absolute;
  top: 40px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--terra), var(--forest)); z-index: 0;
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--terra);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display',serif; font-size: 1.6rem; font-weight: 700; color: var(--terra);
  box-shadow: 0 4px 16px rgba(192,120,64,.2);
}
.step-icon { font-size: 1.8rem; margin-bottom: 16px; }
.step h4 { font-family: 'Playfair Display',serif; font-size: 1.05rem; color: var(--brown); margin-bottom: 8px; }
.step p   { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════ GALERIE ══════════════════ */
.galerie-head { text-align: center; margin-bottom: 48px; }
.galerie-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 220px 220px;
  gap: 8px;
}
.gal-item { position: relative; overflow: hidden; border-radius: 6px; cursor: zoom-in; background: var(--sand-mid); }
.gal-item.wide { grid-column: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay { position: absolute; inset: 0; background: rgba(61,43,31,0); display: flex; align-items: center; justify-content: center; border-radius: 6px; transition: background .3s; }
.gal-item:hover .gal-overlay { background: rgba(61,43,31,.42); }
.gal-zoom { font-size: 2rem; color: var(--white); opacity: 0; transform: scale(.6); transition: opacity .3s, transform .3s; }
.gal-item:hover .gal-zoom { opacity: 1; transform: scale(1); }

/* ══════════════════ LIGHTBOX ══════════════════ */
#lightbox { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
#lightbox.open { display: flex; }
#lb-bg { position: absolute; inset: 0; background: rgba(8,5,2,.95); cursor: zoom-out; animation: lbin .2s ease; }
@keyframes lbin { from{opacity:0} to{opacity:1} }
#lb-box { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; animation: lbpop .25s ease; }
@keyframes lbpop { from{opacity:0;transform:scale(.92)} to{opacity:1;transform:scale(1)} }
#lb-box img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 6px; display: block; box-shadow: 0 24px 64px rgba(0,0,0,.6); }
#lb-caption { text-align: center; color: rgba(255,255,255,.55); font-size: .82rem; margin-top: 12px; font-family: 'Playfair Display',serif; font-style: italic; }
#lb-counter { text-align: center; color: rgba(255,255,255,.3); font-size: .72rem; letter-spacing: .14em; margin-top: 4px; }
#lb-close { position: fixed; top: 20px; right: 24px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: var(--white); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t); }
#lb-close:hover { background: var(--terra); border-color: var(--terra); }
#lb-prev, #lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: var(--white); width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t), transform var(--t); }
#lb-prev { left: 20px; } #lb-next { right: 20px; }
#lb-prev:hover, #lb-next:hover { background: var(--terra); border-color: var(--terra); transform: translateY(-50%) scale(1.06); }

/* ══════════════════ TESTIMONIALS ══════════════════ */
.testi-head { text-align: center; margin-bottom: 52px; }
.testi-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--white); border-radius: var(--r); padding: 36px 28px; position: relative; border: 1px solid var(--sand-mid); transition: box-shadow var(--t); }
.testi-card:hover { box-shadow: 0 8px 28px rgba(61,43,31,.1); }
.testi-card::before { content: '\201C'; font-family: 'Playfair Display',serif; font-size: 6rem; line-height: 1; color: var(--terra); opacity: .15; position: absolute; top: 8px; left: 20px; }
.testi-pet { font-size: 1.4rem; margin-bottom: 8px; }
.testi-stars { color: var(--terra); font-size: .85rem; margin-bottom: 14px; }
.testi-text { font-size: 1rem; font-style: italic; color: var(--brown-mid); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; font-family: 'Playfair Display',serif; }
.testi-author { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.testi-pet-name { font-size: .78rem; color: var(--terra); font-weight: 600; margin-top: 2px; }

/* ══════════════════ FAQ ══════════════════ */
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.faq-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.faq-text p  { color: var(--muted); margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border-radius: var(--r); border: 1px solid var(--sand-mid); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-family: 'Nunito',sans-serif; font-size: 1rem; font-weight: 700; color: var(--brown); text-align: left; transition: color var(--t); }
.faq-q:hover { color: var(--terra); }
.faq-q .arrow { font-size: 1.1rem; color: var(--terra); flex-shrink: 0; margin-left: 12px; transition: transform var(--t); }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 20px; font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════ KONTAKT ══════════════════ */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; }
.kontakt-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.kontakt-info p  { color: var(--muted); margin-bottom: 32px; }
.kontakt-block { margin-bottom: 22px; }
.kontakt-block strong { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--terra); display: block; margin-bottom: 5px; }
.kontakt-block span, .kontakt-block a { font-size: 1rem; color: var(--text); }
.kontakt-block a:hover { color: var(--terra); }
.hours-table { width: 100%; font-size: .95rem; }
.hours-table td { padding: 5px 0; color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--text); font-weight: 600; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--sand-dark); background: var(--white);
  font-family: 'Nunito',sans-serif; font-size: 1rem; color: var(--text);
  border-radius: var(--r); outline: none;
  transition: border-color var(--t), background var(--t);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--terra); background: var(--sand); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .76rem; color: var(--muted); }
.form-success { display: none; padding: 14px 18px; background: #edf7ed; border-left: 3px solid var(--forest); color: var(--forest2); font-size: .95rem; border-radius: var(--r); margin-top: 12px; }

/* ══════════════════ FOOTER ══════════════════ */
footer { background: var(--brown); color: rgba(255,255,255,.55); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Playfair Display',serif; font-size: 1.5rem; color: var(--white); margin-bottom: 14px; }
.footer-logo em { font-style: italic; color: #f7c88a; }
.footer-brand p { font-size: 1rem; line-height: 1.7; }
footer h5 { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #f7c88a; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a  { font-size: 1rem; transition: color var(--t); }
.footer-links a:hover { color: #f7c88a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: .78rem; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.4); margin-left: 16px; }
.footer-bottom a:hover { color: #f7c88a; }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 960px) {
  .about-grid, .zuhause-layout, .faq-layout, .kontakt-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-img-main { height: 340px; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp-item:nth-child(2) { border-right: none; }
  .leist-grid, .preise-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item.wide { grid-column: span 1; }
  .gal-item { height: 200px; }
  .ablauf-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ablauf-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .zuhause-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--sand-mid); padding: 20px 28px 28px; gap: 18px; box-shadow: 0 8px 24px rgba(61,43,31,.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.4rem; }
  .leist-grid, .preise-grid, .testi-grid { grid-template-columns: 1fr; }
  .ablauf-steps { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid var(--sand-mid); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .section { padding: 64px 0; }
  #lb-prev { left: 8px; } #lb-next { right: 8px; }
  .zuhause-mosaic { grid-template-columns: 1fr; }
  .zuhause-mosaic .span2 { grid-column: span 1; }
}
