/* =====================================================
   Marcos Dog Academy — warm, organic, editorial
   ===================================================== */

:root {
  /* Palette */
  --forest:      #2f3d31;
  --forest-deep: #243027;
  --moss:        #4f6b4d;
  --sage:        #8a9a6b;
  --sand:        #f4ecdc;
  --cream:       #faf5ea;
  --paper:       #fbf8f1;
  --terracotta:  #bf6b3c;
  --terracotta-d:#a4572d;
  --ochre:       #d99a4e;
  --ink:         #2c2620;
  --ink-soft:    #574e44;
  --line:        rgba(47,61,49,.14);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-script:  "Caveat", cursive;

  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 50px -24px rgba(36,48,39,.45);
  --shadow-card: 0 24px 60px -32px rgba(36,48,39,.5);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .25vw, 1.075rem);
  overflow-x: clip; /* kappt das ausgeklappte Off-Canvas-Menü ohne Body zum Scroll-Container zu machen (clip != hidden) */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.08; margin: 0; font-family: var(--font-display); font-weight: 600; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

/* grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  letter-spacing: .01em; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn--primary { background: var(--terracotta); color: var(--cream); box-shadow: 0 12px 28px -12px rgba(191,107,60,.7); }
.btn--primary:hover { background: var(--terracotta-d); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(191,107,60,.75); }
.btn--ghost { background: transparent; color: var(--forest); border-color: rgba(47,61,49,.3); }
.btn--ghost:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--forest-deep); }
.btn--cream:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--block { width: 100%; }

/* ---------- Typographic helpers ---------- */
.kicker {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: .22em;
  font-size: .74rem; font-weight: 700; color: var(--terracotta-d); margin: 0 0 .9rem;
}
.kicker--light { color: var(--ochre); }
.section-title { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); letter-spacing: -.015em; color: var(--forest-deep); }
.section-title--light { color: var(--cream); }
.u-accent { color: var(--terracotta); font-style: italic; }
.lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); color: var(--ink-soft); }
.lead--light { color: rgba(250,245,234,.85); }
.section { padding: clamp(4rem, 3rem + 6vw, 8rem) 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 4vw, 4rem); text-align: center; }
.section-sub { color: var(--ink-soft); margin: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(251,248,241,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, padding .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(36,48,39,.5); }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--forest-deep); }
.brand__mark { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest); color: var(--cream); box-shadow: var(--shadow-soft); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em; }
.brand__text em { font-family: var(--font-script); font-style: normal; font-size: 1.15rem; color: var(--terracotta-d); margin-top: 2px; }

.nav { display: flex; align-items: center; }
.nav__menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__menu a { font-weight: 600; font-size: .96rem; color: var(--forest-deep); position: relative; padding: .3rem 0; }
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--terracotta); transition: width .3s var(--ease);
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__menu a.nav__cta { background: var(--forest); color: #fff; padding: .55rem 1.25rem; border-radius: 999px; transition: background .25s, transform .25s; }
.nav__menu a.nav__cta:hover { background: var(--forest-deep); color: #fff; transform: translateY(-1px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--forest-deep); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(4rem, 3rem + 8vw, 9rem) 0 clamp(3.5rem, 7vw, 7rem); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 60% at 78% 12%, rgba(217,154,78,.30), transparent 60%),
    radial-gradient(55% 55% at 12% 88%, rgba(138,154,107,.32), transparent 60%),
    radial-gradient(80% 80% at 50% 0%, rgba(191,107,60,.10), transparent 55%),
    linear-gradient(180deg, var(--sand), var(--paper));
}
.hero__inner { width: min(100% - 2.5rem, 1120px); margin-inline: auto; text-align: center; }
.hero__eyebrow {
  display: inline-block; font-weight: 600; letter-spacing: .04em; color: var(--moss);
  background: rgba(255,255,255,.6); border: 1px solid var(--line);
  padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.6rem; font-size: .9rem;
}
.hero__title { font-size: clamp(2.8rem, 1.6rem + 6vw, 6rem); letter-spacing: -.025em; color: var(--forest-deep); }
.hero__title span { display: block; }
.hero__script {
  font-family: var(--font-script); font-weight: 600; color: var(--terracotta);
  font-size: clamp(2rem, 1.2rem + 4vw, 4rem); letter-spacing: 0; margin-top: .1em; line-height: 1.05;
}
.hero__lead { max-width: 640px; margin: 1.8rem auto 0; }
.hero__lead strong { color: var(--forest-deep); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2rem; }
.hero__stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.2rem, 4vw, 3.5rem);
  margin-top: 3.2rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--forest-deep); }
.hero__stats span { font-size: .9rem; color: var(--ink-soft); }

/* Inhaber-Porträt im Hero */
.hero__portrait { margin: 2.2rem auto 0; max-width: 320px; position: relative; }
.hero__portrait img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  aspect-ratio: 4/5; object-fit: cover; object-position: center top;
}
.hero__portrait figcaption { margin-top: .9rem; }

/* Zweispaltiges Hero ab Desktop: Text links, Porträt rechts */
@media (min-width: 901px) {
  .hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(2rem, 4.5vw, 4.5rem); text-align: left; }
  .hero__content { text-align: left; }
  .hero__lead { margin-left: 0; margin-right: 0; }
  .hero__actions { justify-content: flex-start; }
  .hero__stats { justify-content: flex-start; }
  .hero__portrait { margin: 0; max-width: 420px; justify-self: end; }
}

/* floating paws */
.paw { position: absolute; z-index: -1; width: 64px; height: 64px; opacity: .14; color: var(--moss);
  background: currentColor;
  -webkit-mask: var(--paw-mask) center/contain no-repeat; mask: var(--paw-mask) center/contain no-repeat;
  --paw-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='62' rx='22' ry='18'/%3E%3Cellipse cx='24' cy='40' rx='9' ry='12'/%3E%3Cellipse cx='42' cy='28' rx='9' ry='12'/%3E%3Cellipse cx='58' cy='28' rx='9' ry='12'/%3E%3Cellipse cx='76' cy='40' rx='9' ry='12'/%3E%3C/svg%3E");
  animation: floaty 9s ease-in-out infinite;
}
.paw--1 { top: 14%; left: 8%; transform: rotate(-18deg); }
.paw--2 { top: 22%; right: 9%; width: 46px; height: 46px; color: var(--terracotta); opacity: .16; animation-delay: -3s; transform: rotate(22deg); }
.paw--3 { bottom: 10%; left: 16%; width: 38px; height: 38px; color: var(--ochre); opacity: .2; animation-delay: -6s; transform: rotate(8deg); }
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }

/* ---------- Philosophy ---------- */
.philosophy__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.philosophy__intro .lead em { color: var(--terracotta-d); }
.values { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.8rem; }
.values li { display: flex; align-items: center; gap: .8rem; font-weight: 500; color: var(--forest-deep); }
.values__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 4px rgba(191,107,60,.18); flex: none; }
.philosophy__media { margin: 0; position: relative; }
.philosophy__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); aspect-ratio: 1/1; object-fit: cover; }
.script-caption { font-family: var(--font-script); font-size: 1.5rem; color: var(--moss); text-align: center; margin-top: 1rem; }

/* ---------- Offers ---------- */
.offers { background: linear-gradient(180deg, var(--paper), var(--sand)); }
/* Menü-Sprung (#angebote / #wissen): unter dem Sticky-Header landen und
   den großen oberen Abstand kappen, damit die Karten direkt sichtbar sind. */
.offers, .knowledge { scroll-margin-top: 4.75rem; padding-top: clamp(0.9rem, 2vw, 1.4rem); }
.offers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.offer-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.8rem); box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
/* Button beider Karten unten verankern -> gleiche vertikale Höhe */
.offer-card .btn { margin-top: auto; }
.offer-card .feature-list { margin-bottom: 1.6rem; }
.offer-card__head { padding-bottom: 1.4rem; margin-bottom: 1.4rem; border-bottom: 1px dashed var(--line); }
.offer-card__icon {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px;
  background: var(--forest); font-size: 1.6rem; margin-bottom: 1rem; box-shadow: var(--shadow-soft);
}
.offer-card__head h3 { font-size: 1.7rem; color: var(--forest-deep); }
.offer-card__head p { margin: .3rem 0 0; color: var(--terracotta-d); font-weight: 600; font-size: .95rem; }
.feature-list li { position: relative; padding: .55rem 0 .55rem 1.7rem; border-bottom: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 1.05rem; width: 9px; height: 9px;
  border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 3px rgba(138,154,107,.22);
}
.feature-list strong { color: var(--forest-deep); }

/* ---------- Angebote-Karussell (zentrierte Karte am größten) ---------- */
.offers__carousel-wrap { position: relative; margin-top: 0.25rem; }
/* Intro-Text der Sektion direkt über dem Karussell – wenig Abstand */
.offers .section-head, .knowledge .section-head { margin-bottom: clamp(0.8rem, 2vw, 1.2rem); }
.offers__carousel {
  display: flex; gap: clamp(1rem, 2.2vw, 1.8rem);
  list-style: none; margin: 0; padding: 1.2rem 0 1.6rem;
  align-items: stretch;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.offers__carousel::-webkit-scrollbar { display: none; }
/* Ohne JS (kein .is-ready) leerer Spacer, damit erste/letzte Karte zentrierbar bleibt */
.offers__carousel-wrap:not(.is-ready) .offers__carousel::before,
.offers__carousel-wrap:not(.is-ready) .offers__carousel::after {
  content: ""; flex: 0 0 max(0.5rem, calc(50% - 215px));
}
.offer-tile {
  --accent: var(--forest);
  position: relative; overflow: hidden;
  scroll-snap-align: center;
  flex: 0 0 clamp(280px, 86vw, 430px);
  background: var(--cream);
  background: color-mix(in srgb, var(--accent) 8%, var(--cream));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.35rem clamp(1.5rem, 2.5vw, 2.1rem) 1.45rem;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transform-origin: top center;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
/* Farbige Oberkante als Wiedererkennung je Angebot */
.offer-tile::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--accent); }
/* Coverflow-Look erst aktiv, wenn JS das Karussell initialisiert hat */
.is-ready .offer-tile { transform: scale(0.82); opacity: 0.45; cursor: pointer; }
.is-ready .offer-tile:not(.is-center):hover { opacity: 0.7; transform: scale(0.85); }
.is-ready .offer-tile.is-center { transform: scale(1.0); opacity: 1; cursor: default; box-shadow: var(--shadow-card); position: relative; z-index: 2; }
.offer-tile__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: var(--forest); background: var(--accent);
  font-size: 1.6rem; margin-bottom: 1.1rem; box-shadow: var(--shadow-soft);
}
.offer-tile__title { font-size: 1.45rem; color: var(--forest-deep); margin: 0; line-height: 1.2; }
.offer-tile__sub {
  margin: 0.35rem 0 0; font-weight: 600; font-size: 0.9rem;
  color: var(--terracotta-d);
  color: color-mix(in srgb, var(--accent) 80%, #241f1a);
}
/* Stichpunkte fuellen die (gleich hohe) Karte aus, damit kein grosser Leerraum
   vor dem Button entsteht – Inhalt verteilt sich ueber die Kartenhoehe. */
.offer-tile__features { margin: 0.75rem 0 0.9rem; flex: 1 1 auto; display: flex; flex-direction: column; justify-content: space-between; font-size: 0.95rem; line-height: 1.5; }
.offer-tile .feature-list li { padding-top: 0.36rem; padding-bottom: 0.36rem; }
.offer-tile .feature-list li::before {
  top: 0.62em;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 24%, transparent);
}
.offer-tile__link {
  margin-top: auto;
  color: var(--terracotta-d);
  color: color-mix(in srgb, var(--accent) 82%, #241f1a);
}
/* Bild-Karten (Veranstaltungen): Foto randlos oben, darunter Titel + Text */
.offer-tile__media {
  margin: -1.35rem calc(-1 * clamp(1.5rem, 2.5vw, 2.1rem)) 0.9rem;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent) 14%, var(--cream));
}
.offer-tile__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Angebots-Karten: kleineres, zentriertes 3:2-Foto (Hunde-Ausschnitt bleibt erhalten),
   damit die Karten mit komplettem Text auf den Bildschirm passen. */
.offer-tile:not(.offer-tile--event) .offer-tile__media {
  margin: 0.25rem auto 0.8rem;
  width: min(54%, 210px);
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.offer-tile__text {
  margin: 0.7rem 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem; line-height: 1.55;
}
/* Erklärtext (z. B. Social Walks) */
.offer-tile__intro {
  margin: 0.55rem 0 0.1rem;
  color: var(--ink-soft);
  font-size: 0.9rem; line-height: 1.5;
}
/* Preis-Box auf einer Angebots-Karte */
.offer-tile__prices {
  list-style: none; margin: 0.9rem 0 1.05rem; padding: 0.4rem 0.9rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 12%, var(--cream));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}
.offer-tile__prices li { display: flex; flex-direction: column; gap: 0.05rem; padding: 0.4rem 0; }
.offer-tile__prices li + li { border-top: 1px dashed color-mix(in srgb, var(--accent) 24%, transparent); }
.offer-tile__amount {
  font-weight: 800; font-size: 1.05rem;
  color: var(--forest-deep);
  color: color-mix(in srgb, var(--accent) 78%, #241f1a);
}
.offer-tile__pricenote { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4; }
.offers__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); color: var(--forest-deep); font-size: 1.7rem; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow-soft); display: grid; place-items: center;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.offers__nav:hover { background: var(--forest); color: var(--cream); }
.offers__nav:focus-visible { outline: 3px solid var(--ochre); outline-offset: 2px; }
.offers__nav--prev { left: clamp(0.5rem, 2vw, 2rem); }
.offers__nav--next { right: clamp(0.5rem, 2vw, 2rem); }
.offers__note { text-align: center; margin: 1.6rem auto 0; max-width: 640px; color: var(--ink-soft); font-size: 1.05rem; }
@media (hover: none) { .offers__nav { display: none; } } /* Touch: einfach wischen */
@media (prefers-reduced-motion: reduce) {
  .offers__carousel { scroll-behavior: auto; }
  .offer-tile { transition: none; }
}

/* ---------- Preise ---------- */
.prices__grid {
  display: grid; gap: clamp(1rem, 2.5vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: clamp(1.5rem, 4vw, 2.6rem);
}
.price-card {
  --accent: var(--forest);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--cream);
  background: color-mix(in srgb, var(--accent) 8%, var(--cream));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem clamp(1.4rem, 2.5vw, 2rem) 1.5rem;
  box-shadow: var(--shadow-soft);
}
.price-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--accent); }
.price-card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent); font-size: 1.5rem; margin-bottom: 0.9rem; box-shadow: var(--shadow-soft);
}
.price-card__title { font-size: 1.35rem; color: var(--forest-deep); margin: 0; line-height: 1.2; }
.price-card__note { margin: 0.5rem 0 0; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; }
.price-card__list { list-style: none; margin: 1rem 0 1.1rem; padding: 0; }
.price-card__list li {
  display: flex; flex-direction: column; gap: 0.1rem; padding: 0.6rem 0;
}
.price-card__list li + li { border-top: 1px dashed color-mix(in srgb, var(--accent) 24%, transparent); }
.price-card__amount {
  font-weight: 800; font-size: 1.5rem; line-height: 1.1;
  color: var(--forest-deep);
  color: color-mix(in srgb, var(--accent) 80%, #241f1a);
}
.price-card__desc { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.45; }
.price-card__link {
  margin-top: auto;
  color: var(--terracotta-d);
  color: color-mix(in srgb, var(--accent) 82%, #241f1a);
}
.prices__foot { text-align: center; margin: clamp(1.4rem, 3vw, 2rem) auto 0; max-width: 640px; color: var(--ink-soft); font-size: 1rem; }

/* ---------- Herzensplätze ---------- */
.hearts { background: var(--forest); color: var(--cream); overflow: hidden; }
.hearts::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .4;
  background: radial-gradient(50% 60% at 85% 20%, rgba(217,154,78,.28), transparent 60%),
              radial-gradient(50% 60% at 10% 90%, rgba(138,154,107,.25), transparent 60%);
}
.hearts__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hearts__text .btn { margin-top: 1.5rem; }
.hearts__badge { display: grid; place-items: center; }
.rosette {
  --r: clamp(150px, 22vw, 220px); width: var(--r); height: var(--r); border-radius: 50%;
  display: grid; place-items: center; position: relative;
  background:
    repeating-conic-gradient(var(--ochre) 0deg 12deg, var(--terracotta) 12deg 24deg);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.5);
  animation: spin 28s linear infinite;
}
.rosette::after { content: ""; position: absolute; inset: 14%; border-radius: 50%; background: var(--cream); }
.rosette__core { position: relative; z-index: 1; font-size: clamp(2.4rem, 6vw, 3.8rem); color: var(--terracotta); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Knowledge ---------- */
.knowledge__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.know-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.know-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.know-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.know-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.know-card:hover .know-card__media img { transform: scale(1.05); }
/* Ernährungs-Tipps: oben ausrichten, damit die oberen Hunde sichtbar sind */
.know-card__media img.know-card__img--top { object-position: center top; }
.know-card__body { padding: clamp(1.4rem, 2.5vw, 2rem); }
.know-card__body h3 { font-size: 1.45rem; color: var(--forest-deep); margin-bottom: .6rem; }
.know-card__body p { color: var(--ink-soft); }
.text-link { color: var(--terracotta-d); font-weight: 600; border-bottom: 2px solid transparent; transition: border-color .25s; }
.text-link:hover { border-color: var(--terracotta); }

/* ---------- Referral ---------- */
.referral { background: linear-gradient(180deg, var(--sand), var(--paper)); }
.referral__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.referral__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.6rem 0 2rem; }
.steps li { display: flex; align-items: center; gap: 1rem; font-weight: 500; color: var(--forest-deep); font-size: 1.1rem; }
.steps__num { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--terracotta); color: var(--cream); font-family: var(--font-display); font-weight: 700; box-shadow: var(--shadow-soft); }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery__item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 3/4; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__cta { text-align: center; margin: 2.2rem 0 0; color: var(--ink-soft); }
.gallery__cta a { color: var(--terracotta-d); font-weight: 700; border-bottom: 2px solid var(--terracotta); }

/* ---------- Reviews ---------- */
.reviews { background: var(--paper); }
.google-badge { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.4rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.1rem .5rem .6rem;
  box-shadow: var(--shadow-soft); transition: transform .25s var(--ease), box-shadow .25s; }
.google-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.google-badge__g { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.google-badge__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.google-badge__text em { font-style: normal; font-size: .82rem; color: var(--ink-soft); }

.stars { color: #e8a13a; letter-spacing: .08em; font-size: 1.05rem; }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.review-card {
  position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; margin: 0; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.review-card::before {
  content: "\201C"; position: absolute; top: -.3rem; right: 1.2rem;
  font-family: var(--font-display); font-size: 4.5rem; line-height: 1; color: var(--sage); opacity: .28;
}
.review-card blockquote { margin: 0; font-size: 1.04rem; color: var(--ink); line-height: 1.6; flex: 1; }
.review-card--feature { background: var(--forest); border-color: transparent; }
.review-card--feature blockquote { color: var(--cream); }
.review-card--feature::before { color: var(--ochre); opacity: .45; }
.review-card--feature .review-card__who strong { color: var(--cream); }
.review-card--feature .review-card__who em { color: rgba(250,245,234,.7); }
.review-card figcaption { display: flex; align-items: center; gap: .8rem; }
.review-card__avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--terracotta); color: var(--cream); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.review-card__who { display: flex; flex-direction: column; line-height: 1.3; }
.review-card__who strong { color: var(--forest-deep); }
.review-card__who em { font-style: normal; font-size: .88rem; color: var(--ink-soft); }
.reviews__cta { text-align: center; margin: 2.4rem 0 0; color: var(--ink-soft); }
.reviews__cta a { color: var(--terracotta-d); font-weight: 700; border-bottom: 2px solid var(--terracotta); }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--paper), var(--sand)); }
.contact__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__channels { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.channel { display: flex; align-items: center; gap: 1rem; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.25rem; transition: transform .25s var(--ease), box-shadow .25s; }
.channel:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
.channel__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--forest); color: var(--cream); flex: none; }
.channel__label { display: flex; flex-direction: column; line-height: 1.3; }
.channel__label strong { color: var(--forest-deep); }
.channel__label em { font-style: normal; color: var(--ink-soft); font-size: .92rem; }

.contact__form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-card); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--forest-deep); margin-bottom: .4rem; }
.optional { font-weight: 400; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--paper);
  transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 4px rgba(191,107,60,.14); }
.checkbox { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.checkbox input { margin-top: .25rem; accent-color: var(--terracotta); flex: none; }
.checkbox a { color: var(--terracotta-d); text-decoration: underline; }
.form-note { margin: 1rem 0 0; font-size: .92rem; min-height: 1.2em; }
.form-note.ok, .form-note.err { padding: .85rem 1.05rem; border-radius: 12px; font-size: 1rem; font-weight: 600; }
.form-note.ok  { color: var(--moss);         background: rgba(79,107,77,.10);  border: 1px solid rgba(79,107,77,.35); }
.form-note.err { color: var(--terracotta-d); background: rgba(164,87,45,.10);  border: 1px solid rgba(164,87,45,.35); }
.form-note:focus { outline: 2px solid rgba(79,107,77,.45); outline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: rgba(250,245,234,.8); padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(250,245,234,.14); }
.brand--footer .brand__text strong { color: var(--cream); }
.site-footer__tag { font-family: var(--font-script); font-size: 1.35rem; color: var(--ochre); line-height: 1.4; margin-top: 1rem; }
.site-footer__nav, .site-footer__social { display: flex; flex-direction: column; gap: .6rem; }
.site-footer__nav a, .site-footer__social a { transition: color .2s; width: fit-content; }
.site-footer__nav a:hover, .site-footer__social a:hover { color: var(--ochre); }
.site-footer__legal { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: .9rem; }
.site-footer__legal nav { display: flex; gap: 1.5rem; }
.site-footer__legal a:hover { color: var(--ochre); }

/* ---------- To-top ---------- */
.to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90; width: 48px; height: 48px;
  display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream);
  box-shadow: var(--shadow-card); opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s, transform .3s; font-size: 1.2rem; }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--terracotta); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .philosophy__grid, .hearts__inner, .referral__inner, .contact__grid { grid-template-columns: 1fr; }
  .offers__grid, .knowledge__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .hearts__badge { order: -1; }
  .referral__media { max-width: 460px; margin-inline: auto; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }

  .nav__toggle { display: flex; z-index: 110; }
  .nav__menu {
    /* height explizit statt bottom:0 – der backdrop-filter im Header macht
       diesen zum Containing-Block, sonst wäre das Menü nur kopfzeilenhoch */
    position: fixed; inset: 0 0 auto 30%; height: 100vh; height: 100dvh;
    flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 1.5rem; padding: 2rem 2.5rem; overflow-y: auto;
    background: var(--cream); box-shadow: -20px 0 60px -20px rgba(0,0,0,.4);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 105;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu a { font-size: 1.2rem; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width: 540px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.2rem 2rem; }
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* Mobil: kompaktere Angebots-/Veranstaltungs-Karten – natürliche Höhen statt
   Stretch auf die größte Karte, kleineres Foto/Schrift, engere Abstände. */
@media (max-width: 700px) {
  .offers__carousel { align-items: flex-start; }
  .offer-tile { padding-top: 1.1rem; padding-bottom: 1.15rem; }
  .offer-tile__title { font-size: 1.2rem; }
  .offer-tile__sub { font-size: 0.8rem; }
  .offer-tile:not(.offer-tile--event) .offer-tile__media { width: min(48%, 150px); margin: 0.2rem auto 0.6rem; }
  .offer-tile__features { font-size: 0.86rem; line-height: 1.42; margin: 0.5rem 0 0.7rem; }
  .offer-tile .feature-list li { padding-top: 0.28rem; padding-bottom: 0.28rem; }
  .offer-tile__intro { font-size: 0.84rem; line-height: 1.45; }
  .offer-tile__prices { margin: 0.5rem 0 0.65rem; padding: 0.3rem 0.85rem; }
  .offer-tile__amount { font-size: 1rem; }
  .offer-tile__pricenote { font-size: 0.78rem; line-height: 1.35; }
}

/* Kompakte Angebots-/Veranstaltungs-Karten auf niedrigen Laptop-Viewports,
   damit nach dem Menü-Sprung die ganze Karte inkl. Button passt. */
@media (min-width: 901px) and (max-height: 1000px) {
  .offers, .knowledge { padding-top: 0.6rem; }
  .offers .section-head, .knowledge .section-head { margin-bottom: 0.55rem; }
  .offers .section-title, .knowledge .section-title { font-size: clamp(1.6rem, 1.1rem + 1.5vw, 2.3rem); }
  .offers .section-sub, .knowledge .section-sub { font-size: 0.92rem; line-height: 1.45; }
  .offers__carousel { padding: 0.6rem 0 1rem; }
  .offer-tile { padding-top: 1rem; padding-bottom: 1.05rem; }
  .offer-tile__title { font-size: 1.22rem; }
  .offer-tile__sub { font-size: 0.82rem; }
  .offer-tile:not(.offer-tile--event) .offer-tile__media { width: min(46%, 165px); margin: 0.15rem auto 0.55rem; }
  .offer-tile__features { margin: 0.5rem 0 0.6rem; font-size: 0.86rem; line-height: 1.4; }
  .offer-tile .feature-list li { padding-top: 0.22rem; padding-bottom: 0.22rem; }
  .offer-tile__intro { font-size: 0.84rem; line-height: 1.45; margin: 0.4rem 0 0; }
  .offer-tile__prices { margin: 0.5rem 0 0.6rem; padding: 0.3rem 0.8rem; }
  .offer-tile__prices li { padding: 0.3rem 0; }
  .offer-tile__amount { font-size: 0.98rem; }
  .offer-tile__pricenote { font-size: 0.78rem; line-height: 1.3; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Social-Icons im Header-Menü ---------- */
.nav__social { display: inline-flex; align-items: center; gap: .5rem; }
.nav__icon {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 50%; color: var(--forest-deep); border: 1px solid var(--line);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.nav__icon:hover { background: var(--forest); color: var(--cream); transform: translateY(-1px); }
.nav__icon::after { display: none !important; } /* kein Unterstrich wie bei Textlinks */
.nav__icon svg { width: 20px; height: 20px; display: block; }

/* ---------- Einzugsgebiet ---------- */
.areas__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1rem; margin: 0; padding: 0; }
.areas__chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--cream); color: var(--forest-deep);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1.15rem; font-weight: 600; font-size: 1.02rem;
  box-shadow: var(--shadow-soft);
}
.areas__chip svg { color: var(--terracotta); flex: none; }
.areas__chip--soft { background: transparent; box-shadow: none; color: var(--ink-soft); font-style: italic; font-weight: 500; }
.areas__chip--soft svg { color: var(--sage); }
.areas__note { text-align: center; color: var(--ink-soft); margin: 1.6rem auto 0; max-width: 46ch; }
.areas__note a { color: var(--terracotta-d); font-weight: 600; border-bottom: 2px solid transparent; transition: border-color .25s; }
.areas__note a:hover { border-color: var(--terracotta); }

/* Preisanzeige in der Amelia-Buchung ausblenden (Einzelstunde ohne Preis) */
.amelia-v2-booking [class*="price"],
.amelia-v2-booking [class*="Price"],
[class^="am-"][class*="price"] { display: none !important; }

/* "Kostenlos"/Preis bei den Gruppenterminen (Events & RSVP) ausblenden */
.tribe-events-cost,
.tribe-events-event-cost,
.tribe-events-event-cost-label,
.tribe-tickets__rsvp-ticket-price,
[class*="tribe-tickets"][class*="price"] { display: none !important; }
