/* ============================================================
   Salon Pfotentreff – Design-System
   Stil: Warm & natürlich (Beige / Salbei / Erdtöne)
   ============================================================ */

:root {
  --cream: #faf6f0;
  --sand: #f1e9dd;
  --sand-dark: #e5d9c7;
  --sage: #7d8f69;
  --sage-dark: #5f7050;
  --sage-light: #a9b795;
  --brown: #6b5442;
  --brown-dark: #4a3a2d;
  --ink: #3b332b;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(75, 58, 45, 0.08);
  --shadow-md: 0 8px 30px rgba(75, 58, 45, 0.12);
  --shadow-lg: 0 16px 50px rgba(75, 58, 45, 0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown-dark);
}

img { max-width: 100%; display: block; }

a { color: var(--sage-dark); }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand-dark);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.brand span {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brown-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: var(--transition);
}

.main-nav a:hover { background: var(--sand); }

.main-nav a.active {
  background: var(--sage);
  color: var(--white);
}

.main-nav a.nav-cta {
  background: var(--brown);
  color: var(--white);
  margin-left: 0.4rem;
}

.main-nav a.nav-cta:hover { background: var(--brown-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--brown-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: var(--brown);
  color: var(--brown);
  background: transparent;
}

.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--brown-dark);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero .eyebrow,
.eyebrow {
  display: inline-block;
  background: var(--sand);
  color: var(--sage-dark);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero p {
  font-size: 1.12rem;
  color: #5d5348;
  margin-bottom: 2rem;
  max-width: 46ch;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-figure { position: relative; }

.hero-figure::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 65%;
  height: 65%;
  background: var(--sage-light);
  opacity: 0.35;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  z-index: 0;
}

.hero-figure img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: -18px;
  left: -18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-badge .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6fbf73;
  box-shadow: 0 0 0 4px rgba(111, 191, 115, 0.25);
}

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }

.section-alt { background: var(--sand); }

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head.center { margin-inline: auto; text-align: center; }

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.section-head p { color: #5d5348; font-size: 1.08rem; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body { padding: 1.6rem; flex: 1; }

.card-body h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }

.card-body p { color: #5d5348; font-size: 0.98rem; }

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}

/* ---------- Preise ---------- */
.price-list {
  display: grid;
  gap: 1.1rem;
  max-width: 780px;
  margin-inline: auto;
}

.price-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.price-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }

.price-item h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }

.price-item p { font-size: 0.92rem; color: #6d6257; }

.price-tag {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sage-dark);
  white-space: nowrap;
}

.price-note {
  max-width: 780px;
  margin: 2rem auto 0;
  background: var(--sand);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
}

/* ---------- Info-Banner (Aktuelles) ---------- */
.notice {
  background: linear-gradient(120deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.notice h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 0.3rem; }

.notice p { opacity: 0.95; }

/* ---------- Split (Text + Bild) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split.reverse > .split-figure { order: -1; }

.split-figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
}

.split h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; }

.split p { color: #5d5348; margin-bottom: 1rem; }

.check-list { list-style: none; margin: 1.2rem 0 1.8rem; }

.check-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 0.2rem;
}

/* ---------- Galerie ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.gallery-grid figure {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img { transform: scale(1.06); }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 { font-size: 1.4rem; margin-bottom: 1.4rem; }

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.contact-row .ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-row strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #857866; }

.contact-row a { text-decoration: none; font-weight: 700; color: var(--brown-dark); }

.contact-row a:hover { color: var(--sage-dark); }

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brown) 0%, var(--brown-dark) 100%);
  border-radius: var(--radius);
  padding: 3.2rem 2.5rem;
  text-align: center;
  color: var(--white);
}

.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 0.8rem; }

.cta-band p { opacity: 0.9; margin-bottom: 1.8rem; max-width: 55ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-dark);
  color: #d9cfc2;
  padding: 3.5rem 0 1.5rem;
  margin-top: 4.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 1rem; }

.site-footer ul { list-style: none; }

.site-footer li { margin-bottom: 0.5rem; }

.site-footer a { color: #d9cfc2; text-decoration: none; transition: var(--transition); }

.site-footer a:hover { color: var(--white); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-brand img { width: 48px; height: 48px; border-radius: 50%; }

.footer-brand span {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  font-size: 0.88rem;
  text-align: center;
  opacity: 0.75;
}

/* ---------- Scroll-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   3D-Effekte
   ============================================================ */

/* --- Hero-3D-Canvas (Three.js) --- */
.hero { position: relative; }

#hero3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero > .container { position: relative; z-index: 1; }

/* --- 3D-Tilt-Karten --- */
.tilt3d {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.25s ease-out, box-shadow 0.3s ease;
  position: relative;
}

.tilt3d::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--glare-x, 50%) var(--glare-y, 50%),
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.tilt3d:hover::after { opacity: 1; }

.card.tilt3d:hover,
.price-item.tilt3d:hover { box-shadow: var(--shadow-lg); }

.card.tilt3d .card-body,
.card.tilt3d img { transform: translateZ(24px); }

.price-item.tilt3d > div,
.price-item.tilt3d .price-tag { transform: translateZ(18px); }

/* Tilt überschreibt Hover-Verschiebungen */
.price-item.tilt3d:hover { transform: none; }
.card.tilt3d:hover { transform: none; }

/* --- Parallax --- */
[data-parallax] {
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

.split-figure[data-parallax] img,
.hero-figure[data-parallax] img { transition: none; }

/* --- Schwebende Pfoten --- */
.page-hero { position: relative; overflow: hidden; }

.page-hero > .container { position: relative; z-index: 1; }

.float-paw {
  position: absolute;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
  animation: pawFloat 10s ease-in-out infinite;
}

@keyframes pawFloat {
  0%, 100% { translate: 0 0; }
  25% { translate: 8px -18px; }
  50% { translate: -6px -30px; }
  75% { translate: -12px -12px; }
}

/* --- Schwebendes Hero-Badge --- */
.hero-badge {
  animation: badgeFloat 5s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* --- 3D-Button-Press --- */
.btn:active { transform: translateY(1px) scale(0.98); }

@media (prefers-reduced-motion: reduce) {
  .float-paw, .hero-badge { animation: none; }
  .tilt3d { transition: none; }
}

/* ============================================================
   Bilder-Upgrade: Blob-Masken
   ============================================================ */
.split-figure img,
.hero-figure img {
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  animation: blobMorph 14s ease-in-out infinite alternate;
}

@keyframes blobMorph {
  0%   { border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%; }
  33%  { border-radius: 45% 55% 48% 52% / 55% 45% 58% 42%; }
  66%  { border-radius: 52% 48% 42% 58% / 45% 52% 48% 55%; }
  100% { border-radius: 48% 52% 58% 42% / 52% 48% 55% 45%; }
}

.contact-mood {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 55% 45% 50% 50% / 48% 55% 45% 52%;
  animation: blobMorph 14s ease-in-out infinite alternate;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   Verspielte Details
   ============================================================ */

/* --- Pfoten-Cursor --- */
@media (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><g fill='%236b5442'><ellipse cx='14' cy='18' rx='6' ry='5'/><circle cx='6.5' cy='12' r='2.6'/><circle cx='11' cy='8' r='2.6'/><circle cx='17' cy='8' r='2.6'/><circle cx='21.5' cy='12' r='2.6'/></g></svg>") 14 14, auto;
  }
  a, button, .btn, [role="button"] {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><g fill='%237d8f69' stroke='%23ffffff' stroke-width='1'><ellipse cx='14' cy='18' rx='6' ry='5'/><circle cx='6.5' cy='12' r='2.6'/><circle cx='11' cy='8' r='2.6'/><circle cx='17' cy='8' r='2.6'/><circle cx='21.5' cy='12' r='2.6'/></g></svg>") 14 14, pointer;
  }
}

/* --- Pfotenspur (Cursor-Trail) --- */
.paw-print {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  font-size: 1.1rem;
  opacity: 0.5;
  animation: pawFade 1.1s ease-out forwards;
}

@keyframes pawFade {
  0% { opacity: 0.5; scale: 1; }
  100% { opacity: 0; scale: 0.6; }
}

/* --- Sticky "Termin buchen"-Button --- */
.fab-book {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--brown);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  translate: 0 20px;
  pointer-events: none;
  transition: opacity 0.35s ease, translate 0.35s ease, background 0.3s ease;
}

.fab-book.show { opacity: 1; translate: 0 0; pointer-events: auto; }

.fab-book:hover { background: var(--sage-dark); }

.fab-book::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 2px solid var(--sage);
  animation: fabPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes fabPulse {
  0% { opacity: 0.7; scale: 1; }
  70%, 100% { opacity: 0; scale: 1.18; }
}

/* --- Scroll-Fortschrittsbalken --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: 0 4px 4px 0;
}

@media (prefers-reduced-motion: reduce) {
  .split-figure img, .hero-figure img, .contact-mood { animation: none; }
  .paw-print { display: none; }
  .fab-book::before { animation: none; }
}

/* ============================================================
   Scrollytelling: 3D-Hund "Bello"
   ============================================================ */
.scrolly {
  position: relative;
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 18%, var(--cream) 82%, var(--sand) 100%);
}

.scrolly-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

#dog3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scrolly-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  translate: -50% 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown-dark);
  box-shadow: var(--shadow-sm);
  animation: badgeFloat 3s ease-in-out infinite;
  pointer-events: none;
}

.scrolly-steps {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
  margin-top: -100dvh;
}

.scrolly-step {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  width: min(1140px, 92%);
  margin-inline: auto;
  pointer-events: none;
}

/* Karten abwechselnd links / rechts */
.scrolly-step:nth-child(odd) { justify-content: flex-start; }
.scrolly-step:nth-child(even) { justify-content: flex-end; }

.scrolly-card {
  pointer-events: auto;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.8rem 2rem;
  opacity: 0;
  translate: 0 34px;
  transition: opacity 0.6s ease, translate 0.6s ease;
}

.scrolly-card.active { opacity: 1; translate: 0 0; }

.scrolly-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

.scrolly-card p { color: #5d5348; font-size: 0.98rem; }

.scrolly-card .eyebrow { margin-bottom: 0.8rem; }

.scrolly-price {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sage-dark);
  background: var(--sand);
  padding: 0.25rem 1rem;
  border-radius: 999px;
}

@media (max-width: 700px) {
  .scrolly-step { align-items: flex-end; padding-bottom: 4.5rem; }
  .scrolly-step:nth-child(odd),
  .scrolly-step:nth-child(even) { justify-content: center; }
  .scrolly-card { max-width: 100%; padding: 1.4rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .scrolly-card { opacity: 1; translate: 0 0; transition: none; }
  .scrolly-hint { animation: none; }
}

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  background: var(--sand);
  padding: 3.5rem 0;
  text-align: center;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 0.8rem; }

.page-hero p { max-width: 62ch; margin-inline: auto; color: #5d5348; font-size: 1.08rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse > .split-figure { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3rem 0; }
  .section { padding: 3.2rem 0; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 4%;
    gap: 0.3rem;
    border-bottom: 1px solid var(--sand-dark);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .main-nav.open { display: flex; }

  .main-nav a { display: block; text-align: center; padding: 0.8rem; }

  .main-nav a.nav-cta { margin-left: 0; }

  .price-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .notice { padding: 1.6rem; }
}
