@font-face {
  font-family: "Cantata One";
  src: url("fonts/CantataOne-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Dancing Script";
  src: url("fonts/DancingScript-Bold.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-ExtraBold.woff2") format("woff2");
  font-display: swap;
  font-weight: 800;
}

:root {
  --forest: #1a2e20;
  --forest-soft: #294331;
  --moss: #aeb94a;
  --moss-dark: #7f8d2d;
  --cream: #f7eed2;
  --paper: #fcf9ef;
  --rose: #d8a0b8;
  --gold: #d6c27a;
  --ink: #263129;
  --muted: #687268;
  --white: #fffdf7;
  --line: rgba(26, 46, 32, 0.14);
  --shadow: 0 20px 55px rgba(26, 46, 32, 0.15);
  --hero-wash:
    linear-gradient(90deg, rgba(13, 30, 20, 0.84) 0%, rgba(13, 30, 20, 0.70) 26%, rgba(13, 30, 20, 0.42) 48%, rgba(13, 30, 20, 0.16) 70%, rgba(13, 30, 20, 0.03) 100%),
    linear-gradient(0deg, rgba(13, 30, 20, 0.44) 0%, rgba(13, 30, 20, 0.16) 48%, rgba(13, 30, 20, 0.03) 100%);
  --hero-text-shadow:
    0 1px 2px rgba(4, 10, 7, 0.98),
    0 3px 12px rgba(4, 10, 7, 0.90),
    0 10px 28px rgba(4, 10, 7, 0.62);
  --radius: 24px;
  --max: 1200px;
  --display: "Cantata One", Georgia, serif;
  --script: "Dancing Script", cursive;
  --body: "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.75 var(--body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--cream);
  background: var(--forest);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  --header-progress: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 88px;
  margin: auto;
  padding: 12px max(24px, calc((100vw - 1200px) / 2));
  border: 0 solid transparent;
  border-radius: 0;
  background: rgba(18, 43, 28, 0.5);
  box-shadow: inset 0 -1px rgba(247, 238, 210, 0.12);
  backdrop-filter: blur(10px);
  isolation: isolate;
  transition: top 200ms ease, width 200ms ease, min-height 200ms ease, padding 200ms ease, border-radius 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: rgba(239, 228, 198, 0.98);
  opacity: var(--header-progress);
  content: "";
  pointer-events: none;
  transition: opacity 80ms linear;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  top: 8px;
  width: min(calc(100% - 36px), 1240px);
  min-height: 74px;
  padding: 8px 10px 8px 16px;
  border-width: 1px;
  border-color: rgba(72, 69, 48, 0.16);
  border-radius: 999px;
  background: rgba(18, 43, 28, 0.5);
  box-shadow: 0 15px 38px rgba(10, 25, 15, 0.2);
}

.site-header:not(.is-scrolled) .brand__name strong,
.site-header:not(.is-scrolled) .primary-nav > ul > li > a,
.site-header:not(.is-scrolled) .nav-main-link {
  color: var(--cream);
}

.site-header:not(.is-scrolled) .brand__name span,
.site-header:not(.is-scrolled) .submenu-button {
  color: var(--moss);
}

.site-header:not(.is-scrolled) .nav-contact {
  color: var(--cream) !important;
  border-color: rgba(174, 185, 74, 0.8);
}

.site-header:not(.is-scrolled) .menu-toggle {
  color: var(--cream);
  border-color: rgba(247, 238, 210, 0.3);
}

.site-header.is-light .brand__name strong,
.site-header.is-light .primary-nav > ul > li > a,
.site-header.is-light .nav-main-link,
.site-header.is-light .menu-toggle {
  color: var(--forest);
}

.site-header.is-light .brand__name span,
.site-header.is-light .submenu-button {
  color: #78842f;
}

.site-header.is-light .nav-contact {
  color: var(--forest) !important;
  border-color: rgba(174, 185, 74, 0.95);
}

.site-header.is-light .primary-nav > ul > li > a:hover,
.site-header.is-light .primary-nav > ul > li > a:focus-visible,
.site-header.is-light .primary-nav > ul > li > a[aria-current="page"],
.site-header.is-light .nav-main-link:hover,
.site-header.is-light .nav-main-link:focus-visible,
.site-header.is-light .submenu-button:hover,
.site-header.is-light .submenu-button:focus-visible {
  color: var(--moss-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 225px;
  color: var(--cream);
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
}

.brand__name {
  display: grid;
  align-items: start;
  line-height: 0.95;
}

.brand__name strong {
  color: var(--cream);
  font: 700 17px var(--script);
  letter-spacing: 0;
  text-transform: none;
}

.site-header .brand__name strong { color: var(--forest); }
.site-header .brand__name span { color: #78842f; }

.brand__name span {
  margin-top: 5px;
  color: var(--moss);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.55vw, 25px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a,
.submenu-button {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: color 170ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"],
.submenu-button:hover,
.submenu-button:focus-visible {
  color: #78842f;
}

.nav-main-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.submenu-button {
  display: none;
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  display: grid !important;
  width: 235px;
  gap: 0 !important;
  padding: 12px !important;
  border: 1px solid rgba(247, 238, 210, 0.14);
  border-radius: 16px;
  background: rgba(26, 46, 32, 0.98);
  box-shadow: 0 22px 48px rgba(10, 25, 15, 0.28);
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms;
}

.submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 26px;
  content: "";
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open .submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.submenu a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 400;
}

.submenu a:hover,
.submenu a:focus-visible,
.submenu a[aria-current="page"] {
  color: var(--forest);
  background: var(--moss);
}

.nav-contact {
  padding: 12px 20px;
  border: 1px solid var(--moss);
  border-radius: 999px;
  color: var(--forest) !important;
}

.nav-contact:hover,
.nav-contact:focus-visible,
.nav-contact[aria-current="page"] {
  color: var(--forest) !important;
  background: var(--moss);
}

.site-header:not(.is-scrolled) .primary-nav > ul > li > a:hover,
.site-header:not(.is-scrolled) .primary-nav > ul > li > a:focus-visible,
.site-header:not(.is-scrolled) .primary-nav > ul > li > a[aria-current="page"],
.site-header:not(.is-scrolled) .nav-main-link:hover,
.site-header:not(.is-scrolled) .nav-main-link:focus-visible,
.site-header:not(.is-scrolled) .submenu-button:hover,
.site-header:not(.is-scrolled) .submenu-button:focus-visible {
  color: var(--moss);
}

.site-header:not(.is-scrolled) .nav-contact:hover,
.site-header:not(.is-scrolled) .nav-contact:focus-visible {
  color: var(--forest) !important;
  background: var(--moss);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(880px, 94vh);
  margin: 0 auto;
  overflow: hidden;
  background: var(--forest);
}

.hero__image,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 68% center;
}

.hero:not(.page-hero) .hero__image { object-position: center 46%; }
.page-hero--dogwalking .hero__image { object-position: 50% 53%; }
.hero:not(.page-hero) .hero__wash {
  background: var(--hero-wash);
}

.hero__wash {
  background: var(--hero-wash);
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 150px 0 95px;
}

.hero__copy {
  max-width: 690px;
}

.hero .eyebrow,
.hero h1,
.hero .script,
.hero__lead {
  text-shadow: var(--hero-text-shadow);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  margin-bottom: 28px;
  color: var(--cream);
  font-size: clamp(54px, 6.3vw, 92px);
  letter-spacing: 0;
}

.script {
  color: var(--moss);
  font-family: var(--script);
  font-weight: 700;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 253, 247, 0.94);
  font-size: clamp(17px, 1.5vw, 21px);
}

.hero__actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--moss);
  border-radius: 7px;
  color: var(--forest);
  background: var(--moss);
  font-size: 13px;
  font-weight: 800;
  text-shadow: none;
  transition: color 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.button:hover,
.button:focus-visible,
.button:active {
  border-color: var(--forest);
  color: var(--cream);
  background: var(--forest);
  text-shadow: none;
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.hero .button:not(.button--outline):hover,
.hero .button:not(.button--outline):focus-visible,
.hero .button:not(.button--outline):active {
  border-color: var(--cream);
  color: var(--forest);
  background: var(--cream);
}

.button--outline {
  color: var(--cream);
  background: transparent;
}

.hero .button--outline {
  background: rgba(13, 30, 20, 0.28);
  box-shadow: 0 7px 18px rgba(4, 10, 7, 0.16);
  text-shadow: 0 1px 3px rgba(4, 10, 7, 0.42);
  backdrop-filter: blur(8px);
}

.button--outline:hover,
.button--outline:focus-visible,
.button--outline:active {
  border-color: var(--moss);
  color: var(--forest);
  background: var(--moss);
  box-shadow: 0 4px 12px rgba(4, 10, 7, 0.12);
  text-shadow: none;
}

.button--cream {
  border-color: var(--cream);
  color: var(--forest);
  background: var(--cream);
}

.button--cream:hover,
.button--cream:focus-visible,
.button--cream:active {
  color: var(--cream);
  background: transparent;
}

.hero__badge {
  position: absolute;
  right: clamp(95px, 11vw, 180px);
  bottom: 36px;
  z-index: 2;
  display: grid;
  width: 145px;
  height: 145px;
  place-content: center;
  border: 1px solid rgba(247, 238, 210, 0.42);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(26, 46, 32, 0.66);
  text-align: center;
  backdrop-filter: blur(12px);
}

.hero__badge strong {
  color: var(--moss);
  font: 700 32px var(--script);
}

.hero__badge span {
  max-width: 112px;
  margin: 0 auto;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__stamp {
  position: absolute;
  right: clamp(68px, 9vw, 148px);
  bottom: clamp(58px, 8vw, 96px);
  z-index: 2;
  display: grid;
  width: clamp(132px, 13vw, 170px);
  height: clamp(132px, 13vw, 170px);
  place-content: center;
  border: 2px solid rgba(174, 185, 74, 0.9);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(26, 46, 32, 0.68);
  box-shadow: inset 0 0 0 7px rgba(174, 185, 74, 0.13), 0 18px 38px rgba(10, 19, 14, 0.24);
  text-align: center;
  transform: rotate(-8deg);
  backdrop-filter: blur(12px);
}

.hero__stamp::after {
  position: absolute;
  inset: 11px;
  border: 1px dashed rgba(247, 238, 210, 0.45);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero__stamp strong {
  display: block;
  color: var(--moss);
  font: 700 clamp(30px, 3.2vw, 42px) var(--script);
  line-height: 0.95;
  text-transform: none;
}

.hero__stamp span {
  display: block;
  max-width: 112px;
  margin: 8px auto 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-hero {
  min-height: 610px;
}

.page-hero .hero__content {
  padding-top: 185px;
}

.page-hero h1 {
  max-width: 790px;
  font-size: clamp(52px, 6vw, 84px);
}

.page-hero .hero__wash {
  background: var(--hero-wash);
}

.page-hero--dogwalking .hero__wash {
  background: var(--hero-wash);
}

.page-hero--training .hero__image {
  object-position: center 55%;
}

@media (min-width: 901px) {
  .page-hero--social-walk .hero__image {
    transform: scale(1.25);
    transform-origin: right bottom;
  }
}

@media (min-width: 901px) {
  .page-hero--einzeltraining .hero__image {
    transform: translateX(5%) scale(1.1);
    transform-origin: center;
  }
}

.page-hero--alltagsgruppe .hero__image {
  object-position: 58% 46%;
}

.page-hero--alltagsgruppe .hero__wash {
  background:
    linear-gradient(90deg, rgba(13, 30, 20, 0.87) 0%, rgba(13, 30, 20, 0.74) 30%, rgba(13, 30, 20, 0.44) 52%, rgba(13, 30, 20, 0.14) 76%, rgba(13, 30, 20, 0.03) 100%),
    linear-gradient(0deg, rgba(13, 30, 20, 0.46) 0%, rgba(13, 30, 20, 0.16) 52%, rgba(13, 30, 20, 0.03) 100%);
}

.page-hero--einzeltraining .hero__wash {
  background:
    linear-gradient(90deg, rgba(13, 30, 20, 0.84) 0%, rgba(13, 30, 20, 0.71) 30%, rgba(13, 30, 20, 0.43) 52%, rgba(13, 30, 20, 0.16) 74%, rgba(13, 30, 20, 0.03) 100%),
    linear-gradient(0deg, rgba(13, 30, 20, 0.48) 0%, rgba(13, 30, 20, 0.17) 50%, rgba(13, 30, 20, 0.03) 100%);
}

.page-hero--veranstaltungen .hero__image {
  object-position: center 58%;
}

.page-hero--veranstaltungen .hero__wash {
  background:
    linear-gradient(90deg, rgba(13, 30, 20, 0.74) 0%, rgba(13, 30, 20, 0.60) 30%, rgba(13, 30, 20, 0.34) 54%, rgba(13, 30, 20, 0.11) 78%, rgba(13, 30, 20, 0.02) 100%),
    linear-gradient(0deg, rgba(13, 30, 20, 0.40) 0%, rgba(13, 30, 20, 0.14) 52%, rgba(13, 30, 20, 0.02) 100%);
}

.page-hero--alltagsgruppe,
.page-hero--einzeltraining,
.page-hero--veranstaltungen {
  --hero-text-shadow:
    0 1px 2px rgba(4, 10, 7, 0.92),
    0 3px 9px rgba(4, 10, 7, 0.76),
    0 8px 20px rgba(4, 10, 7, 0.44);
}

.page-hero--about .hero__image {
  object-position: center 45%;
}

.page-hero--abmeldung .hero__image {
  object-position: center 68%;
}

.page-hero--danke .hero__image {
  object-position: 70% 18%;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 140px) 0;
}

.section--narrow {
  width: min(calc(100% - 48px), 900px);
}

.section--compact {
  padding-block: clamp(65px, 7vw, 95px);
}

.page-dogwalking .section {
  padding-block: clamp(62px, 7vw, 96px);
}

.page-dogwalking .section--compact {
  padding-block: clamp(50px, 5.8vw, 76px);
}

.page-dogwalking .dogwalking-trust__inner,
.page-dogwalking .band__inner {
  padding-block: clamp(66px, 7.5vw, 98px);
}

.page-dogwalking .faq {
  padding-bottom: clamp(38px, 4.5vw, 58px);
}

.page-dogwalking .faq + .section {
  padding-top: clamp(30px, 3.5vw, 46px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--moss-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::before {
  width: 35px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section h2,
.band h2,
.cta h2 {
  margin-bottom: 27px;
  color: var(--forest);
  font-size: clamp(40px, 5vw, 67px);
  letter-spacing: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 65px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
  margin-top: clamp(28px, 4vw, 52px);
}

.text-columns p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
}

.text-columns p + p {
  margin-top: 0;
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 105px);
  align-items: center;
}

.intro-grid__copy > p,
.split__copy > p {
  color: var(--muted);
  font-size: 17px;
}

.intro-grid__visual,
.split__visual {
  position: relative;
}

.intro-grid__visual img,
.split__visual img {
  width: 100%;
  height: clamp(440px, 48vw, 620px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-grid__visual::before {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 38%;
  height: 38%;
  border-top: 3px solid var(--moss);
  border-right: 3px solid var(--moss);
  border-radius: 0 20px 0 0;
  content: "";
}

.home-qualifications {
  color: var(--cream);
  background: var(--forest);
}

.home-qualifications__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 5vw, 64px);
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto;
  padding-block: clamp(68px, 8vw, 108px);
}

.home-qualifications .section-label {
  color: var(--moss);
}

.home-qualifications h2 {
  max-width: none;
  margin: 0 0 24px;
  color: var(--cream);
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.08;
}

.home-qualifications h2 .script {
  color: var(--moss);
}

.home-qualifications__heading p {
  max-width: 62ch;
  margin: 0;
  color: rgba(247, 238, 210, 0.72);
  font-size: 16px;
}

.home-qualifications__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: clamp(6px, 1vw, 16px);
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-qualifications__list li {
  position: relative;
  display: grid;
  min-height: 220px;
  padding: 38px 8px;
  place-items: center;
  color: var(--cream);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  isolation: isolate;
}

.home-qualifications__list li > span:last-child {
  position: relative;
  z-index: 1;
  max-width: 21ch;
  text-wrap: balance;
}

.home-qualifications__icon {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  display: grid;
  width: clamp(112px, 10.5vw, 148px);
  height: clamp(112px, 10.5vw, 148px);
  place-items: center;
  color: var(--moss);
  border: 3px double rgba(174, 185, 74, 0.8);
  border-radius: 48% 52% 46% 54% / 52% 47% 53% 48%;
  background: rgba(174, 185, 74, 0.035);
  box-shadow:
    0 0 0 4px rgba(174, 185, 74, 0.08),
    inset 0 0 0 4px rgba(174, 185, 74, 0.08);
  opacity: 0.48;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.home-qualifications__icon::before {
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(174, 185, 74, 0.92);
  border-radius: inherit;
  content: "";
}

.home-qualifications__icon::after {
  position: absolute;
  inset: 18px;
  border-top: 2px solid rgba(174, 185, 74, 0.42);
  border-bottom: 2px solid rgba(174, 185, 74, 0.42);
  border-radius: 50%;
  content: "";
  transform: rotate(24deg);
}

.home-qualifications__list li:nth-child(2n) .home-qualifications__icon {
  border-radius: 53% 47% 52% 48% / 46% 54% 48% 52%;
  transform: translate(-50%, -50%) rotate(5deg);
}

.home-qualifications__list li:nth-child(3n) .home-qualifications__icon {
  border-radius: 46% 54% 49% 51% / 54% 48% 52% 46%;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.home-qualifications__list li:nth-child(4n) .home-qualifications__icon {
  transform: translate(-50%, -50%) rotate(8deg);
}

.home-qualifications__icon svg {
  position: relative;
  z-index: 1;
  width: clamp(42px, 4vw, 54px);
  height: clamp(42px, 4vw, 54px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

/* Seven deliberately different style studies for the qualification seals. */
.home-qualifications__list li:nth-child(1) > span:last-child {
  font-family: var(--body);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-qualifications__list li:nth-child(1) .home-qualifications__icon {
  border: 3px solid rgba(174, 185, 74, 0.76);
  border-radius: 39% 61% 45% 55% / 57% 42% 58% 43%;
  box-shadow:
    -5px 4px 0 rgba(174, 185, 74, 0.13),
    4px -3px 0 rgba(247, 238, 210, 0.06);
  transform: translate(-50%, -50%) rotate(-9deg);
}

.home-qualifications__list li:nth-child(1) .home-qualifications__icon::before {
  inset: 6px 11px 10px 5px;
  border: 2px solid rgba(174, 185, 74, 0.56);
}

.home-qualifications__list li:nth-child(1) .home-qualifications__icon::after {
  inset: 22px 13px;
  border: 0;
  border-top: 3px solid rgba(174, 185, 74, 0.4);
  border-bottom: 1px solid rgba(174, 185, 74, 0.7);
  border-radius: 0;
  transform: rotate(-17deg);
}

.home-qualifications__list li:nth-child(2) > span:last-child {
  font-family: var(--script);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.2;
}

.home-qualifications__list li:nth-child(2) .home-qualifications__icon {
  border: 1px solid rgba(214, 194, 122, 0.9);
  border-radius: 50%;
  color: var(--gold);
  box-shadow:
    0 0 0 6px rgba(214, 194, 122, 0.06),
    inset 0 0 0 5px rgba(214, 194, 122, 0.08);
  transform: translate(-50%, -50%) rotate(3deg);
}

.home-qualifications__list li:nth-child(2) .home-qualifications__icon::before {
  inset: 8px;
  border: 1px dotted currentColor;
}

.home-qualifications__list li:nth-child(2) .home-qualifications__icon::after {
  inset: -10px 18px;
  border: 0;
  border-right: 2px solid rgba(214, 194, 122, 0.55);
  border-left: 2px solid rgba(214, 194, 122, 0.55);
  border-radius: 50%;
  transform: rotate(38deg);
}

.home-qualifications__list li:nth-child(3) > span:last-child {
  font-family: var(--body);
  font-size: clamp(11px, 0.88vw, 13px);
  font-weight: 800;
  letter-spacing: 0.065em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-qualifications__list li:nth-child(3) .home-qualifications__icon {
  border: 5px double rgba(174, 185, 74, 0.82);
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(174, 185, 74, 0.2),
    inset 0 0 0 7px rgba(174, 185, 74, 0.07);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.home-qualifications__list li:nth-child(3) .home-qualifications__icon::before {
  inset: 11px;
  border: 2px dashed currentColor;
}

.home-qualifications__list li:nth-child(3) .home-qualifications__icon::after {
  inset: 24px;
  border: 2px solid rgba(174, 185, 74, 0.45);
  border-radius: 50%;
  transform: none;
}

.home-qualifications__list li:nth-child(4) > span:last-child {
  font-family: var(--display);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.42;
}

.home-qualifications__list li:nth-child(4) .home-qualifications__icon {
  border: 4px double rgba(247, 238, 210, 0.63);
  border-radius: 50%;
  color: var(--cream);
  box-shadow: inset 0 0 0 8px rgba(247, 238, 210, 0.04);
  transform: translate(-50%, -50%);
}

.home-qualifications__list li:nth-child(4) .home-qualifications__icon::before {
  inset: 10px;
  border: 1px solid rgba(247, 238, 210, 0.6);
}

.home-qualifications__list li:nth-child(4) .home-qualifications__icon::after {
  inset: 19px;
  border: 0;
  border-top: 1px solid rgba(247, 238, 210, 0.65);
  border-bottom: 1px solid rgba(247, 238, 210, 0.65);
  border-radius: 0;
  transform: rotate(90deg);
}

.home-qualifications__list li:nth-child(5) > span:last-child {
  font-family: var(--body);
  font-size: clamp(12px, 0.98vw, 14px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.52;
  transform: rotate(-1.5deg);
}

.home-qualifications__list li:nth-child(5) .home-qualifications__icon {
  border: 2px solid rgba(174, 185, 74, 0.72);
  border-radius: 58% 42% 62% 38% / 43% 57% 39% 61%;
  box-shadow:
    3px 2px 0 rgba(174, 185, 74, 0.17),
    -3px -2px 0 rgba(174, 185, 74, 0.1);
  transform: translate(-50%, -50%) rotate(7deg);
}

.home-qualifications__list li:nth-child(5) .home-qualifications__icon::before {
  inset: 7px 13px 12px 6px;
  border: 1px solid currentColor;
}

.home-qualifications__list li:nth-child(5) .home-qualifications__icon::after {
  inset: 15px 25px;
  border: 0;
  border-right: 2px solid rgba(174, 185, 74, 0.55);
  border-left: 1px solid rgba(174, 185, 74, 0.38);
  border-radius: 45%;
  transform: rotate(-28deg);
}

.home-qualifications__list li:nth-child(6) > span:last-child {
  font-family: var(--display);
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.home-qualifications__list li:nth-child(6) .home-qualifications__icon {
  border: 1px solid rgba(214, 194, 122, 0.82);
  border-radius: 4px;
  color: var(--gold);
  box-shadow:
    7px 7px 0 rgba(214, 194, 122, 0.08),
    inset 0 0 0 6px rgba(214, 194, 122, 0.045);
  transform: translate(-50%, -50%) rotate(2deg);
}

.home-qualifications__list li:nth-child(6) .home-qualifications__icon::before {
  inset: 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.home-qualifications__list li:nth-child(6) .home-qualifications__icon::after {
  inset: 18px;
  border: 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  transform: rotate(-45deg);
}

.home-qualifications__list li:nth-child(7) > span:last-child {
  font-family: var(--script);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.22;
}

.home-qualifications__list li:nth-child(7) .home-qualifications__icon {
  border: 2px solid rgba(174, 185, 74, 0.72);
  border-radius: 63% 37% 58% 42% / 41% 62% 38% 59%;
  box-shadow:
    inset 8px -4px 0 rgba(174, 185, 74, 0.07),
    -5px 5px 0 rgba(174, 185, 74, 0.08);
  transform: translate(-50%, -50%) rotate(-6deg);
}

.home-qualifications__list li:nth-child(7) .home-qualifications__icon::before {
  inset: 10px 7px 8px 12px;
  border: 1px dashed currentColor;
}

.home-qualifications__list li:nth-child(7) .home-qualifications__icon::after {
  inset: 17px 29px;
  border: 0;
  border-right: 2px solid rgba(174, 185, 74, 0.6);
  border-left: 2px solid rgba(174, 185, 74, 0.28);
  border-radius: 50%;
  transform: rotate(42deg);
}

/* Muted color studies keep the experiments connected to the existing palette. */
.home-qualifications__list li::before {
  position: absolute;
  z-index: -2;
  content: "";
  pointer-events: none;
}

.home-qualifications__list li:nth-child(1) {
  color: #d3e1dc;
}

.home-qualifications__list li:nth-child(1)::before {
  width: 118px;
  height: 42px;
  background: rgba(104, 154, 137, 0.15);
  clip-path: polygon(3% 24%, 96% 0, 88% 78%, 0 100%);
  transform: rotate(-8deg);
}

.home-qualifications__list li:nth-child(1) .home-qualifications__icon {
  color: #7eb09e;
  border-color: rgba(126, 176, 158, 0.86);
}

.home-qualifications__list li:nth-child(1) .home-qualifications__icon::before {
  border-color: rgba(174, 185, 74, 0.68);
}

.home-qualifications__list li:nth-child(2) {
  color: #efbfd2;
}

.home-qualifications__list li:nth-child(2)::before {
  width: 128px;
  height: 128px;
  border: 1px solid rgba(216, 160, 184, 0.2);
  border-radius: 43% 57% 50% 50% / 58% 46% 54% 42%;
  transform: rotate(12deg);
}

.home-qualifications__list li:nth-child(2) .home-qualifications__icon {
  color: #e0afc1;
  border-color: rgba(214, 194, 122, 0.82);
  background: rgba(216, 160, 184, 0.055);
}

.home-qualifications__list li:nth-child(3) {
  color: #f7eed2;
}

.home-qualifications__list li:nth-child(3)::before {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(174, 185, 74, 0.11);
  box-shadow: 9px 5px 0 rgba(214, 194, 122, 0.055);
}

.home-qualifications__list li:nth-child(3) .home-qualifications__icon {
  color: #c3ce56;
  border-color: rgba(195, 206, 86, 0.9);
  background: rgba(174, 185, 74, 0.08);
  opacity: 0.58;
}

.home-qualifications__list li:nth-child(4) {
  color: #e5d195;
}

.home-qualifications__list li:nth-child(4)::before {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(214, 194, 122, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 9px rgba(247, 238, 210, 0.025);
}

.home-qualifications__list li:nth-child(4) .home-qualifications__icon {
  color: #eadcae;
  border-color: rgba(234, 220, 174, 0.75);
  background: rgba(214, 194, 122, 0.04);
}

.home-qualifications__list li:nth-child(5) {
  color: #e0ae91;
}

.home-qualifications__list li:nth-child(5)::before {
  width: 124px;
  height: 50px;
  border-radius: 58% 42% 52% 48%;
  background: rgba(190, 119, 86, 0.11);
  transform: rotate(7deg);
}

.home-qualifications__list li:nth-child(5) .home-qualifications__icon {
  color: #ce8d6e;
  border-color: rgba(206, 141, 110, 0.82);
  box-shadow:
    3px 2px 0 rgba(206, 141, 110, 0.14),
    -3px -2px 0 rgba(214, 194, 122, 0.07);
}

.home-qualifications__list li:nth-child(6) {
  color: #bad1cd;
}

.home-qualifications__list li:nth-child(6)::before {
  width: 116px;
  height: 116px;
  border: 8px solid rgba(111, 153, 146, 0.055);
  transform: translate(6px, 6px) rotate(2deg);
}

.home-qualifications__list li:nth-child(6) .home-qualifications__icon {
  color: #85aaa4;
  border-color: rgba(133, 170, 164, 0.86);
  box-shadow:
    7px 7px 0 rgba(133, 170, 164, 0.1),
    inset 0 0 0 6px rgba(247, 238, 210, 0.025);
}

.home-qualifications__list li:nth-child(7) {
  color: #d8dc8b;
}

.home-qualifications__list li:nth-child(7)::before {
  width: 126px;
  height: 104px;
  border: 1px solid rgba(174, 185, 74, 0.19);
  border-radius: 67% 33% 62% 38% / 44% 66% 34% 56%;
  background: rgba(174, 185, 74, 0.035);
  transform: rotate(-8deg);
}

.home-qualifications__list li:nth-child(7) .home-qualifications__icon {
  color: #b8c458;
  border-color: rgba(184, 196, 88, 0.8);
}

/* Clean comparison: one quiet visual language without seals or color fields. */
.home-qualifications__list li:nth-child(n) {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 7px 24px;
  color: var(--cream);
}

.home-qualifications__list li:nth-child(n)::before {
  display: none;
}

.home-qualifications__list li:nth-child(n) > span:last-child {
  max-width: 20ch;
  color: rgba(247, 238, 210, 0.94);
  font-family: var(--display);
  font-size: clamp(16px, 1.35vw, 20px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.28;
  text-transform: none;
  transform: none;
}

.home-qualifications__list li:nth-child(n) .home-qualifications__icon {
  position: relative;
  inset: auto;
  z-index: auto;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  color: var(--moss);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
}

.home-qualifications__list li:nth-child(n) .home-qualifications__icon::before {
  position: absolute;
  top: auto;
  right: 4px;
  bottom: -10px;
  left: 4px;
  display: block;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: rgba(174, 185, 74, 0.52);
  content: "";
}

.home-qualifications__list li:nth-child(n) .home-qualifications__icon::after {
  display: none;
}

.home-qualifications__list li:nth-child(n) .home-qualifications__icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.35;
}

@media (max-width: 1020px) {
  .home-qualifications__list {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    overflow-x: auto;
    padding: 4px 2px 18px;
    scrollbar-color: rgba(174, 185, 74, 0.55) rgba(247, 238, 210, 0.08);
    scrollbar-width: thin;
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 27px;
}

.category-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-card img,
.category-card__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-card img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card--dogwalking img {
  object-position: 52% 52%;
  transform: scale(1.32);
}

.category-card--dogwalking:hover img {
  transform: scale(1.36);
}

.category-card__wash {
  background: linear-gradient(0deg, rgba(26, 46, 32, 0.96), rgba(26, 46, 32, 0.04) 75%);
}

.category-card__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 36px;
  color: var(--cream);
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 38px;
}

.category-card p {
  max-width: 520px;
  margin-bottom: 18px;
  color: rgba(255, 253, 247, 0.77);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.arrow-link::after {
  content: "↗";
  transition: transform 170ms ease;
}

.arrow-link:hover::after,
.arrow-link:focus-visible::after {
  transform: translate(3px, -3px);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.training-card {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--cream);
  background: var(--forest);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.training-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(.96); transition: transform 500ms ease; }
.training-card--social-walk > img {
  object-position: 100% center;
  transform: scale(1.45);
  transform-origin: right center;
}
.training-card__wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,48,31,.12) 5%, rgba(21,48,31,.42) 46%, rgba(10,25,15,.94) 100%); }
.training-card__content { position: relative; z-index: 1; display: flex; min-height: 390px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 28px; }
.training-card--featured { grid-column: span 2; }
.training-card--featured .training-card__content { padding-right: 42%; }

.training-card:hover {
  border-color: rgba(174, 185, 74, 0.65);
  box-shadow: 0 15px 35px rgba(26, 46, 32, 0.1);
  transform: translateY(-5px);
}
.training-card:hover > img { transform: scale(1.035); }
.training-card--social-walk:hover > img { transform: scale(1.49); }

.training-card__number {
  margin-bottom: auto;
  color: var(--moss);
  font: 700 26px var(--script);
}

.training-card__stamp {
  position: relative;
  display: inline-grid;
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  place-items: center;
  margin: 0 0 18px 2px;
  border: 2px solid rgba(174, 185, 74, 0.86);
  border-radius: 50%;
  color: var(--moss);
  background: rgba(13, 30, 20, 0.90);
  box-shadow: inset 0 0 0 6px rgba(174, 185, 74, 0.14), 0 10px 24px rgba(4, 10, 7, 0.34);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.training-card__stamp::after {
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(247, 238, 210, 0.38);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.training-card h3 {
  margin: 0 0 11px;
  color: var(--cream);
  font-size: 28px;
}

.training-card p {
  margin-bottom: 22px;
  color: rgba(247, 238, 210, 0.86);
  font-size: 14px;
}

.training-teasers {
  display: grid;
  gap: clamp(12px, 1.5vw, 20px);
  margin-top: clamp(42px, 5vw, 68px);
}

.training-teaser {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(34px, 5vw, 66px) clamp(18px, 3vw, 34px);
  border-top: 1px solid rgba(26, 46, 32, 0.08);
  border-bottom: 1px solid rgba(26, 46, 32, 0.08);
  background: var(--training-teaser-bg, rgba(247, 238, 210, 0.22));
  color: var(--forest);
}

.training-teaser:nth-child(1) { --training-teaser-bg: linear-gradient(90deg, rgba(174, 185, 74, 0.075), rgba(252, 249, 239, 0.48)); }
.training-teaser:nth-child(2) { --training-teaser-bg: linear-gradient(90deg, rgba(216, 160, 184, 0.08), rgba(252, 249, 239, 0.42)); }
.training-teaser:nth-child(3) { --training-teaser-bg: linear-gradient(90deg, rgba(214, 194, 122, 0.1), rgba(252, 249, 239, 0.44)); }
.training-teaser:nth-child(4) { --training-teaser-bg: linear-gradient(90deg, rgba(41, 67, 49, 0.055), rgba(252, 249, 239, 0.48)); }
.training-teaser:nth-child(5) { --training-teaser-bg: linear-gradient(90deg, rgba(174, 185, 74, 0.055), rgba(216, 160, 184, 0.045)); }
.training-teaser:nth-child(6) { --training-teaser-bg: linear-gradient(90deg, rgba(91, 122, 110, 0.07), rgba(252, 249, 239, 0.44)); }
.training-teaser:nth-child(7) { --training-teaser-bg: linear-gradient(90deg, rgba(214, 194, 122, 0.075), rgba(41, 67, 49, 0.04)); }

.training-teaser--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
}

.training-teaser--reverse .training-teaser__media {
  grid-column: 2;
}

.training-teaser--reverse .training-teaser__copy {
  grid-column: 1;
  grid-row: 1;
}

.training-teaser__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: rgba(174, 185, 74, 0.12);
  box-shadow: 0 18px 48px rgba(26, 46, 32, 0.12);
}

.training-teaser__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 46, 32, 0.02), rgba(26, 46, 32, 0.18));
  content: "";
  pointer-events: none;
}

.training-teaser__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.98);
  transition: transform 520ms ease;
}

.training-teaser__copy {
  display: block;
  max-width: 680px;
  padding-right: 112px;
  position: relative;
}

.training-teaser__number {
  display: inline-block;
  margin-right: 14px;
  color: var(--moss-dark);
  font: 700 30px var(--script);
}

.training-teaser__label {
  display: inline-block;
  color: var(--moss-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.training-teaser__stamp {
  position: absolute;
  top: -8px;
  right: 0;
  display: inline-grid;
  width: 82px;
  height: 82px;
  margin-left: 0;
  place-items: center;
  border: 2px solid rgba(127, 141, 45, 0.76);
  border-radius: 50%;
  color: var(--moss-dark);
  background: rgba(252, 249, 239, 0.78);
  box-shadow: inset 0 0 0 5px rgba(174, 185, 74, 0.1), 0 10px 26px rgba(26, 46, 32, 0.08);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.training-teaser__stamp::after {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(127, 141, 45, 0.55);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.training-teaser h3 {
  margin: 16px 0 14px;
  color: var(--forest);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.training-teaser p {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 19px);
}

.training-teaser:hover .training-teaser__media img {
  transform: scale(1.035);
}

.training-teaser:hover .arrow-link::after,
.training-teaser:focus-visible .arrow-link::after {
  transform: translate(3px, -3px);
}

.band {
  color: var(--cream);
  background: var(--forest);
}

.band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 75px;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(80px, 9vw, 125px) 0;
}

.band h2 {
  color: var(--cream);
}

.band p {
  color: rgba(255, 253, 247, 0.7);
}

.band__points-title {
  margin: 0 0 22px;
  color: var(--cream) !important;
  font: 400 25px/1.25 var(--display);
}

.band__points,
.feature-list,
.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.band__points li,
.feature-list li,
.check-list li {
  position: relative;
  padding-left: 29px;
}

.band__points li::before,
.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid var(--moss);
  border-left: 2px solid var(--moss);
  content: "";
  transform: rotate(-45deg);
}

.feature-list,
.check-list {
  margin: 28px 0 35px;
  color: var(--muted);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fact {
  padding: 27px;
  border-top: 3px solid var(--moss);
  background: var(--white);
  box-shadow: 0 13px 32px rgba(26, 46, 32, 0.08);
}

.fact strong {
  display: block;
  margin-bottom: 9px;
  color: var(--forest);
  font: 400 25px var(--display);
}

.fact p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.fact--wide {
  grid-column: 1 / -1;
}

@media (min-width: 701px) {
  .fact--wide {
    display: grid;
    grid-template-columns: minmax(190px, 0.75fr) repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 28px;
  }

  .fact--wide strong {
    margin-bottom: 0;
  }
}

.about-narrative {
  display: block;
}

.about-narrative__content {
  max-width: 860px;
}

.about-narrative__content p {
  max-width: 78ch;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.85;
}

.about-narrative__content p + p {
  margin-top: 18px;
}

.about-pullquote {
  max-width: 780px;
  margin: clamp(34px, 5vw, 58px) 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(127, 141, 45, 0.35);
  color: var(--forest);
  font: 400 clamp(28px, 3.6vw, 48px)/1.1 var(--display);
}

.about-pullquote span {
  display: block;
  margin-top: 10px;
  color: var(--moss);
  font-family: var(--script);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1;
}

.about-image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(18px, 3vw, 28px);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 0 0 clamp(86px, 9vw, 128px);
}

.about-image-band img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image-band__main img {
  height: clamp(430px, 46vw, 610px);
  object-position: center 42%;
}

.about-image-band__stack {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.about-image-band__stack img {
  height: clamp(205px, 22vw, 291px);
}

.about-band__inner {
  align-items: start;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(255, 253, 247, 0.18);
  list-style: none;
}

.about-values li {
  min-height: 150px;
  padding: 28px;
  background: rgba(16, 43, 29, 0.72);
}

.about-values strong,
.about-values span {
  display: block;
}

.about-values strong {
  margin-bottom: 10px;
  color: var(--cream);
  font: 400 28px/1.05 var(--display);
}

.about-values span {
  color: rgba(255, 253, 247, 0.66);
}

.about-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 30px;
}

.about-quotes blockquote {
  position: relative;
  margin: 0;
  padding: 24px 20px 20px 34px;
  border-left: 2px solid var(--moss);
}

.about-quotes blockquote::before {
  content: "“";
  position: absolute;
  top: -14px;
  left: 13px;
  color: var(--moss);
  font: 400 58px/1 var(--display);
}

.about-quotes strong,
.about-quotes span {
  display: block;
}

.about-quotes strong {
  margin-bottom: 10px;
  color: var(--cream);
  font: 400 28px/1.08 var(--display);
}

.about-quotes span {
  color: rgba(255, 253, 247, 0.72);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .about-quotes {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-quotes blockquote {
    padding: 20px 16px 16px 30px;
  }
}

.about-narrative--soft {
  position: relative;
  isolation: isolate;
}

.about-narrative--soft::before {
  position: absolute;
  inset: clamp(38px, 6vw, 70px) auto auto 50%;
  z-index: -1;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 50%;
  background: rgba(174, 185, 74, 0.08);
  content: "";
  transform: translateX(-10%);
}

.about-narrative--credentials .about-narrative__content {
  max-width: var(--max);
}

.about-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 5vw, 72px);
  margin: clamp(36px, 5vw, 58px) 0 0;
  padding: 0;
  list-style: none;
}

.about-credentials li {
  display: grid;
  grid-template-columns: minmax(92px, 0.3fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 6px clamp(18px, 2vw, 28px);
  padding: clamp(22px, 3vw, 30px) 0;
  border-top: 1px solid var(--line);
}

.about-credentials span {
  display: block;
  grid-row: 1 / span 2;
  padding-top: 5px;
  color: var(--moss-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-credentials strong {
  display: block;
  color: var(--forest);
  font: 400 clamp(24px, 2.5vw, 32px)/1.08 var(--display);
  hyphens: auto;
  overflow-wrap: break-word;
}

.about-credentials p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .about-credentials {
    grid-template-columns: 1fr;
  }
}

.about-dogs {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.about-dogs__image {
  position: relative;
}

.about-dogs__image::before {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 42%;
  border-right: 3px solid var(--moss);
  border-bottom: 3px solid var(--moss);
  border-radius: 0 0 20px 0;
  content: "";
}

.about-dogs__image img {
  width: 100%;
  height: clamp(420px, 48vw, 620px);
  object-fit: cover;
  object-position: center;
  border-radius: 48% 52% 44% 56% / 54% 46% 54% 46%;
  box-shadow: var(--shadow);
}

.about-dogs__text p {
  max-width: 70ch;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.8;
}

.about-dogs__text p + p {
  margin-top: 18px;
}

.dogwalking-bubbles {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr 1.12fr 0.88fr;
  gap: 20px;
  align-items: center;
  margin: 0 auto 72px;
}

.dogwalking-bubble {
  display: grid;
  min-height: 255px;
  padding: 38px;
  border: 1px solid rgba(26, 46, 32, 0.14);
  border-radius: 48% 52% 46% 54% / 54% 42% 58% 46%;
  background: rgba(239, 228, 198, 0.82);
  box-shadow: 0 18px 40px rgba(26, 46, 32, 0.08);
  place-content: center;
}

.dogwalking-bubble--large {
  min-height: 310px;
  border-radius: 42% 58% 51% 49% / 57% 43% 57% 43%;
  background: rgba(247, 238, 210, 0.88);
}

.dogwalking-bubble:nth-child(2) {
  border-color: rgba(127, 141, 45, 0.22);
  background: rgba(174, 185, 74, 0.2);
}

.dogwalking-bubble--tall {
  min-height: 330px;
  padding: 42px;
  border-color: rgba(89, 106, 72, 0.22);
  border-radius: 57% 43% 45% 55% / 44% 57% 43% 56%;
  background: rgba(190, 194, 157, 0.42);
}

.dogwalking-bubble--accent {
  color: var(--cream);
  background: var(--forest-soft);
}

.dogwalking-bubble strong {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font: 400 24px/1.25 var(--display);
}

.dogwalking-bubble--accent strong {
  color: var(--cream);
}

.dogwalking-bubble p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.dogwalking-bubble--accent p {
  color: rgba(247, 238, 210, 0.76);
}

.dogwalking-trust {
  color: var(--forest);
  background: #e2e4cd;
}

.dogwalking-trust__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 126px) 0;
}

.dogwalking-trust h2 {
  margin-bottom: 32px;
  color: var(--forest);
  font-size: clamp(40px, 5vw, 67px);
}

.dogwalking-trust p {
  color: #586359;
}

.dogwalking-trust__list {
  padding-left: clamp(0px, 3vw, 42px);
  border-left: 1px solid rgba(26, 46, 32, 0.18);
}

.dogwalking-trust__list h3 {
  margin: 0 0 26px;
  color: var(--forest);
  font: 400 28px/1.25 var(--display);
}

.dogwalking-trust__list .check-list {
  margin: 0;
  color: #465248;
}

.dogwalking-diary {
  position: relative;
  margin-top: clamp(54px, 7vw, 90px);
}

.dogwalking-album .dogwalking-diary {
  margin-top: 0;
}

.dogwalking-diary > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  white-space: nowrap;
}

.dogwalking-diary__album {
  display: grid;
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.dogwalking-diary__cover h3 {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 0.96;
}

.dogwalking-diary__cover .script {
  color: var(--moss);
  font-size: 0.78em;
}

.dogwalking-diary__cover p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.dogwalking-diary__book {
  --album-top: clamp(28px, 3.4vw, 42px);
  --album-x: clamp(28px, 3.8vw, 50px);
  --album-bottom: 84px;
  position: relative;
  min-height: clamp(590px, 53vw, 660px);
  z-index: 1;
  overflow: visible;
  border: 1px solid rgba(127, 141, 45, 0.22);
  border-radius: 12px 8px 9px 13px;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.94) 0 calc(50% - 26px), rgba(218, 211, 186, 0.72) calc(50% - 2px), rgba(89, 102, 67, 0.22) 50%, rgba(218, 211, 186, 0.72) calc(50% + 2px), rgba(255, 253, 247, 0.94) calc(50% + 26px) 100%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(237, 233, 219, 0.96));
  box-shadow:
    inset 0 -14px 0 rgba(127, 141, 45, 0.06),
    0 30px 76px rgba(26, 46, 32, 0.16);
  isolation: isolate;
  perspective: 1600px;
}

.dogwalking-diary__book::before {
  position: absolute;
  inset: 16px -18px -18px 18px;
  z-index: -2;
  border: 1px solid rgba(127, 141, 45, 0.16);
  border-radius: 10px 7px 8px 12px;
  background: linear-gradient(135deg, rgba(196, 186, 136, 0.28), rgba(247, 238, 210, 0.78));
  box-shadow: 0 20px 40px rgba(26, 46, 32, 0.12);
  content: "";
  pointer-events: none;
}

.dogwalking-diary__book::after {
  position: absolute;
  inset: 32px -12px 30px auto;
  z-index: -1;
  width: 27px;
  border: 1px solid rgba(127, 141, 45, 0.16);
  border-left: 0;
  border-radius: 0 7px 7px 0;
  background:
    linear-gradient(90deg, rgba(26, 46, 32, 0.05), transparent 48%),
    repeating-linear-gradient(180deg, rgba(255, 253, 247, 0.96) 0 4px, rgba(214, 207, 181, 0.62) 4px 6px);
  content: "";
  pointer-events: none;
}

.dogwalking-diary__spread,
.dogwalking-diary__flip {
  position: absolute;
  inset: var(--album-top) var(--album-x) var(--album-bottom);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 3.6vw, 48px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform-style: preserve-3d;
}

.dogwalking-diary__spread {
  opacity: 0;
  pointer-events: none;
  filter: brightness(0.96);
  transform: translateX(-18px) rotateY(-32deg) scale(0.98);
  transform-origin: left center;
  backface-visibility: hidden;
  transition:
    opacity 520ms ease,
    filter 620ms ease,
    transform 820ms cubic-bezier(0.18, 0.74, 0.22, 1);
}

.dogwalking-diary__flip {
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transform-origin: left center;
  visibility: hidden;
}

.dogwalking-diary__page {
  min-width: 0;
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 13px);
  padding: clamp(16px, 2.2vw, 28px);
  border: 1px solid rgba(127, 141, 45, 0.12);
  background: rgba(255, 253, 247, 0.94);
}

.dogwalking-diary__page--left {
  border-radius: 8px 2px 2px 9px;
  box-shadow: inset -22px 0 34px rgba(26, 46, 32, 0.07);
}

.dogwalking-diary__page--right {
  border-radius: 2px 8px 9px 2px;
  box-shadow: inset 22px 0 34px rgba(26, 46, 32, 0.06);
}

.dogwalking-diary__page--full {
  grid-column: 1 / -1;
  padding: clamp(24px, 3.4vw, 42px);
  border-radius: 8px;
  box-shadow: inset 0 0 44px rgba(26, 46, 32, 0.06);
}

.dogwalking-diary__photo {
  position: relative;
  z-index: 1;
  grid-column: var(--photo-col, 1 / -1);
  grid-row: var(--photo-row, auto / span 3);
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: clamp(3px, 0.38vw, 5px);
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(127, 141, 45, 0.12);
  border-radius: 3px;
  background: rgba(255, 253, 247, 0.95);
  box-shadow: 0 8px 20px rgba(26, 46, 32, 0.12);
}

.dogwalking-diary__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: var(--photo-fit, contain);
  object-position: var(--photo-pos, center center);
  filter: var(--photo-filter, brightness(0.97) contrast(1.03) saturate(0.96));
}

.dogwalking-diary__turn {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 6;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.dogwalking-diary__turn button {
  cursor: pointer;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(127, 141, 45, 0.34);
  border-radius: 50%;
  color: var(--forest);
  background: rgba(247, 238, 210, 0.72);
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.dogwalking-diary__turn button:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.dogwalking-diary__turn span {
  color: var(--moss-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.dogwalking-diary__turn.is-active {
  display: flex;
}

.dogwalking-diary__spread.is-active {
  opacity: 1;
  pointer-events: auto;
  filter: brightness(1);
  transform: translateX(0) rotateY(0) scale(1);
}

.dogwalking-diary__flip.is-turning {
  visibility: visible;
  opacity: 1;
}

.dogwalking-diary__flip--forward.is-turning {
  animation: dogwalking-page-flip-forward 760ms cubic-bezier(0.2, 0.66, 0.22, 1) both;
}

.dogwalking-diary__flip--backward.is-turning {
  transform-origin: right center;
  animation: dogwalking-page-flip-backward 760ms cubic-bezier(0.2, 0.66, 0.22, 1) both;
}

@keyframes dogwalking-page-flip-forward {
  0% {
    opacity: 1;
    transform: rotateY(0deg) translateZ(2px);
    box-shadow: 0 18px 36px rgba(26, 46, 32, 0.16);
  }

  48% {
    opacity: 1;
    transform: rotateY(-58deg) translateZ(18px);
    box-shadow: 22px 20px 45px rgba(26, 46, 32, 0.18);
  }

  100% {
    opacity: 0;
    transform: rotateY(-112deg) translateZ(5px);
    box-shadow: 26px 18px 34px rgba(26, 46, 32, 0.06);
  }
}

@keyframes dogwalking-page-flip-backward {
  0% {
    opacity: 1;
    transform: rotateY(0deg) translateZ(2px);
    box-shadow: 0 18px 36px rgba(26, 46, 32, 0.16);
  }

  48% {
    opacity: 1;
    transform: rotateY(58deg) translateZ(18px);
    box-shadow: -22px 20px 45px rgba(26, 46, 32, 0.18);
  }

  100% {
    opacity: 0;
    transform: rotateY(112deg) translateZ(5px);
    box-shadow: -26px 18px 34px rgba(26, 46, 32, 0.06);
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 55px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps li {
  padding: 30px 30px 0;
  border-right: 1px solid var(--line);
}

.steps li:first-child {
  padding-left: 0;
}

.steps li:last-child {
  border-right: 0;
}

.steps span {
  color: var(--moss-dark);
  font: 700 28px var(--script);
}

.steps h3 {
  margin: 18px 0 8px;
  color: var(--forest);
  font-size: 25px;
}

.steps p {
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 801px) {
  .steps--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps--four li {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.steps--training-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 26px;
  margin-top: 58px;
  padding: 34px 0 12px;
  border-bottom: 1px solid var(--line);
}

.steps--training-flow li {
  position: relative;
  padding: 0 12px 26px 0;
  border-right: 0;
}

.steps--training-flow li:first-child {
  padding-left: 0;
}

.steps--training-flow li::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 20px;
  left: 58px;
  height: 1px;
  background: linear-gradient(90deg, rgba(127, 141, 45, 0.36), rgba(127, 141, 45, 0));
}

.steps--training-flow li:last-child::before {
  display: none;
}

.steps--training-flow li:not(:last-child)::after {
  content: "↝";
  position: absolute;
  top: -5px;
  right: -14px;
  z-index: 1;
  color: var(--moss-dark);
  font: 700 34px var(--script);
  transform: rotate(-5deg);
}

.steps--training-flow span {
  font-size: 30px;
}

.steps--training-flow h3 {
  margin-top: 14px;
  font-size: clamp(21px, 1.85vw, 26px);
  line-height: 1.12;
}

.steps--training-flow p {
  font-size: 13px;
  line-height: 1.7;
  hyphens: auto;
}

.steps--dogwalking {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 76px;
  border-top: 0;
  column-gap: 82px;
  align-items: start;
  margin-top: 64px;
  padding: 16px 0 8px;
  overflow: visible;
  background-image: radial-gradient(circle, rgba(127, 141, 45, 0.14) 1px, transparent 1.8px);
  background-position: 28px 34px;
  background-size: 58px 58px;
}

.steps--dogwalking li {
  position: relative;
  min-height: 0;
  padding: 0 0 0 70px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.steps--dogwalking li:first-child {
  padding-left: 70px;
}

.steps--dogwalking li::before {
  position: absolute;
  top: 24px;
  left: 56px;
  z-index: 0;
  width: calc(100% + 86px);
  height: 26px;
  border-top: 2px dashed rgba(127, 141, 45, 0.38);
  border-radius: 999px 999px 0 0;
  background: none;
  content: "";
  transform: rotate(-2deg);
}

.steps--dogwalking li::after {
  position: absolute;
  top: -15px;
  right: -50px;
  z-index: 3;
  color: var(--forest);
  content: "⤳";
  font: 700 42px var(--script);
  line-height: 1;
  transform: rotate(-8deg);
  text-shadow: 0 10px 24px rgba(26, 46, 32, 0.1);
}

.dogwalking-step__icon {
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(127, 141, 45, 0.34);
  border-radius: 50%;
  color: var(--moss-dark);
  background: rgba(247, 238, 210, 0.92);
  box-shadow: 0 15px 32px rgba(26, 46, 32, 0.09);
}

.dogwalking-step__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.steps--dogwalking h3 {
  margin-top: 0;
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.08;
}

.steps--dogwalking p {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.68;
}

.steps--dogwalking li:nth-child(3)::after {
  top: auto;
  right: auto;
  bottom: -64px;
  left: 12px;
  content: "⤵";
  transform: rotate(18deg);
}

.steps--dogwalking li:nth-child(3)::before {
  top: 51px;
  left: 24px;
  width: 38px;
  height: calc(100% + 78px);
  border: 0;
  border-right: 2px dashed rgba(127, 141, 45, 0.38);
  border-radius: 0 999px 999px 0;
  transform: none;
}

.steps--dogwalking li:last-child::after {
  display: none;
}

.steps--dogwalking li:last-child::before {
  display: none;
}

.steps--dogwalking li:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.steps--dogwalking li:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.steps--dogwalking li:nth-child(6) {
  grid-column: 1;
  grid-row: 2;
}

.steps--dogwalking li:nth-child(4)::after,
.steps--dogwalking li:nth-child(5)::after {
  right: auto;
  left: -58px;
  content: "⤺";
  transform: rotate(8deg);
}

.steps--dogwalking li:nth-child(4)::before,
.steps--dogwalking li:nth-child(5)::before {
  top: 24px;
  right: calc(100% - 8px);
  left: auto;
  border-top: 2px dashed rgba(127, 141, 45, 0.38);
  border-radius: 999px 999px 0 0;
  transform: rotate(2deg);
}

.dogwalking-process .section-intro {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.dogwalking-process__note {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 100%;
  margin: 58px 0 0;
  padding: 30px;
  border: 1px solid rgba(174, 185, 74, 0.35);
  border-radius: 30px;
  color: var(--forest);
  background: linear-gradient(135deg, rgba(247, 238, 210, 0.82), rgba(174, 185, 74, 0.14));
  box-shadow: 0 18px 44px rgba(26, 46, 32, 0.08);
}

.dogwalking-process__note span {
  color: var(--moss-dark);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dogwalking-process__note p {
  margin: 0;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  color: var(--forest);
  font: 400 20px var(--display);
  cursor: pointer;
}

.faq details p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
}

.price-note {
  margin-bottom: 40px;
  padding: 18px 21px;
  border-left: 4px solid var(--gold);
  background: rgba(214, 194, 122, 0.19);
  color: #5b563d;
  font-size: 14px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px;
}

.price-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.price-card h3 {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 29px;
}

.price-card__lead {
  color: var(--muted);
  font-size: 14px;
}

.price-card--wide {
  grid-column: 1 / -1;
}

.price-card__note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.page-hero--booking .hero__image {
  object-position: center 60%;
}

.page-hero--dogwalking-booking .hero__image {
  object-position: center top;
}

.page-hero--dogwalking-booking .hero__copy,
.page-hero--dogwalking-booking h1 {
  max-width: 820px;
}

.page-hero--booking .hero__wash {
  background:
    linear-gradient(90deg, rgba(13, 30, 20, 0.86) 0%, rgba(13, 30, 20, 0.72) 30%, rgba(13, 30, 20, 0.40) 58%, rgba(13, 30, 20, 0.12) 86%, rgba(13, 30, 20, 0.03) 100%),
    linear-gradient(0deg, rgba(13, 30, 20, 0.46) 0%, rgba(13, 30, 20, 0.14) 58%);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.booking-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.booking-card--dogwalking {
  color: var(--cream);
  border-color: rgba(26, 46, 32, 0.08);
  background: var(--forest);
}

.booking-card--training {
  border-color: rgba(127, 141, 45, 0.28);
  background: #eef0d7;
}

.booking-card--appointments {
  border-color: rgba(137, 121, 82, 0.28);
  background: #e3dcc8;
}

.booking-card--cancellation {
  border-color: rgba(214, 194, 122, 0.32);
  background: #efe4c6;
}

.booking-card__tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--moss-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-card--dogwalking .booking-card__tag {
  color: var(--moss);
}

.booking-card--training .booking-card__tag {
  color: #63701f;
}

.booking-card--appointments .booking-card__tag {
  color: #675d42;
}

.booking-card--cancellation .booking-card__tag {
  color: #5b563d;
}

.booking-card h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: clamp(30px, 3vw, 40px);
}

.booking-card--dogwalking h3 {
  color: var(--cream);
}

.booking-card p {
  margin: 0;
  color: var(--muted);
}

.booking-card--dogwalking p {
  color: rgba(255, 253, 247, 0.72);
}

.booking-card--training p,
.booking-card--appointments p,
.booking-card--cancellation p,
.booking-card--training .booking-card__list,
.booking-card--appointments .booking-card__list,
.booking-card--cancellation .booking-card__list {
  color: #5b665d;
}

.booking-card__list {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.booking-card__list li {
  position: relative;
  padding-left: 24px;
}

.booking-card__list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--moss-dark);
  border-left: 2px solid var(--moss-dark);
  content: "";
  transform: rotate(-45deg);
}

.booking-card--dogwalking .booking-card__list {
  color: rgba(255, 253, 247, 0.76);
}

.booking-card--dogwalking .booking-card__list li::before {
  border-color: var(--moss);
}

.booking-card .button {
  margin-top: auto;
}

.booking-card .button--outline {
  color: var(--forest);
  border-color: var(--moss-dark);
}

.booking-card .button--outline:hover,
.booking-card .button--outline:focus-visible {
  color: var(--cream);
  background: var(--forest);
}

.booking-help {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.booking-help h2 {
  margin-bottom: 0;
}

.price-list {
  margin: 25px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-list span {
  color: var(--muted);
  font-size: 14px;
}

.price-list strong {
  color: var(--forest);
  white-space: nowrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 45px;
}

.contact-card {
  min-width: 0;
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.contact-card > span:not(.contact-card__icon) {
  display: block;
  margin-bottom: 30px;
  color: var(--moss-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(127, 141, 45, 0.38);
  border-radius: 50%;
  color: var(--moss-dark);
  background: rgba(174, 185, 74, 0.12);
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card strong,
.contact-card a {
  color: var(--forest);
  font: 400 21px/1.45 var(--display);
  overflow-wrap: anywhere;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--moss-dark);
}

.contact-whatsapp {
  margin: 0;
  background: #203a2a;
  color: #f8f0d9;
}

.contact-whatsapp__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(40px, 5vw, 62px) 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.contact-whatsapp__icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 198, 65, 0.72);
  border-radius: 50%;
  color: #b7c641;
}

.contact-whatsapp__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-whatsapp .section-label {
  color: #b7c641;
}

.contact-whatsapp h2 {
  margin: 12px 0 8px;
  color: #f8f0d9;
  font-size: clamp(32px, 4vw, 52px);
}

.contact-whatsapp p {
  max-width: 680px;
  margin: 0;
  color: rgba(248, 240, 217, 0.78);
}

@media (max-width: 760px) {
  .contact-whatsapp__inner {
    width: min(100% - 40px, 620px);
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px;
  }

  .contact-whatsapp__icon {
    width: 62px;
    height: 62px;
  }

  .contact-whatsapp__icon svg {
    width: 32px;
    height: 32px;
  }

  .contact-whatsapp__inner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.testimonials {
  color: var(--forest);
  background: #efe4c6;
}

.testimonials__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 125px) 0;
}

.page-dogwalking .testimonials__inner {
  grid-template-columns: minmax(250px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(36px, 5vw, 68px);
  padding-block: clamp(54px, 6vw, 78px);
}

.page-dogwalking .testimonials__heading h2 {
  font-size: clamp(38px, 4.4vw, 58px);
}

.page-dogwalking .testimonial-stage {
  padding: clamp(30px, 4vw, 48px);
}

.page-dogwalking .testimonial-slide__mark {
  height: 34px;
  font-size: 68px;
}

.page-dogwalking .testimonial-slide blockquote {
  margin-top: 15px;
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.55;
}

.testimonials__heading h2 {
  margin: 15px 0 24px;
  font-size: clamp(40px, 5vw, 67px);
  letter-spacing: 0;
}

.testimonials__heading p {
  max-width: 480px;
  margin: 0;
  color: #5f665d;
}

.testimonial-stage {
  position: relative;
  min-width: 0;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(26, 46, 32, 0.13);
  border-radius: 26px 6px 26px 6px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 24px 55px rgba(26, 46, 32, 0.1);
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
}

.testimonial-slide__mark {
  display: block;
  height: 42px;
  color: var(--moss-dark);
  font: 400 82px/0.8 var(--display);
}

.testimonial-slide blockquote {
  margin: 20px 0 18px;
  font: 400 clamp(17px, 1.45vw, 24px)/1.65 var(--body);
}

.testimonial-slide p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonial-slide__meta {
  color: var(--moss-dark) !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.testimonial-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(26, 46, 32, 0.2);
  border-radius: 50%;
  color: var(--forest);
  background: transparent;
  place-items: center;
  cursor: pointer;
}

.testimonial-controls button:hover:not(:disabled),
.testimonial-controls button:focus-visible:not(:disabled) {
  color: var(--cream);
  background: var(--forest);
}

.testimonial-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.cta {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--forest);
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 55px;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 110px) 0;
}

.cta h2 {
  margin-bottom: 15px;
  color: var(--cream);
}

.cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.7);
}

.cta__mark {
  position: absolute;
  right: -40px;
  bottom: -120px;
  color: rgba(247, 238, 210, 0.035);
  font: 400 390px var(--display);
  line-height: 1;
}

.site-footer {
  color: var(--cream);
  background: #13261a;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) minmax(140px, 0.72fr) minmax(170px, 0.82fr) minmax(220px, 0.88fr);
  gap: 36px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 44px 0 28px;
}

.site-footer .brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 360px;
  color: rgba(255, 253, 247, 0.59);
  font-size: 13px;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 7px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 13px;
}

.footer-social {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
}

.footer-social__icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(174, 185, 74, 0.58);
  border-radius: 50%;
  color: var(--moss);
}

.footer-social__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--moss);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(247, 238, 210, 0.1);
  color: rgba(255, 253, 247, 0.42);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.event-card {
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}

.event-card:nth-child(2) { background: rgba(174, 185, 74, 0.17); }
.event-card:nth-child(3) { background: rgba(216, 160, 184, 0.14); }

.event-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 52px;
  place-items: center;
  border: 1px solid var(--moss-dark);
  border-radius: 50%;
  color: var(--moss-dark);
  font: 700 24px var(--script);
}

.event-card h3 {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 29px;
}

.event-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.event-story { display: grid; gap: clamp(52px, 8vw, 100px); margin-top: 64px; }
.event-story__item { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(30px, 6vw, 90px); align-items: center; }
.event-story__item--wide { grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); }
.event-story__item--reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.event-story__item img { width: 100%; height: clamp(330px, 44vw, 590px); object-fit: cover; border-radius: 54% 46% 42% 58% / 44% 53% 47% 56%; }
.event-story__item:nth-child(2) img { border-radius: 38% 62% 55% 45% / 55% 38% 62% 45%; }
.event-story__item h3 { margin: 10px 0 18px; font-size: clamp(38px, 5vw, 68px); }
.event-story__item p { color: var(--muted); font-size: 16px; line-height: 1.75; }

.page-events {
  overflow-x: clip;
}

.page-events .event-story__item,
.page-events .event-story__item > *,
.page-events #termine,
.page-events .anny-shell,
.page-events .anny-shell a-organization-page,
.page-events .anny-shell a-resource-page {
  min-width: 0;
  max-width: 100%;
}

.page-events .event-story__item h3,
.page-events .event-story__item p {
  overflow-wrap: anywhere;
}

.page-events .anny-shell {
  width: 100%;
  overflow-x: auto;
}

.page-events .anny-shell a-organization-page,
.page-events .anny-shell a-resource-page {
  width: 100%;
}

@media (max-width: 900px) {
  .page-events .event-story__item,
  .page-events .event-story__item--wide,
  .page-events .event-story__item--reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .page-events .event-story__item:nth-child(2) img {
    grid-row: 1;
  }

  .page-events .event-story__item img {
    height: clamp(300px, 68vw, 520px);
  }
}

.behavior-focus { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(35px, 7vw, 100px); align-items: center; }
.behavior-focus__image img { width: 100%; height: clamp(440px, 54vw, 690px); object-fit: cover; border-radius: 48% 52% 44% 56% / 39% 48% 52% 61%; }
.behavior-focus p { max-width: 700px; margin-bottom: 28px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.section-intro { max-width: 760px; margin: 18px 0 35px; color: var(--muted); }

.hero__copy .hero__lead + .hero__lead {
  margin-top: -18px;
}

.hero__schedule {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr 1.15fr;
  max-width: 690px;
  margin: -8px 0 26px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 253, 247, 0.46);
  border-radius: 8px;
  background: rgba(13, 30, 20, 0.66);
  box-shadow: 0 12px 30px rgba(4, 10, 7, 0.2);
  backdrop-filter: blur(5px);
}

.hero__schedule--pending {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero__schedule--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero__schedule div {
  min-width: 0;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 253, 247, 0.22);
}

.hero__schedule div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__schedule dt {
  min-width: 0;
  margin-bottom: 4px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero__schedule dd {
  min-width: 0;
  margin: 0;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: var(--hero-text-shadow);
  overflow-wrap: anywhere;
}

.puppy-bonus-note {
  display: grid;
  grid-template-columns: auto minmax(180px, 0.65fr) minmax(280px, 1.35fr);
  gap: 16px 24px;
  align-items: center;
  margin-top: 34px;
  padding: 20px 24px;
  border-top: 1px solid rgba(127, 141, 45, 0.34);
  border-bottom: 1px solid rgba(127, 141, 45, 0.34);
  color: var(--muted);
}

.puppy-bonus-note strong {
  color: var(--moss-dark);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.puppy-bonus-note span {
  color: var(--forest);
  font: 400 21px/1.25 var(--display);
}

.puppy-bonus-note p {
  margin: 0;
  font-size: 14px;
}

.offer-widget,
.offer-entry {
  scroll-margin-top: 125px;
}

.offer-widget--compact {
  width: min(calc(100% - 48px), 780px);
}

.offer-widget--pending {
  padding-top: clamp(65px, 7vw, 90px);
}

.offer-widget__placeholder {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 4px solid var(--moss);
  background: rgba(174, 185, 74, 0.12);
  color: var(--muted);
}

.offer-widget__placeholder strong {
  color: var(--forest);
  font: 400 24px/1.2 var(--display);
}

.offer-widget__placeholder p {
  margin: 7px 0 0;
}

.offer-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.offer-path {
  display: flex;
  min-width: 0;
  min-height: 315px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.offer-path--primary {
  color: var(--cream);
  background: var(--forest);
}

.offer-path__step {
  margin-bottom: 34px;
  color: var(--moss-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-path--primary .offer-path__step {
  color: var(--moss);
}

.offer-path h3 {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: clamp(28px, 3vw, 40px);
  overflow-wrap: anywhere;
}

.offer-path--primary h3 {
  color: var(--cream);
}

.offer-path p {
  margin-bottom: 28px;
  color: var(--muted);
}

.offer-path--primary p {
  color: rgba(255, 253, 247, 0.72);
}

.offer-path .button {
  margin-top: auto;
}

.offer-path--primary .button {
  border-color: var(--cream);
  background: var(--cream);
}

.offer-path .button--outline {
  color: var(--forest);
}

.offer-path .button--outline:hover,
.offer-path .button--outline:focus-visible {
  color: var(--cream);
  background: var(--forest);
}

.offer-entry .offer-widget {
  margin-top: clamp(70px, 8vw, 105px);
  padding-top: clamp(55px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.offer-entry .offer-widget h3 {
  margin-bottom: 28px;
  color: var(--forest);
  font-size: clamp(32px, 4vw, 48px);
}

.anny-shell {
  min-height: 700px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.anny-shell a-organization-page,
.anny-shell a-resource-page {
  display: block;
  min-height: 665px;
}

.anny-shell--waiting {
  min-height: 0;
}

.anny-shell--waiting > a-organization-page,
.anny-shell--waiting > a-resource-page {
  display: none;
}

.anny-consent-placeholder {
  display: grid;
  justify-items: start;
  gap: 14px;
  max-width: 680px;
  margin: clamp(18px, 4vw, 46px) auto;
  padding: clamp(24px, 4vw, 42px);
  border-left: 4px solid var(--moss);
  background: var(--paper);
}

.anny-consent-placeholder__label {
  margin: 0;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.anny-consent-placeholder h3,
.anny-consent-placeholder p {
  margin: 0;
}

.anny-consent-placeholder h3 {
  font-size: clamp(26px, 4vw, 38px);
}

.anny-consent-placeholder p {
  color: var(--muted);
}

.anny-consent-placeholder a {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.anny-consent-placeholder--loading {
  justify-items: center;
  text-align: center;
}

.anny-consent-placeholder--loading::before {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(127, 141, 45, 0.24);
  border-top-color: var(--olive);
  border-radius: 50%;
  content: "";
  animation: anny-loading-spin 0.8s linear infinite;
}

.anny-consent-placeholder--error {
  border-left-color: #a53c3c;
  background: rgba(165, 60, 60, 0.08);
}

.anny-consent-placeholder--error .anny-consent-placeholder__label {
  color: #8f3030;
}

.anny-consent-placeholder--error .button {
  color: var(--forest);
  text-decoration: none;
}

.anny-shell--error + .anny-fallback {
  display: none;
}

@keyframes anny-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.anny-fallback {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.anny-fallback p {
  margin: 0;
}

.anny-fallback .button {
  max-width: 100%;
  text-align: center;
}

.form-note {
  margin-bottom: 34px;
  padding: 18px 21px;
  border-left: 4px solid var(--gold);
  background: rgba(214, 194, 122, 0.19);
  color: #5b563d;
  font-size: 14px;
}

.booking-form {
  display: grid;
  gap: 34px;
  margin-top: 42px;
}

.form-required-note {
  margin: 0 0 -12px;
  color: var(--muted);
  font-size: 13px;
}

.form-required-note span,
.form-required-marker {
  color: var(--moss-dark);
  font-weight: 800;
}

.form-required-marker {
  display: inline;
  white-space: nowrap;
}

.form-label-text {
  display: inline;
}

.form-honeypot {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-section {
  min-width: 0;
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(26, 46, 32, 0.055);
}

.form-section legend {
  max-width: calc(100% - 24px);
  padding: 0 14px;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 29px);
  line-height: 1.2;
}

.form-section > legend + *,
.details-body > *:first-child {
  margin-top: 18px;
}

.form-section > p {
  margin: 22px 0 10px;
  color: var(--forest);
  font-weight: 700;
}

.form-section__head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}

.form-section__head span {
  color: var(--moss-dark);
  font: 700 26px var(--script);
}

.form-section__head h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 38px);
}

.form-section__head p {
  grid-column: 2;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 22px;
}

.form-grid > label,
.form-section > label,
.details-body > label {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.form-section > label,
.details-body > label { margin-top: 26px; }

.form-field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.booking-form input:not([type="checkbox"]):not([type="radio"]),
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(26, 46, 32, 0.24);
  border-radius: 9px;
  color: var(--ink);
  background: #fcfaf2;
  font: inherit;
  font-weight: 400;
}

.booking-form textarea { min-height: 125px; resize: vertical; }
.booking-form input[type="file"] { padding: 10px; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: var(--moss-dark); outline: 3px solid rgba(174, 185, 74, 0.2); }

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--wide { grid-column: 1 / -1; }

.form-field label,
.fieldset-label {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid rgba(26, 46, 32, 0.24);
  border-radius: 7px;
  color: var(--ink);
  background: var(--paper);
}

.form-field textarea {
  min-height: 125px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--moss-dark);
  outline: 3px solid rgba(174, 185, 74, 0.2);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 4px;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
}
.choice-stack { display: grid; gap: 12px; margin: 8px 0; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.choice-stack label, .consent { display: flex; align-items: flex-start; gap: 10px; }
.choice-stack input,
.consent input,
.choice-grid input {
  flex: 0 0 20px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--moss-dark);
}
.form-section summary { cursor: pointer; font-family: var(--display); font-size: 24px; color: var(--forest); }
.details-body { padding-top: 24px; }
.legal-consents a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.legal-links a { color: inherit; }

.legal-copy { max-width: 900px; }
.legal-copy h2 {
  margin: 70px 0 22px;
  font-size: clamp(30px, 4vw, 46px);
  hyphens: auto;
  overflow-wrap: anywhere;
}
.legal-copy h3 { margin: 38px 0 12px; font-size: clamp(20px, 2.5vw, 27px); }
.legal-copy p, .legal-copy li { color: var(--muted); line-height: 1.75; }
.legal-copy ul { display: grid; gap: 10px; padding-left: 24px; }
.legal-notice { padding: 20px 22px; border-left: 4px solid var(--moss); background: var(--paper); }

.consent-banner {
  position: fixed;
  right: max(16px, calc((100vw - var(--max)) / 2));
  bottom: 16px;
  left: max(16px, calc((100vw - var(--max)) / 2));
  z-index: 250;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(247, 238, 210, 0.22);
  border-radius: 12px;
  color: var(--cream);
  background: rgba(26, 46, 32, 0.96);
  box-shadow: 0 22px 70px rgba(10, 25, 15, 0.36);
}

.consent-banner[hidden],
.consent-settings[hidden] {
  display: none;
}

.consent-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.consent-banner__eyebrow {
  margin: 0 0 8px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.consent-banner h2 {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: clamp(25px, 3vw, 34px);
}

.consent-banner p {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 238, 210, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.consent-banner__notice {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--moss);
  background: rgba(255, 253, 247, 0.06);
}

.consent-banner__notice summary {
  cursor: pointer;
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
}

.consent-banner__notice p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
}

.consent-banner a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-banner__options {
  display: grid;
  gap: 10px;
}

.consent-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid rgba(247, 238, 210, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.06);
}

.consent-option input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--moss);
}

.consent-option strong {
  display: block;
  color: var(--cream);
  font-size: 13px;
}

.consent-option small {
  display: block;
  margin-top: 3px;
  color: rgba(247, 238, 210, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.consent-option--locked {
  opacity: 0.82;
}

.consent-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.consent-banner .button {
  min-height: 44px;
  padding: 0 18px;
}

.consent-banner__accept {
  border-color: #c3cc4f;
  color: var(--forest);
  background: #c3cc4f;
  box-shadow: 0 8px 24px rgba(195, 204, 79, 0.22);
}

.consent-banner__accept:hover,
.consent-banner__accept:focus-visible,
.consent-banner__accept:active {
  border-color: var(--cream);
  color: var(--forest);
  background: var(--cream);
  box-shadow: 0 10px 28px rgba(247, 238, 210, 0.2);
}

.consent-banner__secondary {
  border-color: rgba(247, 238, 210, 0.34);
  color: var(--cream);
  background: transparent;
}

.consent-banner__secondary:hover,
.consent-banner__secondary:focus-visible {
  color: var(--forest);
  background: var(--cream);
}

.consent-settings {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  font: inherit;
  cursor: pointer;
}

#einzelstunde-buchen {
  scroll-margin-top: 110px;
}

.consent-settings:hover,
.consent-settings:focus-visible {
  color: var(--moss);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-settings--floating {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 230;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(26, 46, 32, 0.18);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(247, 238, 210, 0.95);
  box-shadow: 0 12px 34px rgba(10, 25, 15, 0.16);
  font-size: 11px;
  font-weight: 800;
}

.consent-settings--floating:hover,
.consent-settings--floating:focus-visible {
  color: var(--forest);
  background: var(--moss);
  text-decoration: none;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 13px;
}

.choice input {
  margin-top: 4px;
  accent-color: var(--moss-dark);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.booking-form .form-actions .button:hover,
.booking-form .form-actions .button:focus-visible,
.booking-form .form-actions .button:active {
  border-color: var(--forest);
  color: var(--cream);
  background: var(--forest);
}

.booking-form .form-actions .button:active {
  transform: translateY(0);
}

.form-status {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1140px) {
  .brand { min-width: 185px; }
  .primary-nav > ul { gap: 11px; }
  .primary-nav a, .submenu-button { font-size: 11px; }
}

@media (max-width: 1020px) {
  .primary-nav > ul {
    gap: 16px;
  }

  .brand { min-width: 178px; }
  .brand__name strong { font-size: 15px; }
  .brand__name span { font-size: 13px; }

  .training-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dogwalking-bubbles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .band__inner {
    gap: 45px;
  }
}

@media (max-width: 800px) {
  :root {
    --hero-wash:
      linear-gradient(90deg, rgba(13, 30, 20, 0.86) 0%, rgba(13, 30, 20, 0.68) 58%, rgba(13, 30, 20, 0.30) 100%),
      linear-gradient(0deg, rgba(13, 30, 20, 0.56) 0%, rgba(13, 30, 20, 0.22) 62%, rgba(13, 30, 20, 0.05) 100%);
    --hero-text-shadow:
      0 1px 2px rgba(4, 10, 7, 1),
      0 3px 11px rgba(4, 10, 7, 0.94),
      0 9px 24px rgba(4, 10, 7, 0.68);
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-height: calc(100vh - 20px);
    overflow: auto;
  }

  .consent-banner__content {
    grid-template-columns: 1fr;
  }

  .consent-banner__actions {
    justify-content: stretch;
  }

  .consent-banner .button {
    width: 100%;
  }

  .consent-settings {
    right: 10px;
    bottom: 10px;
  }

  .site-header {
    width: calc(100% - 24px);
    min-height: 66px;
  }

  .site-header:not(.is-scrolled) {
    top: 0;
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 0;
  }

  body.menu-open .site-header {
    top: 0;
    width: 100%;
    min-height: 72px;
    padding: 12px 16px;
    border-radius: 0;
    background: rgba(18, 43, 28, 0.98);
    box-shadow: none;
  }

  body.menu-open .site-header::before {
    opacity: 0;
  }

  body.menu-open .site-header .brand__name strong,
  body.menu-open .site-header .menu-toggle {
    color: var(--cream);
  }

  body.menu-open .site-header .brand__name span {
    color: var(--moss);
  }

  body.menu-open .site-header .menu-toggle {
    border-color: rgba(247, 238, 210, 0.34);
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 45px;
    padding: 0 16px;
    border: 1px solid rgba(26, 46, 32, 0.24);
    border-radius: 999px;
    color: var(--forest);
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
  }

  .menu-toggle__bars,
  .menu-toggle__bars::before,
  .menu-toggle__bars::after {
    display: block;
    width: 17px;
    height: 1px;
    background: currentColor;
  }

  .menu-toggle__bars {
    position: relative;
  }

  .menu-toggle__bars::before,
  .menu-toggle__bars::after {
    position: absolute;
    left: 0;
    content: "";
    transition: transform 170ms ease;
  }

  .menu-toggle__bars::before { top: -5px; }
  .menu-toggle__bars::after { top: 5px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bars {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 101;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 110px 28px 50px;
    background: var(--forest);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .primary-nav > ul {
    display: grid;
    gap: 0;
  }

  .primary-nav > ul > li {
    border-bottom: 1px solid rgba(247, 238, 210, 0.14);
  }

  .primary-nav > ul > li > a,
  .nav-main-link {
    display: flex;
    min-height: 67px;
    align-items: center;
    color: var(--cream);
    font: 400 25px var(--display);
  }

  .nav-contact {
    display: inline-flex !important;
    min-height: 48px !important;
    margin: 24px 0;
    padding: 0 21px !important;
    border-bottom: 1px solid var(--moss) !important;
    font: 800 13px var(--body) !important;
  }

  .submenu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .submenu-button {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 0;
    color: var(--moss);
    background: transparent;
    cursor: pointer;
    font-size: 18px;
  }

  .submenu {
    position: static;
    left: auto;
    display: none !important;
    width: auto;
    padding: 0 0 20px 16px !important;
    border: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .has-submenu.is-open .submenu {
    display: grid !important;
    transform: none;
  }

  .submenu a {
    padding: 8px 0;
    color: var(--moss);
    font-size: 14px;
  }

  .submenu a:hover,
  .submenu a:focus-visible,
  .submenu a[aria-current="page"] {
    color: var(--cream);
    background: transparent;
  }

  .hero__wash {
    background: var(--hero-wash);
  }

  .hero:not(.page-hero) .hero__wash {
    background: var(--hero-wash);
  }

  .page-hero--alltagsgruppe .hero__wash {
    background:
      linear-gradient(90deg, rgba(13, 30, 20, 0.88) 0%, rgba(13, 30, 20, 0.70) 62%, rgba(13, 30, 20, 0.33) 100%),
      linear-gradient(0deg, rgba(13, 30, 20, 0.58) 0%, rgba(13, 30, 20, 0.22) 64%, rgba(13, 30, 20, 0.05) 100%);
  }

  .page-hero--einzeltraining .hero__wash {
    background:
      linear-gradient(90deg, rgba(13, 30, 20, 0.86) 0%, rgba(13, 30, 20, 0.68) 62%, rgba(13, 30, 20, 0.31) 100%),
      linear-gradient(0deg, rgba(13, 30, 20, 0.56) 0%, rgba(13, 30, 20, 0.21) 64%, rgba(13, 30, 20, 0.04) 100%);
  }

  .page-hero--veranstaltungen .hero__wash {
    background:
      linear-gradient(90deg, rgba(13, 30, 20, 0.79) 0%, rgba(13, 30, 20, 0.61) 62%, rgba(13, 30, 20, 0.27) 100%),
      linear-gradient(0deg, rgba(13, 30, 20, 0.48) 0%, rgba(13, 30, 20, 0.17) 64%, rgba(13, 30, 20, 0.03) 100%);
  }

  .hero__copy {
    max-width: 620px;
  }

  .hero__badge {
    display: none;
  }

  .hero__stamp {
    right: 26px;
    bottom: 38px;
    width: 118px;
    height: 118px;
  }

  .hero__stamp span {
    max-width: 86px;
    font-size: 8px;
  }

  .section-heading,
  .intro-grid,
  .split,
  .text-columns,
  .home-qualifications__inner,
  .dogwalking-trust__inner,
  .band__inner,
  .testimonials__inner,
  .cta__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__schedule {
    grid-template-columns: minmax(0, 1fr);
    padding: 8px 14px;
  }

  .hero__schedule div,
  .hero__schedule div:first-child {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 253, 247, 0.22);
    border-left: 0;
  }

  .hero__schedule div:first-child {
    border-top: 0;
  }

  .hero__schedule dt {
    margin-bottom: 0;
  }

  .puppy-bonus-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    padding: 17px 0;
  }

  .dogwalking-trust__list {
    padding: 34px 0 0;
    border-top: 1px solid rgba(26, 46, 32, 0.18);
    border-left: 0;
  }

  .page-dogwalking .testimonials__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .cta__inner > * {
    min-width: 0;
    max-width: 100%;
  }

  .cta__inner .button {
    justify-self: start;
    max-width: 100%;
  }

  .category-grid,
  .price-grid,
  .booking-grid,
  .event-grid,
  .offer-paths {
    grid-template-columns: 1fr;
  }

  .offer-path {
    min-height: 0;
    padding: 28px;
  }

  .training-teaser,
  .training-teaser--reverse {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .training-teaser > * {
    min-width: 0;
    max-width: 100%;
  }

  .training-teaser--reverse .training-teaser__media,
  .training-teaser--reverse .training-teaser__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .training-teaser__copy {
    padding-right: 0;
    max-width: none;
  }

  .training-teaser__stamp {
    position: static;
    width: 76px;
    height: 76px;
    margin-left: 14px;
    font-size: 8px;
    vertical-align: middle;
  }

  .dogwalking-diary {
    margin-top: 62px;
  }

  .dogwalking-diary__album {
    grid-template-columns: 1fr;
  }

  .dogwalking-diary__cover {
    max-width: 640px;
  }

  .dogwalking-diary__book {
    min-height: 620px;
  }

  .dogwalking-diary__photo img {
    height: 100%;
  }

  .fact-grid,
  .contact-grid,
  .booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-help {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li,
  .steps li:first-child {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps--training-flow {
    max-width: 760px;
    grid-template-columns: 1fr;
    gap: 0;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 0;
  }

  .steps--training-flow li,
  .steps--training-flow li:first-child {
    padding: 0 0 54px 58px;
    border-bottom: 0;
  }

  .steps--training-flow li::before {
    top: 44px;
    right: auto;
    bottom: 16px;
    left: 17px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(127, 141, 45, 0.36), rgba(127, 141, 45, 0));
  }

  .steps--training-flow li:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: 10px;
    left: 2px;
    transform: rotate(8deg);
  }

  .steps--dogwalking {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 48px;
    padding-top: 4px;
    background-position: 18px 20px;
    background-size: 46px 46px;
  }

  .steps--dogwalking li,
  .steps--dogwalking li:first-child,
  .steps--dogwalking li:nth-child(4),
  .steps--dogwalking li:nth-child(5),
  .steps--dogwalking li:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    padding: 0 0 54px 66px;
    border-right: 0;
    border-bottom: 0;
  }

  .steps--dogwalking li::before,
  .steps--dogwalking li:nth-child(3)::before,
  .steps--dogwalking li:nth-child(4)::before,
  .steps--dogwalking li:nth-child(5)::before {
    top: 50px;
    right: auto;
    bottom: 10px;
    left: 23px;
    width: 24px;
    height: auto;
    border: 0;
    border-left: 2px dashed rgba(127, 141, 45, 0.38);
    border-radius: 999px 0 0 999px;
    background: none;
    transform: none;
  }

  .steps--dogwalking li::after,
  .steps--dogwalking li:nth-child(3)::after,
  .steps--dogwalking li:nth-child(4)::after,
  .steps--dogwalking li:nth-child(5)::after {
    top: auto;
    right: auto;
    bottom: 11px;
    left: 10px;
    content: "⤳";
    font-size: 36px;
    transform: rotate(84deg);
  }

  .steps--dogwalking li:last-child::before,
  .steps--dogwalking li:last-child::after {
    display: none;
  }

  .dogwalking-step__icon {
    width: 46px;
    height: 46px;
  }

  .steps--dogwalking p {
    max-width: 620px;
  }

  .dogwalking-process__note {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Direkt aufeinanderfolgende helle Inhaltsblöcke sollen als Einheit lesbar bleiben. */
main > .section:has(+ .section) {
  padding-bottom: clamp(44px, 5vw, 70px);
}

main > .section + .section {
  padding-top: clamp(44px, 5vw, 70px);
}

@media (max-width: 540px) {
  main > .section:has(+ .section) {
    padding-bottom: 34px;
  }

  main > .section + .section {
    padding-top: 34px;
  }
}

/* Maulkorbberatung: besondere Sicherheitsfälle klar vom regulären Ablauf trennen. */
.maulkorb-safety {
  background: #203a2a;
  color: #f8f0d9;
}

.maulkorb-safety__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.maulkorb-safety .section-label {
  color: #b7c641;
}

.maulkorb-safety h2 {
  max-width: 620px;
  margin: 24px 0 0;
  color: #f8f0d9;
}

.maulkorb-safety__copy {
  padding-left: clamp(28px, 4vw, 56px);
  border-left: 1px solid rgba(248, 240, 217, 0.24);
}

.maulkorb-safety__copy p {
  max-width: 660px;
  color: rgba(248, 240, 217, 0.78);
}

.maulkorb-safety__copy .button {
  margin-top: 18px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

@media (max-width: 760px) {
  .maulkorb-safety__inner {
    width: min(100% - 40px, 620px);
    padding: 54px 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .maulkorb-safety__copy {
    padding: 28px 0 0;
    border-top: 1px solid rgba(248, 240, 217, 0.24);
    border-left: 0;
  }
}

@media (max-width: 540px) {
  .hero__content,
  .section,
  .section--narrow,
  .dogwalking-trust__inner,
  .band__inner,
  .testimonials__inner,
  .cta__inner,
  .site-footer__inner,
  .site-footer__bottom {
    width: calc(100vw - 34px);
    max-width: calc(100vw - 34px);
  }

  .hero {
    min-height: 760px;
  }

  .hero__image {
    object-position: 66% center;
  }

  .page-hero--booking .hero__image {
    object-position: 56% center;
  }

  .page-hero--dogwalking-booking .hero__image {
    object-position: 50% top;
  }

  .page-hero--alltagsgruppe .hero__image {
    object-position: 58% center;
  }

  .page-hero--einzeltraining .hero__image {
    object-position: 58% center;
  }

  .page-hero--veranstaltungen .hero__image {
    object-position: 56% center;
  }

  .page-hero--social-walk .hero__image {
    object-position: 68% center;
  }

  .page-hero--booking .hero__wash {
    background:
      linear-gradient(90deg, rgba(13, 30, 20, 0.88) 0%, rgba(13, 30, 20, 0.70) 60%, rgba(13, 30, 20, 0.32) 100%),
      linear-gradient(0deg, rgba(13, 30, 20, 0.58) 0%, rgba(13, 30, 20, 0.22) 62%);
  }

  .hero__content {
    padding-top: 135px;
  }

  .hero__copy,
  .hero__lead,
  .page-hero h1 {
    max-width: 100%;
  }

  .page-hero h1 {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .page-hero {
    min-height: 610px;
  }

  .page-hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero__stamp {
    right: 18px;
    bottom: 24px;
    width: 106px;
    height: 106px;
  }

  .hero__stamp::after {
    inset: 8px;
  }

  .hero__stamp strong {
    font-size: 28px;
  }

  .hero__stamp span {
    max-width: 78px;
    margin-top: 5px;
    font-size: 7px;
  }

  .section h2,
  .band h2,
  .dogwalking-trust h2,
  .cta h2 {
    font-size: clamp(37px, 11vw, 52px);
  }

  .category-card {
    min-height: 440px;
  }

  .category-card--dogwalking img,
  .category-card--dogwalking:hover img {
    transform: none;
  }

  .category-card__copy {
    padding: 26px;
  }

  .cta__mark {
    display: none;
  }

  .training-grid,
  .fact-grid,
  .contact-grid,
  .booking-grid,
  .dogwalking-bubbles {
    grid-template-columns: 1fr;
  }

  .training-teaser {
    padding: 34px 18px;
  }

  .training-teaser__media {
    aspect-ratio: 1.2 / 1;
  }

  .training-teaser h3 {
    margin-top: 13px;
  }

  .dogwalking-bubble,
  .dogwalking-bubble--large,
  .dogwalking-bubble--tall {
    min-height: 255px;
    padding: 30px;
  }

  .dogwalking-bubble--tall {
    min-height: 285px;
  }

  .dogwalking-diary__book {
    --album-top: 20px;
    --album-x: 14px;
    --album-bottom: 76px;
    min-height: 760px;
  }

  .dogwalking-diary__book::before,
  .dogwalking-diary__book::after {
    display: none;
  }

  .dogwalking-diary__spread,
  .dogwalking-diary__flip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }

  .dogwalking-diary__page {
    min-height: 300px;
    padding: 14px;
    gap: 10px;
  }

  .dogwalking-diary__page--left,
  .dogwalking-diary__page--right {
    border-radius: 8px;
    box-shadow: inset 0 0 28px rgba(26, 46, 32, 0.05);
  }

  .dogwalking-diary__page--full {
    grid-column: auto;
    min-height: 628px;
  }

  .dogwalking-diary__photo img {
    height: 100%;
    aspect-ratio: auto;
  }

  .dogwalking-diary__turn {
    bottom: 22px;
  }

  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .training-card {
    min-height: 275px;
  }

  .training-card__stamp {
    width: 82px;
    height: 82px;
    margin-bottom: 14px;
    font-size: 8px;
  }

  .training-card--featured { grid-column: auto; }
  .training-card--featured .training-card__content { padding-right: 28px; }
  .event-story__item,
  .event-story__item--wide,
  .event-story__item--reverse,
  .behavior-focus { grid-template-columns: 1fr; }
  .event-story__item:nth-child(2) img { grid-row: 1; }

  .intro-grid__visual img,
  .split__visual img {
    height: 110vw;
    max-height: 570px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    padding-bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Dogwalking: Einzelbild-Fotoalbum */
.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book {
  --album-top: clamp(28px, 3.4vw, 42px);
  --album-x: clamp(24px, 3.5vw, 46px);
  --album-bottom: 92px;
  position: relative;
  min-height: clamp(540px, 52vw, 690px);
  overflow: hidden;
  border: 1px solid rgba(127, 141, 45, 0.24);
  border-radius: 14px 10px 10px 14px;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.98), rgba(247, 242, 224, 0.96) 72%, rgba(228, 219, 191, 0.76)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(238, 234, 219, 0.94));
  box-shadow:
    inset -18px 0 22px rgba(26, 46, 32, 0.05),
    inset 0 -12px 0 rgba(127, 141, 45, 0.05),
    0 30px 76px rgba(26, 46, 32, 0.15);
  isolation: isolate;
  perspective: none;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book::before {
  position: absolute;
  inset: 18px -17px 24px auto;
  z-index: -1;
  width: 26px;
  border: 1px solid rgba(127, 141, 45, 0.16);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background: repeating-linear-gradient(180deg, rgba(255, 253, 247, 0.96) 0 5px, rgba(205, 198, 168, 0.5) 5px 7px);
  box-shadow: 12px 18px 32px rgba(26, 46, 32, 0.09);
  content: "";
  pointer-events: none;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book::after {
  position: absolute;
  inset: 14px 14px auto 14px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
  content: "";
  pointer-events: none;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__stage {
  position: absolute;
  inset: var(--album-top) var(--album-x) var(--album-bottom);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(127, 141, 45, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: inset 0 0 44px rgba(26, 46, 32, 0.045);
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__photo {
  position: absolute;
  inset: clamp(14px, 2vw, 26px);
  z-index: 1;
  display: grid;
  place-items: center;
  width: auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: clamp(6px, 0.8vw, 10px);
  overflow: hidden;
  border: 1px solid rgba(127, 141, 45, 0.15);
  border-radius: 5px;
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 14px 32px rgba(26, 46, 32, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.985);
  transition:
    opacity 360ms ease,
    transform 430ms cubic-bezier(0.2, 0.68, 0.22, 1);
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__stage[data-direction="prev"] .dogwalking-diary__photo {
  transform: translateX(-18px) scale(0.985);
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__photo.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: brightness(0.95) contrast(1.02) saturate(0.96);
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__photo--reduced-exposure img {
  filter: brightness(0.86) contrast(1.04) saturate(0.94);
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn button {
  cursor: pointer;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(127, 141, 45, 0.34);
  border-radius: 50%;
  color: var(--forest);
  background: rgba(247, 238, 210, 0.74);
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn button:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn span {
  color: var(--moss-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

@media (max-width: 900px) {
  .about-image-band,
  .about-dogs,
  .about-band__inner {
    grid-template-columns: 1fr;
  }

  .about-image-band__main img,
  .about-image-band__stack img,
  .about-dogs__image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .about-image-band__stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book {
    min-height: clamp(520px, 78vw, 650px);
  }
}

@media (max-width: 600px) {
  .about-image-band__stack,
  .about-values,
  .about-credentials {
    grid-template-columns: 1fr;
  }

  .about-values li,
  .about-credentials li {
    min-height: 0;
  }

  .about-credentials li {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 22px 0;
  }

  .about-credentials span {
    grid-row: auto;
    padding-top: 0;
  }

  .about-pullquote {
    font-size: clamp(26px, 9vw, 38px);
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book {
    --album-top: 18px;
    --album-x: 14px;
    --album-bottom: 76px;
    min-height: clamp(430px, 116vw, 560px);
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book::before,
  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book::after {
    display: none;
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__photo {
    inset: 12px;
    padding: 6px;
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn {
    bottom: 20px;
  }
}

/* Open-book treatment for the Dogwalking photo album. */
.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__album {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.38fr) minmax(0, 0.62fr);
  gap: 0;
  align-items: stretch;
  padding: 10px;
  border: 1px solid rgba(26, 46, 32, 0.48);
  border-radius: 13px;
  background: #44513a;
  box-shadow:
    0 32px 72px rgba(26, 46, 32, 0.22),
    0 7px 0 #34422f;
  isolation: isolate;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover,
.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book {
  box-sizing: border-box;
  min-height: clamp(560px, 52vw, 650px);
  border: 1px solid rgba(95, 91, 70, 0.2);
  background-color: #f7f1df;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 70px);
  overflow: visible;
  border-radius: 7px 1px 1px 7px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 38%),
    repeating-linear-gradient(0deg, rgba(90, 83, 60, 0.025) 0 1px, transparent 1px 6px);
  box-shadow:
    inset -30px 0 44px rgba(48, 51, 38, 0.13),
    inset 0 0 0 8px rgba(255, 253, 247, 0.28);
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover::after {
  position: absolute;
  top: 0;
  right: -18px;
  bottom: 0;
  z-index: 5;
  width: 36px;
  background: linear-gradient(90deg, transparent, rgba(45, 49, 36, 0.2) 47%, rgba(255, 253, 247, 0.42) 52%, transparent);
  content: "";
  pointer-events: none;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover h3 {
  max-width: 320px;
  font-size: clamp(35px, 4vw, 56px);
  line-height: 1;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover p {
  max-width: 330px;
  font-size: 15px;
  line-height: 1.75;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book {
  --album-top: clamp(38px, 4.2vw, 54px);
  --album-x: clamp(32px, 4vw, 50px);
  --album-bottom: 92px;
  position: relative;
  z-index: 2;
  overflow: visible;
  border-radius: 1px 7px 7px 1px;
  background-image:
    linear-gradient(90deg, rgba(82, 78, 57, 0.13), transparent 10%),
    repeating-linear-gradient(0deg, rgba(90, 83, 60, 0.02) 0 1px, transparent 1px 6px);
  box-shadow:
    inset 30px 0 44px rgba(48, 51, 38, 0.11),
    inset 0 0 0 8px rgba(255, 253, 247, 0.25);
  perspective: 1400px;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book::before {
  position: absolute;
  top: 14px;
  right: -8px;
  bottom: 14px;
  left: auto;
  z-index: -1;
  display: block;
  width: 9px;
  border: 1px solid rgba(89, 84, 61, 0.22);
  border-left: 0;
  border-radius: 0 6px 6px 0;
  background: repeating-linear-gradient(0deg, #f9f4e5 0 4px, #d6ceb3 4px 5px);
  box-shadow: 7px 12px 18px rgba(26, 46, 32, 0.12);
  content: "";
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book::after {
  position: absolute;
  top: 13px;
  right: 18px;
  left: 18px;
  height: 1px;
  border-radius: 0;
  background: rgba(95, 91, 70, 0.14);
  content: "";
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__stage {
  position: absolute;
  inset: var(--album-top) var(--album-x) var(--album-bottom);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1400px;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__photo {
  inset: 0;
  padding: clamp(8px, 1vw, 12px) clamp(8px, 1vw, 12px) clamp(24px, 2.8vw, 34px);
  border: 1px solid rgba(89, 84, 61, 0.2);
  border-radius: 1px;
  background: #fffdf7;
  box-shadow:
    0 18px 34px rgba(26, 46, 32, 0.18),
    0 3px 7px rgba(26, 46, 32, 0.1);
  transform: translateX(18px) rotate(0.7deg) scale(0.98);
  transform-origin: left center;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__stage[data-direction="prev"] .dogwalking-diary__photo {
  transform: translateX(-18px) rotate(-0.7deg) scale(0.98);
  transform-origin: right center;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__photo.is-active {
  transform: translateX(0) rotate(-0.45deg) scale(1);
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__stage[data-direction="next"] .dogwalking-diary__photo.is-active {
  animation: dogwalking-album-page-forward 560ms cubic-bezier(0.2, 0.68, 0.22, 1) both;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__stage[data-direction="prev"] .dogwalking-diary__photo.is-active {
  animation: dogwalking-album-page-backward 560ms cubic-bezier(0.2, 0.68, 0.22, 1) both;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn {
  right: 28px;
  bottom: 24px;
  left: 28px;
  min-height: 46px;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn button {
  width: 44px;
  height: 44px;
  border-color: rgba(54, 69, 47, 0.38);
  color: var(--forest);
  background: #f7eed2;
  box-shadow: 0 6px 14px rgba(26, 46, 32, 0.1);
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn button:first-child {
  position: absolute;
  left: 0;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn button:last-child {
  position: absolute;
  right: 0;
}

.dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn span {
  color: #56613d;
  font-size: 12px;
}

@keyframes dogwalking-album-page-forward {
  0% {
    opacity: 0.25;
    transform: translateX(24px) rotateY(-14deg) rotate(0.8deg) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0) rotate(-0.45deg) scale(1);
  }
}

@keyframes dogwalking-album-page-backward {
  0% {
    opacity: 0.25;
    transform: translateX(-24px) rotateY(14deg) rotate(-0.8deg) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0) rotate(-0.45deg) scale(1);
  }
}

@media (max-width: 800px) {
  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__album {
    grid-template-columns: minmax(0, 1fr);
    padding: 8px;
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover,
  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book {
    min-height: 0;
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover {
    padding: 38px 28px 42px;
    border-radius: 7px 7px 1px 1px;
    box-shadow:
      inset 0 -24px 34px rgba(48, 51, 38, 0.11),
      inset 0 0 0 7px rgba(255, 253, 247, 0.26);
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover::after {
    top: auto;
    right: 0;
    bottom: -16px;
    left: 0;
    width: auto;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(45, 49, 36, 0.2) 47%, rgba(255, 253, 247, 0.42) 52%, transparent);
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover h3,
  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover p {
    max-width: 100%;
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book {
    --album-top: 34px;
    --album-x: clamp(22px, 5vw, 38px);
    --album-bottom: 86px;
    min-height: clamp(500px, 100vw, 650px);
    border-radius: 1px 1px 7px 7px;
    box-shadow:
      inset 0 24px 34px rgba(48, 51, 38, 0.1),
      inset 0 0 0 7px rgba(255, 253, 247, 0.24);
  }
}

@media (max-width: 540px) {
  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__cover {
    padding: 32px 22px 36px;
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__book {
    --album-top: 26px;
    --album-x: 18px;
    --album-bottom: 78px;
    min-height: clamp(420px, 118vw, 560px);
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__photo {
    padding: 7px 7px 24px;
  }

  .dogwalking-diary[data-dogwalking-gallery] .dogwalking-diary__turn {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }
}

/* Mobile refinement: compact typography and a high-contrast navigation. */
@media (max-width: 800px) {
  body {
    line-height: 1.65;
  }

  body.menu-open .site-header {
    border-bottom: 1px solid rgba(26, 46, 32, 0.14);
    background: rgba(247, 238, 210, 0.98);
  }

  body.menu-open .site-header .brand__name strong,
  body.menu-open .site-header .menu-toggle {
    color: var(--forest);
  }

  body.menu-open .site-header .brand__name span {
    color: var(--moss-dark);
  }

  body.menu-open .site-header .menu-toggle {
    border-color: rgba(26, 46, 32, 0.24);
  }

  .primary-nav {
    top: 72px;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    padding: 12px 20px 34px;
    color: var(--forest);
    background: var(--paper);
  }

  .primary-nav > ul {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .primary-nav > ul > li {
    border-bottom-color: rgba(26, 46, 32, 0.16);
  }

  body.menu-open .site-header .primary-nav > ul > li > a,
  body.menu-open .site-header .primary-nav .nav-main-link {
    min-height: 54px;
    color: var(--forest);
    font: 400 20px/1.2 var(--display);
  }

  body.menu-open .site-header .primary-nav > ul > li > a:hover,
  body.menu-open .site-header .primary-nav > ul > li > a:focus-visible,
  body.menu-open .site-header .primary-nav > ul > li > a[aria-current="page"],
  body.menu-open .site-header .primary-nav .nav-main-link:hover,
  body.menu-open .site-header .primary-nav .nav-main-link:focus-visible,
  body.menu-open .site-header .primary-nav .nav-main-link[aria-current="page"] {
    color: var(--moss-dark);
  }

  body.menu-open .primary-nav .submenu-button {
    width: 42px;
    height: 42px;
    color: var(--forest);
    font-size: 16px;
  }

  body.menu-open .primary-nav .submenu {
    margin: 0 0 12px;
    padding: 8px 14px 10px !important;
    border-left: 3px solid var(--moss);
    border-radius: 0 6px 6px 0;
    background: rgba(174, 185, 74, 0.12);
  }

  body.menu-open .primary-nav .submenu a {
    padding: 7px 8px;
    color: #4e5a31;
    font-size: 13px;
    line-height: 1.4;
  }

  body.menu-open .primary-nav .submenu a:hover,
  body.menu-open .primary-nav .submenu a:focus-visible,
  body.menu-open .primary-nav .submenu a[aria-current="page"] {
    color: var(--forest);
    background: rgba(255, 253, 247, 0.58);
  }

  body.menu-open .primary-nav .nav-contact {
    min-height: 44px !important;
    margin: 18px 0 6px;
    color: var(--forest) !important;
    background: var(--moss);
    font-size: 12px !important;
  }

  .section {
    padding-block: 68px;
  }

  .section--compact,
  .page-dogwalking .section--compact {
    padding-block: 54px;
  }

  .page-dogwalking .section {
    padding-block: 62px;
  }

  .band__inner,
  .dogwalking-trust__inner,
  .testimonials__inner,
  .cta__inner,
  .page-dogwalking .band__inner,
  .page-dogwalking .dogwalking-trust__inner {
    padding-block: 64px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 40px;
  }

  .intro-grid,
  .split,
  .home-qualifications__inner,
  .band__inner,
  .dogwalking-trust__inner,
  .testimonials__inner,
  .cta__inner {
    gap: 36px;
  }

  .category-card {
    min-height: 390px;
  }

  .event-story {
    gap: 58px;
    margin-top: 46px;
  }

  .faq details {
    padding: 19px 0;
  }

  body.menu-open .site-header {
    background: rgba(247, 238, 210, 0.84);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .primary-nav {
    right: 0;
    left: auto;
    width: min(84vw, 340px);
    padding: 10px 22px 28px;
    border-left: 1px solid rgba(26, 46, 32, 0.14);
    background: rgba(247, 238, 210, 0.94);
    box-shadow: -16px 18px 38px rgba(10, 25, 15, 0.2);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    transform: translateX(18px);
  }

  .primary-nav.is-open {
    transform: none;
  }

  .primary-nav > ul {
    margin: 0;
    text-align: center;
  }

  .primary-nav > ul > li {
    border-bottom-color: rgba(26, 46, 32, 0.13);
  }

  body.menu-open .site-header .primary-nav > ul > li > a,
  body.menu-open .site-header .primary-nav .nav-main-link {
    min-height: 46px;
    justify-content: center;
    color: var(--forest);
    font-size: 16px;
  }

  body.menu-open .site-header .primary-nav > ul > li > a:hover,
  body.menu-open .site-header .primary-nav > ul > li > a:focus-visible,
  body.menu-open .site-header .primary-nav > ul > li > a[aria-current="page"],
  body.menu-open .site-header .primary-nav .nav-main-link:hover,
  body.menu-open .site-header .primary-nav .nav-main-link:focus-visible,
  body.menu-open .site-header .primary-nav .nav-main-link[aria-current="page"] {
    color: var(--moss-dark);
  }

  .submenu-head {
    justify-content: center;
  }

  .nav-main-link span[aria-hidden="true"] {
    display: inline-grid;
    width: 32px;
    height: 38px;
    margin: -8px -8px -8px 0;
    place-items: center;
  }

  body.menu-open .primary-nav .submenu-button {
    display: none;
  }

  body.menu-open .primary-nav .submenu {
    margin: 0 0 8px;
    padding: 5px 10px 8px !important;
    border-right: 0;
    border-left: 0;
    border-radius: 6px;
    background: rgba(255, 253, 247, 0.5);
    list-style: none;
    text-align: center;
  }

  body.menu-open .primary-nav .submenu a {
    padding: 6px 7px;
    color: #4e5a31;
    font-size: 12px;
  }

  body.menu-open .primary-nav .nav-contact {
    min-height: 42px !important;
    margin: 4px 0;
    padding: 0 !important;
    border: 0 !important;
    color: var(--forest) !important;
    background: transparent;
    font: 400 16px/1.2 var(--display) !important;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 15px;
    line-height: 1.62;
  }

  .anny-shell {
    padding: 6px;
    border-radius: 14px;
  }

  .anny-consent-placeholder {
    padding: 22px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand__name strong {
    font-size: 14px;
  }

  .brand__name span {
    font-size: 12px;
  }

  .menu-toggle {
    min-height: 41px;
    padding: 0 13px;
    font-size: 11px;
  }

  .primary-nav {
    padding: 10px 17px 28px;
  }

  body.menu-open .site-header .primary-nav > ul > li > a,
  body.menu-open .site-header .primary-nav .nav-main-link {
    min-height: 50px;
    font-size: 16px;
  }

  body.menu-open .primary-nav .nav-contact {
    font-size: 16px !important;
  }

  .hero {
    min-height: 620px;
  }

  .hero__content {
    padding: 118px 0 64px;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero .hero__content {
    padding: 118px 0 60px;
  }

  h1,
  .page-hero h1 {
    margin-bottom: 21px;
    font-size: 40px;
    line-height: 1.08;
  }

  .hero__lead {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero__copy .hero__lead + .hero__lead {
    margin-top: -10px;
  }

  .hero__actions,
  .button-row {
    gap: 11px;
  }

  .button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero__schedule {
    margin: -2px 0 20px;
    padding: 5px 12px;
  }

  .hero__schedule div,
  .hero__schedule div:first-child {
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 7px 0;
  }

  .hero__schedule dd {
    font-size: 12px;
  }

  .section,
  .page-dogwalking .section {
    padding-block: 52px;
  }

  .section--compact,
  .page-dogwalking .section--compact {
    padding-block: 44px;
  }

  .band__inner,
  .dogwalking-trust__inner,
  .testimonials__inner,
  .cta__inner,
  .page-dogwalking .band__inner,
  .page-dogwalking .dogwalking-trust__inner {
    padding-block: 52px;
  }

  .section h2,
  .band h2,
  .dogwalking-trust h2,
  .cta h2,
  .testimonials__heading h2,
  .page-dogwalking .testimonials__heading h2 {
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.08;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .section-label {
    margin-bottom: 13px;
    font-size: 10px;
  }

  .intro-grid,
  .split,
  .band__inner,
  .dogwalking-trust__inner,
  .testimonials__inner,
  .cta__inner {
    gap: 28px;
  }

  .intro-grid__copy > p,
  .split__copy > p,
  .event-story__item p,
  .behavior-focus p,
  .dogwalking-diary__cover p {
    font-size: 15px;
    line-height: 1.65;
  }

  .home-qualifications__inner {
    width: min(calc(100% - 40px), var(--max));
    padding-block: 58px;
  }

  .home-qualifications__list {
    grid-template-columns: repeat(5, 170px);
    gap: 8px;
  }

  .home-qualifications__list li {
    min-height: 190px;
    padding: 28px 8px;
    font-size: 12px;
  }

  .home-qualifications__icon {
    width: 116px;
    height: 116px;
  }

  .home-qualifications__icon svg {
    width: 46px;
    height: 46px;
  }

  .intro-grid__visual img,
  .split__visual img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .category-card {
    min-height: 330px;
  }

  .category-card__copy {
    padding: 22px;
  }

  .category-card h3,
  .event-story__item h3 {
    font-size: 30px;
  }

  .training-card {
    min-height: 250px;
  }

  .training-card__content {
    min-height: 250px;
    padding: 23px;
  }

  .training-card h3,
  .fact strong,
  .steps h3,
  .price-card h3,
  .dogwalking-trust__list h3 {
    font-size: 23px;
  }

  .fact,
  .price-card,
  .offer-path,
  .event-card {
    padding: 23px;
  }

  .dogwalking-bubble,
  .dogwalking-bubble--large,
  .dogwalking-bubble--tall {
    min-height: 0;
    padding: 26px;
  }

  .steps li,
  .steps li:first-child {
    padding: 21px 0;
  }

  .steps--training-flow li,
  .steps--training-flow li:first-child {
    padding: 0 0 42px 52px;
  }

  .steps--dogwalking {
    margin-top: 36px;
  }

  .faq summary {
    font-size: 18px;
    line-height: 1.35;
  }

  .faq details {
    padding: 16px 0;
  }

  .faq details p {
    margin-top: 13px;
  }

  .testimonial-stage {
    padding: 25px 22px;
  }

  .testimonial-slide blockquote,
  .page-dogwalking .testimonial-slide blockquote {
    font-size: 15px;
    line-height: 1.55;
  }

  .site-footer__inner {
    gap: 28px;
    padding: 36px 0 22px;
  }

  .site-footer__bottom {
    gap: 18px;
    padding-top: 14px;
  }

  .legal-copy h2 {
    margin-top: 48px;
    font-size: 30px;
  }

  .legal-copy h3,
  .form-section summary {
    font-size: 20px;
  }
}

@media (max-width: 390px) {
  h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .section h2,
  .band h2,
  .dogwalking-trust h2,
  .cta h2,
  .testimonials__heading h2,
  .page-dogwalking .testimonials__heading h2 {
    font-size: 31px;
  }

  .brand__name strong {
    font-size: 13px;
  }

  .brand__name span {
    font-size: 11px;
  }
}

/* Veranstaltungen: kompaktere Bilder lassen Titel und Text als Einheit wirken. */
.page-events .event-story__item {
  align-items: center;
}

@media (min-width: 901px) {
  .page-events .event-story__item,
  .page-events .event-story__item--wide,
  .page-events .event-story__item--reverse {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(34px, 5vw, 70px);
  }

  .page-events .event-story__item:nth-child(2) {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  }
}

.page-events .event-story__item img {
  height: clamp(250px, 31vw, 400px);
}

.page-events .event-story__item h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 900px) {
  .page-events .event-story__item img {
    height: 250px;
  }
}

@media (max-width: 540px) {
  .page-events .event-story {
    gap: 48px;
  }

  .page-events .event-story__item {
    gap: 20px;
  }

  .page-events .event-story__item img {
    height: 210px;
    border-radius: 24px 8px 24px 8px;
  }
}

/* Über mich: ruhige Zweiergalerie und Hochformat für das Hundefoto. */
.team-overview {
  position: relative;
}

.team-overview::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: var(--cream);
  content: "";
  transform: translateX(-50%);
}

.team-overview > * {
  position: relative;
  z-index: 1;
}

.team-intro {
  width: min(760px, 100%);
  margin-bottom: clamp(36px, 6vw, 64px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.team-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 18px 42px rgb(25 46 32 / 10%);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-card:hover,
.team-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgb(25 46 32 / 16%);
}

.team-card__visual {
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  background: var(--forest);
}

.team-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__placeholder {
  font-family: var(--script);
  font-size: clamp(64px, 8vw, 104px);
  color: var(--cream);
}

.team-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 34px);
}

.team-card__copy h2 {
  margin-bottom: 10px;
}

.team-card__copy p {
  margin-bottom: 22px;
}

.team-card__copy .arrow-link {
  margin-top: auto;
}

.profile-placeholder {
  text-align: center;
}

.profile-placeholder__mark {
  display: grid;
  width: min(260px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--forest);
  font-family: var(--script);
  font-size: clamp(72px, 12vw, 132px);
}

.about-image-band--pair {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
}

.about-image-band--pair img {
  width: 100%;
  height: clamp(360px, 40vw, 500px);
}

.about-image-band__pair-main img {
  object-position: center 54%;
}

.about-image-band__pair-side img {
  object-position: center 42%;
}

.about-dogs__image--empty::before {
  display: none;
}

.about-dogs__image--portrait img {
  object-position: center 46%;
}

.page-hero--prices .hero__image {
  object-position: center 42%;
}

@media (max-width: 800px) {
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-card__visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .about-image-band--pair {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-image-band--pair img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-dogs__image--empty {
    display: none;
  }

  .about-dogs__image--portrait img {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .page-hero--prices .hero__image {
    object-position: 57% center;
  }
}

/* Mobile form controls and Dogwalking process: keep native controls and flow aligned. */
@media (max-width: 540px) {
  .booking-form {
    gap: 24px;
    margin-top: 30px;
  }

  .form-section {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .choice-grid label {
    min-height: 48px;
    padding: 11px 12px;
  }

  .choice-stack {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .choice-stack label,
  .consent,
  .choice-grid label {
    gap: 12px;
  }

  .choice-stack input,
  .consent input,
  .choice-grid input {
    flex-basis: 22px;
    width: 22px;
    min-width: 22px;
    height: 22px;
  }

  .steps--dogwalking li,
  .steps--dogwalking li:first-child,
  .steps--dogwalking li:nth-child(4),
  .steps--dogwalking li:nth-child(5),
  .steps--dogwalking li:nth-child(6) {
    min-height: 0;
    padding: 0 0 58px 68px;
  }

  .steps--dogwalking li::before,
  .steps--dogwalking li:nth-child(3)::before,
  .steps--dogwalking li:nth-child(4)::before,
  .steps--dogwalking li:nth-child(5)::before {
    top: 48px;
    bottom: 8px;
    left: 22px;
  }

  .steps--dogwalking li::after,
  .steps--dogwalking li:nth-child(3)::after,
  .steps--dogwalking li:nth-child(4)::after,
  .steps--dogwalking li:nth-child(5)::after {
    bottom: 10px;
    left: 9px;
  }

  .steps--dogwalking h3 {
    margin: 4px 0 8px;
  }

  .steps--dogwalking p {
    margin: 0;
  }
}
