/* Hundeschule – Pastell-Naturgrün, ohne externe Schriftarten (DSGVO-freundlich) */
:root {
  --color-bg: #e5f0e7;
  --color-bg-card: #edf6ef;
  --color-surface: #f9fcf9;
  --color-text: #1f3328;
  --color-muted: #4d6356;
  --color-accent: #6aab84;
  --color-accent-hover: #559470;
  --color-sage: #3d6b4f;
  --color-forest: #243d30;
  --color-moss: #5c8068;
  --color-border: #c0dac8;
  --color-header-mint: #c8e9da;
  --color-header-mint-soft: #dff5ed;
  --color-header-mint-deep: #b0dac4;
  --color-header-mint-border: #a8d1be;
  /* Dezenter Hinweis-Ton: warmes Gold (kein Rot), lesbar auf Mint */
  --color-attention-warm: #b8942e;
  --color-attention-warm-soft: rgba(184, 148, 46, 0.38);
  --font-sans: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 10px 36px rgba(31, 51, 40, 0.08);
  --max-width: 1100px;
  /* Foto-Hintergrund wie Hero: Pastell-Overlay über dem Bild */
  --photo-bg-overlay: linear-gradient(
    180deg,
    rgba(229, 240, 231, 0.92) 0%,
    rgba(229, 240, 231, 0.8) 40%,
    rgba(229, 240, 231, 0.95) 100%
  );
  /* Bildspalte neben Text: Über mich + Einzelstunde + Social Walk */
  --about-aside-photo-col: clamp(8.5rem, 28vw, 14rem);
  --about-aside-photo-col-mobile: clamp(8rem, 58vw, 12.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  padding-bottom: 4.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent-hover);
}

:focus-visible {
  outline: 3px solid var(--color-sage);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--color-forest);
  color: #f0faf2;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    180deg,
    var(--color-header-mint-soft) 0%,
    var(--color-header-mint) 48%,
    var(--color-header-mint-deep) 100%
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-header-mint-border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-text);
}

.brand-lockup img {
  width: 72px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.brand-lockup .brand-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand:hover,
.brand-lockup:hover {
  color: var(--color-accent);
}

.brand-lockup:hover .brand-text {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font: inherit;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
}

.nav-list a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-list a:hover {
  color: var(--color-accent);
}

.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
  color: #fff !important;
}

main {
  min-height: 50vh;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero {
  padding: 3rem 0 4rem;
  text-align: center;
}

.hero.hero--with-home-bg {
  background-image: var(--photo-bg-overlay), url("../images/Bild%201.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

/* Slogan: Handschrift aus Systemfonts, größer (kein externes CDN) */
.hero .tagline.tagline-slogan {
  font-family:
    "Segoe Script",
    "Lucida Handwriting",
    "Apple Chancery",
    "Snell Roundhand",
    "Brush Script MT",
    "Segoe Print",
    cursive;
  font-size: clamp(1.95rem, 6vw, 3.1rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
  color: var(--color-sage);
  letter-spacing: 0.04em;
  max-width: min(36rem, 92vw);
  margin: 0 auto 1.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

section {
  padding: 3rem 0;
}

section:nth-child(even) {
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-lead {
  text-align: center;
  color: var(--color-muted);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

/* Start: „Über mich“ + „Angebot“ mit gemeinsamem Bild-2-Hintergrund (volle Viewport-Breite) */
.home-bild2-backdrop {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.home-bild2-backdrop::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--color-bg-card);
  background-image: var(--photo-bg-overlay), url("../images/Bild%202.jpg");
  background-size: cover, cover;
  background-position: center, center 42%;
  background-repeat: no-repeat;
}

.home-bild2-backdrop > section {
  position: relative;
  z-index: 1;
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
}

.home-bild2-backdrop .wrap {
  position: relative;
  z-index: 1;
}

.prose--about-card {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.25rem 0 0.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.home-bild2-backdrop .prose--about-card > .section-title,
.home-bild2-backdrop .prose--about-card .about-with-photo__text p {
  text-shadow:
    0 0 8px rgba(237, 246, 239, 0.98),
    0 0 18px rgba(229, 240, 231, 0.9),
    0 1px 2px rgba(255, 255, 255, 0.95);
}

.home-bild2-backdrop .section--offer .section-title,
.home-bild2-backdrop .section--offer .section-lead,
.home-bild2-backdrop .section--offer .offer-block h3,
.home-bild2-backdrop .section--offer .offer-block h4,
.home-bild2-backdrop .section--offer .offer-block p,
.home-bild2-backdrop .section--offer .offer-block .offer-topic-list,
.home-bild2-backdrop .section--offer .offer-block .offer-topic-list li,
.home-bild2-backdrop .section--offer a {
  text-shadow:
    0 0 8px rgba(237, 246, 239, 0.98),
    0 0 18px rgba(229, 240, 231, 0.88),
    0 1px 2px rgba(255, 255, 255, 0.92);
}

.about-with-photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--about-aside-photo-col);
  gap: 1rem 1.35rem;
  align-items: start;
  margin-top: 0.35rem;
}

.about-with-photo__text {
  min-width: 0;
}

.about-with-photo__text > p:first-child {
  margin-top: 0;
}

.prose--about-card .about-with-photo__text p {
  text-align: left;
}

.about-strand-photo,
.offer-aside-photo--social-walk,
.offer-aside-photo--una,
.offer-aside-photo--gruppenfoto,
.offer-aside-photo--hund-kind {
  margin: 0;
  width: 100%;
  max-width: none;
  min-height: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.about-strand-photo img,
.offer-aside-photo--social-walk img,
.offer-aside-photo--una img,
.offer-aside-photo--gruppenfoto img,
.offer-aside-photo--hund-kind img {
  flex: 0 1 auto;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.offer-block--with-aside__inner > .offer-aside-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  align-self: start;
  min-width: 0;
  width: 100%;
}

.offer-aside-stack .offer-aside-photo--una img,
.offer-aside-stack .offer-aside-photo--gruppenfoto img {
  max-height: min(40vh, 22rem);
}

.offer-aside-photo--asko img,
.about-strand-photo img,
.offer-aside-photo--social-walk img,
.offer-aside-photo--una img,
.offer-aside-photo--gruppenfoto img,
.offer-aside-photo--hund-kind img {
  border-radius: var(--radius);
  border: 1px solid var(--color-header-mint-border);
  box-shadow: 0 6px 20px rgba(61, 107, 79, 0.16);
}

@media (max-width: 36rem) {
  .about-with-photo {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
  }

  .about-with-photo__text {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }

  .about-strand-photo,
  .section--offer .offer-aside-photo--social-walk,
  .section--offer .offer-aside-photo--hund-kind,
  .section--offer .offer-aside-stack {
    width: var(--about-aside-photo-col-mobile);
    margin-top: 0.75rem;
    align-self: center;
    height: auto;
    flex: none;
  }

  .about-strand-photo img,
  .section--offer .offer-aside-photo--social-walk img,
  .section--offer .offer-aside-photo--hund-kind img,
  .section--offer .offer-aside-stack .offer-aside-photo img {
    flex: 0 1 auto;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: min(70vh, 32rem);
    object-fit: contain;
  }

  .section--offer .offer-aside-stack .offer-aside-photo--una img,
  .section--offer .offer-aside-stack .offer-aside-photo--gruppenfoto img {
    max-height: min(46vh, 20rem);
  }

  .offer-aside-photo--asko img,
  .about-strand-photo img,
  .section--offer .offer-aside-photo--social-walk img,
  .section--offer .offer-aside-photo--hund-kind img,
  .section--offer .offer-aside-stack .offer-aside-photo--una img,
  .section--offer .offer-aside-stack .offer-aside-photo--gruppenfoto img {
    border-radius: var(--radius);
    border: 1px solid var(--color-header-mint-border);
    box-shadow: 0 6px 20px rgba(61, 107, 79, 0.16);
  }
}

.section--offer .offer-block {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
}

.section--offer .offer-block:last-child {
  margin-bottom: 0;
}

.section--offer .offer-block h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--color-sage);
  text-align: left;
}

.section--offer .offer-block h4.offer-subheading {
  margin: 1.35rem 0 0.6rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-sage);
  text-align: left;
}

.section--offer .offer-block .offer-topic-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--color-text);
  line-height: 1.55;
}

.section--offer .offer-block .offer-topic-list li {
  margin-bottom: 0.3rem;
}

.section--offer .offer-block .offer-topic-list li:last-child {
  margin-bottom: 0;
}

.section--offer .offer-block p {
  margin: 0 0 1rem;
  color: var(--color-text);
  line-height: 1.65;
}

/* Einzelstunde: kleines ASKÖ-Bild neben dem Fließtext */
.offer-block--with-aside .offer-block--with-aside__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--about-aside-photo-col);
  gap: 1rem 1.35rem;
  align-items: start;
}

.offer-block--with-aside .offer-block--with-aside__text {
  min-width: 0;
}

.offer-block--with-aside .offer-block--with-aside__text > p:first-child {
  margin-top: 0;
}

.offer-aside-photo--asko {
  margin: 0;
  width: 100%;
  align-self: start;
  display: flex;
  justify-content: center;
}

.offer-aside-photo--asko img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Social Walk / Gruppenstunden (Una + Gruppenfoto): gleiche Bildbehandlung wie Strand */
.offer-block--with-aside--photo .offer-block--with-aside__inner {
  align-items: start;
}

@media (max-width: 36rem) {
  .offer-block--with-aside .offer-block--with-aside__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .offer-aside-photo--asko {
    width: var(--about-aside-photo-col-mobile);
    margin-top: 0.35rem;
  }

  .offer-block--with-aside--photo .offer-block--with-aside__inner {
    align-items: start;
  }
}

.section--offer .offer-block p:last-child {
  margin-bottom: 0;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--color-moss);
}

.card p {
  margin: 0;
  color: var(--color-muted);
}

.card p + p {
  margin-top: 0.75rem;
}

.hero-logo {
  width: min(320px, 88vw);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Impressum: Boogie über volle Browserbreite hinter dem Text (wie Kontakt) */
main.legal-page--impressum-bg {
  position: relative;
  z-index: 0;
  min-height: min(100vh, 960px);
  background-color: var(--color-bg-card);
}

main.legal-page--impressum-bg::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--photo-bg-overlay), url("../images/Boogie%202.jpg");
  background-size: cover, cover;
  background-position: center, center 32%;
  background-repeat: no-repeat;
}

main.legal-page--impressum-bg > .wrap {
  position: relative;
  z-index: 1;
}

.legal-page--impressum-bg .legal-page__prose-sheet {
  background: transparent;
  border: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.legal-page--impressum-bg .legal-page__prose-sheet :where(h1, h2, h3, p, li, th, td, a) {
  text-shadow:
    0 0 8px rgba(237, 246, 239, 0.98),
    0 0 18px rgba(229, 240, 231, 0.88),
    0 1px 2px rgba(255, 255, 255, 0.92);
}

/* Kontakt: Bild 3 über volle Breite hinter dem Inhalt */
main.legal-page--kontakt-bg {
  position: relative;
  z-index: 0;
  min-height: min(100vh, 960px);
  background-color: var(--color-bg-card);
}

main.legal-page--kontakt-bg::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--photo-bg-overlay), url("../images/Bild%203.jpg");
  background-size: cover, cover;
  background-position: center, center 36%;
  background-repeat: no-repeat;
}

main.legal-page--kontakt-bg > .wrap {
  position: relative;
  z-index: 1;
}

.legal-page--kontakt-bg .legal-page__kontakt-inner > .section-title,
.legal-page--kontakt-bg .legal-page__kontakt-inner .prose h2,
.legal-page--kontakt-bg .legal-page__kontakt-inner .prose p,
.legal-page--kontakt-bg .legal-page__kontakt-inner .form-hint,
.legal-page--kontakt-bg .legal-page__kontakt-inner .card h2,
.legal-page--kontakt-bg .legal-page__kontakt-inner .card p {
  text-shadow:
    0 0 8px rgba(237, 246, 239, 0.98),
    0 0 18px rgba(229, 240, 231, 0.88),
    0 1px 2px rgba(255, 255, 255, 0.92);
}

.legal-page--kontakt-bg .legal-page__kontakt-inner .card {
  background: rgba(249, 252, 249, 0.78);
  border-color: rgba(192, 218, 200, 0.55);
}

/* Datenschutz: Charlie über volle Browserbreite hinter dem Text */
main.legal-page--datenschutz-bg {
  position: relative;
  z-index: 0;
  min-height: min(100vh, 960px);
  background-color: var(--color-bg-card);
}

main.legal-page--datenschutz-bg::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--photo-bg-overlay), url("../images/Charlie.jpg");
  background-size: cover, cover;
  background-position: center, center 38%;
  background-repeat: no-repeat;
}

main.legal-page--datenschutz-bg > .wrap {
  position: relative;
  z-index: 1;
}

.legal-page--datenschutz-bg .prose :where(h1, h2, h3, p, li, th, td, a) {
  text-shadow:
    0 0 8px rgba(237, 246, 239, 0.98),
    0 0 18px rgba(229, 240, 231, 0.88),
    0 1px 2px rgba(255, 255, 255, 0.92);
}

/* AGB: Carlo über volle Browserbreite hinter dem Text */
main.legal-page--agb-bg {
  position: relative;
  z-index: 0;
  min-height: min(100vh, 960px);
  background-color: var(--color-bg-card);
}

main.legal-page--agb-bg::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--photo-bg-overlay), url("../images/Carlo.jpg");
  background-size: cover, cover;
  background-position: center, center 38%;
  background-repeat: no-repeat;
}

main.legal-page--agb-bg > .wrap {
  position: relative;
  z-index: 1;
}

.legal-page--agb-bg .prose :where(h1, h2, h3, p, li, th, td, a) {
  text-shadow:
    0 0 8px rgba(237, 246, 239, 0.98),
    0 0 18px rgba(229, 240, 231, 0.88),
    0 1px 2px rgba(255, 255, 255, 0.92);
}

.page-photo-band {
  margin: 0;
  padding: 0;
  min-height: clamp(240px, 42vw, 480px);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-bg-card);
  background-repeat: no-repeat;
  background-size: cover, contain;
}

.page-photo-band--bild1 {
  background-image: var(--photo-bg-overlay), url("../images/Bild%201.jpg");
  background-position: center, center 30%;
}

.page-photo {
  margin: 0 0 1.5rem;
}

.page-photo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(520px, 72vh);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.placeholder-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #d4eadc 0%, #e8f4ec 45%, #f2f9f4 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  border: 1px dashed rgba(95, 128, 104, 0.35);
}

.steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  position: relative;
  padding-left: 3.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(160deg, var(--color-accent) 0%, var(--color-moss) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(61, 107, 79, 0.25);
}

.step h3 {
  margin: 0 0 0.5rem;
}

.cta-band {
  text-align: center;
  padding: 3rem 1.25rem;
  background: linear-gradient(
    155deg,
    var(--color-forest) 0%,
    var(--color-sage) 48%,
    #4d8262 100%
  );
  color: #f0faf2;
}

.cta-band h2 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
}

.cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p.cta-band__phone {
  margin-bottom: 0.85rem;
}

.cta-band__address {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  padding: 1rem 1.25rem 1.1rem;
  font-style: normal;
  line-height: 1.65;
  text-align: center;
  opacity: 0.96;
  color: inherit;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-band__address-label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.88;
}

.cta-band .btn-primary {
  background: #f4faf6;
  color: var(--color-sage);
}

.cta-band .btn-primary:hover {
  background: #dff0e4;
  color: var(--color-forest);
}

/* Ausbildungsnachweis Ziemer & Falke (Startseite, unter Kontaktband) */
.partner-badge {
  padding: 2rem 1rem 2.5rem;
  text-align: center;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.partner-badge__inner {
  display: flex;
  justify-content: center;
}

.partner-badge__link {
  display: inline-block;
  width: 150px;
  height: 150px;
  line-height: 0;
  text-decoration: none !important;
}

.partner-badge__link:hover {
  opacity: 0.92;
}

.partner-badge__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-footer {
  background: linear-gradient(180deg, var(--color-forest) 0%, #1a2e22 100%);
  color: #d4e8da;
  padding: 2.5rem 1.25rem;
  margin-top: 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.site-footer a {
  color: #b8e4c8;
}

.site-footer a:hover {
  color: #f0faf2;
}

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(180, 220, 195, 0.22);
  font-size: 0.9rem;
  text-align: center;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h1 {
  margin-top: 0;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.prose--home h2.section-title {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-page .wrap {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
  background: var(--color-surface);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.35rem;
}

/* Pillen-Überschrift (z. B. Demnächst neu, Events & Aktionen, Kontakt-Band) */
.section-title.section-title--pill {
  display: inline-block;
  margin: 0 auto 0.9rem;
  padding: 0.55rem 1.5rem 0.6rem;
  max-width: min(100%, 44rem);
  font-size: clamp(1.35rem, 3.4vw, 1.95rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #f4faf6;
  background: linear-gradient(145deg, var(--color-sage) 0%, var(--color-forest) 100%);
  border-radius: 999px;
  box-shadow: 0 3px 16px rgba(36, 61, 48, 0.3);
  line-height: 1.25;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

section.section-events {
  position: relative;
  isolation: isolate;
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

section.section-events::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
      180deg,
      rgba(229, 240, 231, 0.94) 0%,
      rgba(229, 240, 231, 0.82) 42%,
      rgba(229, 240, 231, 0.9) 100%
    ),
    url("../images/Boot.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

section.section-events .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

section.section-events .section-lead,
section.section-events .events-list > li:not(.events-list-item--nutrition),
section.section-events .events-list > li:not(.events-list-item--nutrition) strong,
section.section-events .events-list-item__label {
  text-shadow:
    0 0 10px rgba(237, 246, 239, 0.98),
    0 0 22px rgba(229, 240, 231, 0.88),
    0 1px 2px rgba(255, 255, 255, 0.95);
}

.section-events .events-list {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.cta-band h2.section-title.section-title--pill {
  margin: 0 auto 1rem;
}

section.section-demnaechst {
  position: relative;
  padding: 3.35rem 0 3.5rem;
  /* Eigener „Band“-Hintergrund, stärker vom Angebot / den Preisen abgegrenzt */
  background:
    linear-gradient(
      180deg,
      rgba(61, 107, 79, 0.1) 0%,
      rgba(229, 240, 231, 0.35) 18%,
      rgba(237, 246, 239, 0.92) 50%,
      rgba(229, 240, 231, 0.4) 82%,
      rgba(61, 107, 79, 0.11) 100%
    ),
    radial-gradient(
      ellipse 120% 80% at 50% 0%,
      rgba(200, 233, 218, 0.55) 0%,
      transparent 58%
    ),
    var(--color-bg-card);
  border-top: 1px solid rgba(61, 107, 79, 0.28);
  border-bottom: 1px solid var(--color-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 18px 42px rgba(31, 51, 40, 0.07);
}

section.section-demnaechst .wrap {
  text-align: center;
}

section.section-demnaechst .notice-box + .section-title.section-title--pill {
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
}

section.section-demnaechst .notice-box {
  border-top: 3px solid var(--color-attention-warm);
  box-shadow:
    0 10px 32px rgba(61, 107, 79, 0.16),
    0 0 0 1px var(--color-attention-warm-soft),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

/* Hervorgehobener Kasten (z. B. „Demnächst neu“) – Mint wie Kopfzeile */
.notice-box {
  max-width: 44rem;
  margin: 0.75rem auto 0;
  padding: 1.35rem 1.65rem;
  background: linear-gradient(
    145deg,
    var(--color-header-mint-soft) 0%,
    var(--color-header-mint) 42%,
    var(--color-header-mint-deep) 100%
  );
  border: 1px solid var(--color-header-mint-border);
  border-radius: var(--radius);
  border-left: 5px solid var(--color-accent);
  box-shadow: 0 8px 28px rgba(61, 107, 79, 0.14);
  color: var(--color-text);
}

.notice-box p {
  margin: 0;
  line-height: 1.65;
}

.notice-box p + p {
  margin-top: 0.65rem;
}

.notice-box strong {
  color: var(--color-sage);
}

.price-table {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.price-table th,
.price-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.price-table th {
  color: var(--color-sage);
  width: 42%;
}

.events-list {
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
  padding-left: 1.25rem;
}

.events-list li {
  margin-bottom: 0.5rem;
}

.events-list-item--nutrition {
  margin-bottom: 0.85rem;
}

.events-list-item__label {
  margin: 0 0 0.65rem;
  line-height: 1.55;
}

.events-callout--nutrition {
  margin: 0;
  padding: 1.1rem 1.35rem 1.2rem;
  max-width: 36rem;
  text-align: left;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-left: 4px solid var(--color-accent);
  background: transparent;
  box-shadow: none;
}

.events-callout__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-sage);
  letter-spacing: 0.01em;
  text-shadow:
    0 0 10px rgba(237, 246, 239, 0.98),
    0 0 22px rgba(229, 240, 231, 0.88),
    0 1px 2px rgba(255, 255, 255, 0.95);
}

.events-callout__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text);
  text-shadow:
    0 0 10px rgba(237, 246, 239, 0.98),
    0 0 22px rgba(229, 240, 231, 0.88),
    0 1px 2px rgba(255, 255, 255, 0.95);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none !important;
  background: #25d366;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff !important;
}

.cta-band .btn-whatsapp {
  background: #f4faf6;
  color: #128c4a !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cta-band .btn-whatsapp:hover {
  background: #fff;
  color: #0d6e3a !important;
}

.whatsapp-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.15rem;
  right: 1.15rem;
  z-index: 250;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.07);
  color: #fff;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: linear-gradient(
      180deg,
      var(--color-header-mint-soft) 0%,
      var(--color-header-mint) 40%,
      var(--color-header-mint-deep) 100%
    );
    border-bottom: 1px solid var(--color-header-mint-border);
    padding: 1rem 1.25rem 1.5rem;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list a {
    padding: 0.5rem 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}
