@font-face {
  font-family: "Fredoka";
  src: url(/assets/fonts/Fredoka-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fredoka";
  src: url(/assets/fonts/Fredoka-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url(/assets/fonts/NunitoSans-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url(/assets/fonts/NunitoSans-Italic.woff2) format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url(/assets/fonts/NunitoSans-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url(/assets/fonts/NunitoSans-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --c-cream: #FAF6EE;
  --c-cream-card: #F0F1E3;
  --c-cream-line: #E4E2D4;
  --c-grass: #4E7A46;
  --c-grass-dark: #345530;
  --c-grass-tint: rgba(78, 122, 70, 0.1);
  --c-amber: #D98E32;
  --c-amber-deep: #C57F2D;
  --c-amber-ink: #6B4415;
  --c-amber-tint: rgba(217, 142, 50, 0.14);
  --c-ink: #1E2B20;
  --c-ink-soft: #33422F;
  --c-ink-mute: #55655A;
  --c-white: #FFFFFF;
  --ink: var(--c-ink);
  --ink-soft: var(--c-ink-soft);
  --ink-mute: var(--c-ink-mute);
  --bg: var(--c-cream);
  --bg-alt: var(--c-cream-card);
  --surface: var(--c-white);
  --line: var(--c-cream-line);
  --accent: var(--c-amber);
  --accent-dark: var(--c-amber-deep);
  --accent-soft: var(--c-amber-tint);
  --accent-fg: var(--c-ink);
  --primary: var(--c-grass);
  --primary-dark: var(--c-grass-dark);
  --primary-soft: var(--c-cream-card);
  --gold: var(--c-amber);
  --gold-hi: var(--c-amber-deep);
  --shadow-sm: 0 1px 2px rgba(30,43,32,0.05), 0 1px 3px rgba(30,43,32,0.07);
  --shadow-md: 0 8px 22px rgba(30,43,32,0.10), 0 2px 6px rgba(30,43,32,0.06);
  --shadow-lg: 0 26px 54px rgba(30,43,32,0.16), 0 8px 18px rgba(30,43,32,0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 999px;
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --font-display:
    "Fredoka",
    "Trebuchet MS",
    sans-serif;
  --font-body:
    "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --t-fast: 160ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-base: 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-draw: cubic-bezier(0.65, 0.05, 0, 1);
  --text-eyebrow: 0.8125rem;
  --text-body: 1.0625rem;
  --text-body-lg: 1.25rem;
  --text-h4: clamp(1.15rem, 1.6vw, 1.35rem);
  --text-h3: clamp(1.375rem, 2vw, 1.75rem);
  --text-h2: clamp(2rem, 3.2vw, 2.75rem);
  --text-h1: clamp(2.75rem, 5.5vw, 4.5rem);
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --t-fast: 0ms;
    --t-base: 0ms;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
img {
  font-style: italic;
  background-color: var(--c-cream-card);
}
a {
  color: var(--c-grass-dark);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover {
  color: var(--ink);
}
a:focus-visible {
  outline: 2px solid var(--c-grass-dark);
  outline-offset: 3px;
  border-radius: 2px;
}
p a:not(.btn) {
  text-decoration: underline;
  text-underline-offset: 2px;
}
button {
  font: inherit;
  cursor: pointer;
}
button:focus-visible {
  outline: 2px solid var(--c-grass-dark);
  outline-offset: 3px;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.55em;
  text-wrap: balance;
}
h1 {
  font-size: var(--text-h1);
  line-height: 1.05;
  letter-spacing: -0.015em;
  overflow-wrap: break-word;
  hyphens: auto;
}
h2 {
  font-size: var(--text-h2);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h3 {
  font-size: var(--text-h3);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
h4 {
  font-size: var(--text-h4);
  font-weight: 500;
}
p {
  margin: 0 0 1em;
  max-width: 65ch;
  color: var(--ink-soft);
}
.lead {
  font-size: var(--text-body-lg);
  color: var(--ink-soft);
  line-height: 1.55;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-grass-dark);
  margin-bottom: 1rem;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section {
  padding-block: clamp(3rem, 8vw, 6rem);
}
section.tight {
  padding-block: clamp(2rem, 5vw, 4rem);
}
.section-alt {
  background: var(--c-cream-card);
}
.hund-leash-scope {
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head.left {
  text-align: left;
  margin-inline: 0;
}
.section-head p {
  margin-inline: auto;
}
.section-head.left p {
  margin-inline: 0;
}
.image-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  margin: 0;
  box-shadow: var(--shadow-md);
}
.image-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: 1rem;
  color: var(--bg);
}
.hund-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.97);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.hund-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.hund-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: 1.5rem;
}
.hund-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hund-brand:hover {
  color: var(--c-grass-dark);
}
.hund-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 7px;
  border-radius: 50%;
  background: var(--c-grass);
  color: var(--c-cream);
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.hund-brand:hover .hund-brand-mark {
  background: var(--c-amber);
  color: var(--ink);
}
.hund-brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.hund-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.hund-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.hund-nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 0;
  position: relative;
}
.hund-nav a:hover {
  color: var(--ink);
}
.hund-nav a[aria-current=page] {
  color: var(--ink);
}
.hund-nav a[aria-current=page]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--c-amber);
  border-radius: 2px;
}
.hund-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hund-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
  color: var(--ink);
}
@media (max-width: 880px) {
  .hund-nav-toggle {
    display: inline-flex;
  }
  .hund-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform var(--t-base);
  }
  .hund-nav ul[data-open=true] {
    transform: scaleY(1);
  }
  .hund-nav li {
    width: 100%;
    border-top: 1px solid var(--line);
  }
  .hund-nav li:first-child {
    border-top: none;
  }
  .hund-nav a {
    display: block;
    padding: 0.95rem 0;
    font-size: 1.02rem;
  }
}
@media (max-width: 400px) {
  .hund-header-inner {
    gap: 1rem;
  }
  .hund-nav-actions {
    gap: 0.6rem;
  }
  .hund-header .hund-brand-mark + span {
    display: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    transform var(--t-fast),
    border-color var(--t-fast),
    box-shadow var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary,
a.btn-primary {
  background: var(--c-amber);
  color: var(--ink);
  min-height: 52px;
  box-shadow: 0 8px 20px rgba(217, 142, 50, 0.3);
}
.btn-primary:hover {
  background: var(--c-amber-deep);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(197, 127, 45, 0.34);
}
.btn-accent,
a.btn-accent {
  background: var(--c-grass);
  color: var(--c-cream) !important;
  min-height: 52px;
}
.btn-accent:hover {
  background: var(--c-grass-dark);
  color: var(--c-cream) !important;
  transform: translateY(-2px);
}
.btn-accent:focus-visible,
a.btn-accent:focus-visible {
  outline-color: var(--c-cream);
}
.btn-ghost,
a.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  border-width: 1.5px;
  min-height: 52px;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--c-cream);
  transform: translateY(-2px);
}
.btn-ghost-light,
a.btn-ghost-light {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(250, 246, 238, 0.4);
  border-width: 1.5px;
  min-height: 52px;
}
.btn-ghost-light:hover {
  background: var(--c-cream);
  color: var(--ink);
  border-color: var(--c-cream);
  transform: translateY(-2px);
}
.btn-sm,
a.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  min-height: 44px;
}
.hund-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  background: var(--c-amber);
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .hund-scroll-progress {
    display: none;
  }
}
.hund-hero {
  position: relative;
  background: var(--c-cream);
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3.5rem, 8vw, 6rem);
}
.hund-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
@media (max-width: 960px) {
  .hund-hero-grid {
    grid-template-columns: 1fr;
  }
}
.hund-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-grass-dark);
  margin-bottom: 1.1rem;
}
.hund-hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-h1);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 1.3rem;
  min-height: 3.4em;
}
.hund-hero-title em {
  font-style: normal;
  color: var(--c-amber-deep);
}
.hund-hero-title .line {
  display: block;
  overflow: hidden;
}
.hund-hero-title .line__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 640ms var(--ease-draw);
  transition-delay: var(--line-delay, 0ms);
}
.hund-hero-title.is-revealed .line__inner {
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hund-hero-title .line__inner {
    transform: none;
    transition: none;
  }
}
.hund-hero-lead {
  font-size: var(--text-body-lg);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}
.hund-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 2.2rem;
}
.hund-paw-trail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
}
.hund-paw-trail svg {
  width: 20px;
  height: 20px;
  color: var(--c-amber);
  opacity: 0;
  transform: translateY(8px) scale(0.7);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
  transition-delay: var(--paw-delay, 0ms);
}
.hund-paw-trail.is-in svg {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hund-paw-trail svg:last-child {
  color: var(--c-grass);
  width: 24px;
  height: 24px;
}
@media (prefers-reduced-motion: reduce) {
  .hund-paw-trail svg {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.hund-hero-usp {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.hund-hero-usp li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.hund-hero-usp-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-amber-tint);
  color: var(--c-amber-ink);
  flex-shrink: 0;
  margin-top: 0.1em;
}
.hund-hero-usp-mark svg {
  width: 12px;
  height: 12px;
}
.hund-hero-visual {
  position: relative;
}
.hund-hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hund-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
@media (max-width: 960px) {
  .hund-hero-photo {
    aspect-ratio: 4/3;
    max-width: 560px;
    margin-inline: auto;
  }
}
.hund-leash-wrap {
  position: absolute;
  inset: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.hund-leash-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hund-leash-path {
  fill: none;
  stroke: var(--c-amber);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0.55;
}
@media (max-width: 1319px) {
  .hund-leash-wrap {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hund-leash-path {
    stroke-dashoffset: 0 !important;
  }
}
.hund-trust {
  position: relative;
  overflow: hidden;
  background: var(--c-grass);
  color: var(--c-cream);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.hund-trust::before {
  content: "";
  position: absolute;
  inset: -14% -8%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0 120 C150 60 300 160 450 100 C600 40 750 150 900 90 C1000 55 1100 110 1200 80 L1200 200 L0 200 Z' fill='%23345530' opacity='0.55'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  transform: translateY(var(--parallax-y, 0px));
  pointer-events: none;
  will-change: transform;
}
.hund-trust > .container {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hund-trust::before {
    transform: none !important;
  }
}
.hund-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}
@media (max-width: 760px) {
  .hund-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hund-stat {
  padding-inline: 0.5rem;
}
.hund-stat .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  color: var(--c-cream);
  line-height: 1;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.hund-stat .label {
  font-size: 0.86rem;
  color: rgba(250, 246, 238, 0.82);
  line-height: 1.4;
  display: block;
  max-width: 20ch;
  margin-inline: auto;
}
.hund-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: clamp(1rem, 2.4vw, 1.5rem);
}
@media (max-width: 880px) {
  .hund-bento {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .hund-bento {
    grid-template-columns: 1fr;
  }
}
.hund-tile-hero {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 880px) {
  .hund-tile-hero {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 620px) {
  .hund-tile-hero {
    grid-column: span 1;
  }
}
.hund-tile {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background: var(--c-cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  color: inherit;
  transition:
    border-color var(--t-base),
    box-shadow var(--t-base),
    background var(--t-base);
}
.hund-tile-hero {
  background: var(--c-grass);
  color: var(--c-cream);
  border-color: var(--c-grass);
}
.hund-tile-hero .hund-tile-title,
.hund-tile-hero h3 {
  color: var(--c-cream);
}
.hund-tile-hero p {
  color: var(--c-cream);
}
.hund-tile:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-amber);
}
.hund-tile-hero:hover {
  border-color: var(--c-amber);
}
@media (min-width: 960px) {
  html.js .hund-tile {
    transform-style: preserve-3d;
    will-change: transform;
    transition:
      transform 220ms var(--ease-out),
      border-color var(--t-fast),
      box-shadow var(--t-base);
  }
}
.hund-tile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.hund-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-amber-tint);
  color: var(--c-amber-ink);
  flex-shrink: 0;
}
.hund-tile-hero .hund-tile-icon {
  background: rgba(250, 246, 238, 0.16);
  color: var(--c-cream);
}
.hund-tile-icon svg {
  width: 20px;
  height: 20px;
}
.hund-tile h3 {
  margin-bottom: 0.35rem;
  font-size: var(--text-h4);
}
.hund-tile-hero h3 {
  font-size: var(--text-h3);
}
.hund-tile-meta {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin: 0;
}
.hund-tile-hero .hund-tile-meta {
  color: var(--c-cream);
}
.hund-tile p:not(.hund-tile-meta) {
  font-size: 0.92rem;
  margin: 0;
}
.hund-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.hund-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hund-badge--frei {
  background: rgba(78, 122, 70, 0.14);
  color: #2C4A28;
}
.hund-badge--frei::before {
  background: #3D6136;
}
.hund-badge--warteliste {
  background: var(--c-amber-tint);
  color: var(--c-amber-ink);
}
.hund-badge--warteliste::before {
  background: var(--c-amber);
}
.hund-tile-hero .hund-badge--frei {
  background: var(--c-grass-dark);
  color: var(--c-cream);
}
.hund-tile-hero .hund-badge--frei::before {
  background: var(--c-cream);
}
.hund-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  counter-reset: step;
}
@media (max-width: 880px) {
  .hund-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .hund-steps {
    grid-template-columns: 1fr;
  }
}
.hund-steps li {
  position: relative;
  padding-top: 0.25rem;
}
.hund-step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--c-amber-ink);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.hund-icon-stroke {
  width: 40px;
  height: 40px;
  color: var(--c-grass-dark);
  margin-bottom: 0.9rem;
}
.hund-icon-stroke path,
.hund-icon-stroke circle,
.hund-icon-stroke line,
.hund-icon-stroke polyline {
  transition: stroke-dashoffset 800ms var(--ease-draw);
}
@media (prefers-reduced-motion: reduce) {
  .hund-icon-stroke path,
  .hund-icon-stroke circle,
  .hund-icon-stroke line,
  .hund-icon-stroke polyline {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}
.hund-steps h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.hund-steps p {
  font-size: 0.92rem;
  margin: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}
.team-member {
  text-align: left;
  transition: transform 200ms var(--ease-out);
}
@media (min-width: 960px) {
  html.js .team-member {
    will-change: transform;
  }
}
.team-member:hover {
  transform: scale(1.012);
}
.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--c-cream-card);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-member h3 {
  margin-bottom: 0.2rem;
  font-size: 1.15rem;
}
.team-role {
  font-size: 0.85rem;
  color: var(--c-grass-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.team-member p {
  font-size: 0.92rem;
}
.hund-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.hund-review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.hund-review .stars {
  color: var(--c-amber-ink);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.85rem;
}
.hund-review p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}
.hund-review cite {
  font-style: normal;
  font-size: 0.86rem;
  color: var(--ink-mute);
  display: block;
}
.hund-review cite strong {
  color: var(--ink);
  font-weight: 700;
}
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) {
  .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.location-card dl {
  margin: 0;
}
.location-card dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-top: 1.25rem;
  font-weight: 700;
}
.location-card dt:first-child {
  margin-top: 0;
}
.location-card dd {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: var(--ink);
}
.map-embed {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt);
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 320px;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-embed .map-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  box-shadow: var(--shadow-md);
  line-height: 1.5;
}
.hund-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--c-cream-card);
  color: var(--ink-soft);
}
.hund-hours-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-mute);
  flex-shrink: 0;
}
.hund-hours-pill[data-status=open] {
  background: rgba(78, 122, 70, 0.14);
  color: #2C4A28;
}
.hund-hours-pill[data-status=open] .dot {
  background: #3D6136;
}
.hund-hours-pill[data-status=before] .dot,
.hund-hours-pill[data-status=appt] .dot {
  background: var(--c-amber-deep);
}
@media (max-width: 640px) {
  .hund-nav-actions .hund-hours-pill {
    display: none;
  }
}
.opening-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  font-size: 0.94rem;
}
.opening-row.is-today {
  font-weight: 700;
  color: var(--c-grass-dark);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c-amber-deep);
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq[open] summary::after {
  content: "−";
}
.faq-body {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.faq-body p:last-child {
  margin-bottom: 0;
}
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--c-amber);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -14% -8%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M1200 120 C1050 60 900 160 750 100 C600 40 450 150 300 90 C200 55 100 110 0 80 L0 200 L1200 200 Z' fill='%23c57f2d' opacity='0.45'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  transform: translateY(var(--parallax-y, 0px));
  pointer-events: none;
  will-change: transform;
}
.cta-band > * {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
}
.cta-band p {
  margin: 0;
  color: rgba(30, 43, 32, 0.9);
}
.cta-band-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cta-band .btn-ghost {
  border-color: rgba(30, 43, 32, 0.4);
  color: var(--ink);
}
.cta-band .btn-ghost:hover {
  background: var(--ink);
  color: var(--c-cream);
  border-color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  .cta-band::before {
    transform: none !important;
  }
}
.hund-cta-magnetic {
  display: inline-block;
  will-change: transform;
}
.site-footer {
  background: var(--c-grass-dark);
  color: rgba(250, 246, 238, 0.82);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .brand,
.footer-brand .hund-brand {
  color: var(--c-cream);
  margin-bottom: 1rem;
}
.footer-brand .hund-brand-mark {
  background: rgba(250, 246, 238, 0.14);
  color: var(--c-cream);
}
.footer-brand p {
  color: rgba(250, 246, 238, 0.72);
  font-size: 0.92rem;
  max-width: 32ch;
}
.footer-col h3,
.footer-col h4 {
  font-family: var(--font-body);
  color: var(--c-cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(250, 246, 238, 0.74);
  font-size: 0.95rem;
  display: inline-block;
  padding-block: 0.65rem;
  margin-block: -0.65rem;
}
.footer-col a:hover {
  color: var(--c-cream);
}
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.14);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.72);
}
.footer-bottom a {
  color: rgba(250, 246, 238, 0.68);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover {
  color: var(--c-cream);
}
.site-footer a:focus-visible {
  outline-color: var(--c-cream);
}
.demo-disclaimer {
  background: rgba(217, 142, 50, 0.16);
  border: 1px solid rgba(217, 142, 50, 0.34);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: rgba(250, 246, 238, 0.9);
  margin-bottom: 1.5rem;
}
.demo-disclaimer a {
  color: #FFDCA0;
  text-decoration: underline;
}
.demo-disclaimer a:hover {
  color: var(--c-cream);
}
#anfrage {
  font-size: var(--text-h3);
}
.form {
  display: grid;
  gap: 1.1rem;
  max-width: 620px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--c-grass-dark);
  outline-offset: 2px;
  border-color: var(--c-grass);
  box-shadow: 0 0 0 3px rgba(78, 122, 70, 0.16);
}
.form textarea {
  resize: vertical;
  min-height: 120px;
}
.form-hint {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: -0.4rem;
}
.form-status {
  font-size: 0.92rem;
  color: var(--c-grass-dark);
  font-weight: 700;
}
.form-status[hidden] {
  display: none;
}
.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero h1 {
  margin-bottom: 1.1rem;
}
.hero.tight .eyebrow {
  margin-bottom: 0.6rem;
}
.hero-lead {
  font-size: var(--text-body-lg);
  color: var(--ink-soft);
  max-width: 60ch;
}
.breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-mute);
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--ink-mute);
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb a {
  color: var(--ink-soft);
  display: inline-block;
  padding-block: 0.7rem;
  margin-block: -0.7rem;
}
.breadcrumb [aria-current=page] {
  color: var(--ink);
}
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .article {
    grid-template-columns: minmax(0, 1fr);
  }
}
.article-body {
  max-width: 70ch;
}
.article-body h2 {
  margin-top: 2.5rem;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body h3 {
  margin-top: 2rem;
}
.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  color: var(--ink-soft);
}
.article-body li {
  margin-bottom: 0.5rem;
}
.article-body section + section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.hund-kurs-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.hund-kurs-head h2 {
  margin: 0;
}
.article-body .hund-tile-meta {
  margin-bottom: 1rem;
}
.article-body .image-banner {
  aspect-ratio: 16 / 10;
  margin-bottom: 1.5rem;
}
.article-aside {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.article-aside h3:first-of-type {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-grass-dark);
  margin-bottom: 0.9rem;
}
.article-aside p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}
.article-aside .btn {
  display: flex;
  width: 100%;
  margin-bottom: 0.6rem;
}
.article-aside .hund-hours-pill {
  margin-bottom: 1rem;
}
.pullquote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  color: var(--ink);
  border-left: 3px solid var(--c-amber);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  max-width: 60ch;
}
.pullquote cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-grass-dark);
  margin-top: 0.9rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.field .req {
  color: #B6543E;
}
.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 0.98rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--c-grass-dark);
  outline-offset: 2px;
  border-color: var(--c-grass);
  box-shadow: 0 0 0 3px rgba(78, 122, 70, 0.16);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field.consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.field.consent input {
  width: 22px;
  height: 22px;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
}
.field.consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.2, .7, .2, 1), transform 0.7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media print {
  .hund-header,
  .hund-scroll-progress,
  .hund-hero,
  .site-footer,
  .cta-band,
  .hund-nav-toggle {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
