/* ============================================================
   Klingberg — WordPress-theme-ready stylesheet
   Version E ("Hell & Mutig"): light colour scheme, bold layouts.

   Structure:
     1. Design tokens (colors, type, shadows)
     2. Fonts & base
     3. Layout primitives (.container, .section)
     4. Components, BEM-named:
        .site-header, .site-brand, .site-nav, .nav-toggle, .mobile-menu
        .hero, .page-hero
        .service-index, .service-detail, .feature-band, .step-list
        .patient-group, .anchor-nav, .spectrum, .transport-card
        .article-grid, .article-card
        .owner, .value-list, .gallery-grid, .ph-media
        .info-list, .icon-tile, .notice-card, .hours-table, .termin-cards
        .cta-band, .site-footer
        .btn, .chip, .tag, .eyebrow, .icon
     5. Responsive (single 900px breakpoint)
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Markengrün · Lime */
  --green-50:  #f3f8e9;
  --green-100: #e4f0cf;
  --green-200: #cce2a3;
  --green-500: #8DBE3D;
  --green-700: #567c22;
  --green-900: #2f4416;
  --green-800: #47602a;

  --brand:        var(--green-500);
  --brand-strong: var(--green-700);
  --brand-deep:   var(--green-800);

  /* Akzent · Mint */
  --mint-soft: #e3f4f0;
  --mint:      #2FA593;
  --mint-ink:  #0f5a50;
  --accent:      var(--mint);
  --accent-ink:  var(--mint-ink);

  /* Warm neutrals */
  --n-00:  #ffffff;
  --n-25:  #faf9f5;
  --n-200: #e6e5dc;
  --n-700: #56564d;
  --n-900: #23231d;

  /* Functional aliases */
  --bg:           var(--n-25);
  --surface:      var(--n-00);
  --surface-soft: var(--green-50);
  --surface-tint: #F3F8E9;
  --ink:          var(--n-900);
  --muted:        #6f6f64;
  --line:         var(--n-200);
  --link:         var(--accent-ink);

  /* Type */
  --font-head: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Shadows (green-tinted) */
  --shadow-sm: 0 4px 14px -6px rgba(40, 50, 20, 0.20);
  --shadow-md: 0 12px 30px -18px rgba(40, 50, 20, 0.30);
  --shadow-lg: 0 24px 50px -26px rgba(40, 50, 20, 0.40);
  --shadow-xl: 0 30px 70px -40px rgba(40, 50, 20, 0.40);

  /* Layout */
  --wrap: 1200px;
  --gutter: 28px;

  /* Logo mark (CSS mask source) */
  --mark-url: url('../img/klingberg-mark.svg');
}

::selection { background: #cfe69b; color: var(--green-900); }

/* ---------- 2. Fonts & base ---------- */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/nunito-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/nunito-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020, U+20A0-20AB, U+20AD-20C0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--brand-deep); margin: 0; line-height: 1.2; }
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }

/* Inline SVG icons (sprite <use>) */
.icon {
  width: 18px; height: 18px; flex: none;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: middle;
}
.icon--sm { width: 15px; height: 15px; }
.icon--lg { width: 23px; height: 23px; }
.icon--xl { width: 26px; height: 26px; }

/* ---------- 3. Layout primitives ---------- */
.container { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.section { padding: 84px 0; }
.section--soft { background: var(--surface-soft); border-top: 1px solid var(--line); }
.section--tint { background: var(--surface-tint); }
.section--dark { background: var(--brand-deep); }
.section--lime { background: var(--brand); }
.section--bordered { border-top: 1px solid var(--line); }

.eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
}
.eyebrow--dash { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-strong); }
.eyebrow--dash::before { content: ''; width: 30px; height: 2px; background: var(--brand); }

.section-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.section-head__title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -.02em; }
.section-head__title--xl { font-size: clamp(28px, 4vw, 48px); line-height: 1; }

.split { display: grid; gap: 48px; align-items: center; }
.split--balanced { grid-template-columns: 1fr 1fr; }
.split--narrow-wide { grid-template-columns: .85fr 1.15fr; }
.split--wide-narrow { grid-template-columns: 1.15fr .85fr; }

/* ---------- 4. Components ---------- */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 14px; line-height: 1;
  padding: 12px 22px; border-radius: 11px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--lime { background: var(--brand); border-color: var(--brand); color: var(--brand-deep); }
.btn--lime:hover { background: var(--brand-strong); border-color: var(--brand-strong); color: #fff; }
.btn--outline { background: transparent; border-color: var(--line); color: var(--brand-deep); }
.btn--outline:hover { border-color: var(--brand-strong); color: var(--brand-strong); }
.btn--dark { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; border-radius: 999px; padding: 15px 28px; font-size: 15px; }
.btn--dark .icon { color: var(--brand); }
.btn--pill { border-radius: 999px; }
.btn--block { width: 100%; }

/* Chips & tags */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 12.5px; color: var(--brand-deep);
  background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: 999px; padding: 6px 13px; white-space: nowrap;
}
.chip--surface { background: var(--surface); border-color: var(--line); }
.chip-list { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  display: inline-flex; align-items: center;
  font-weight: 700; font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand-strong); background: var(--green-50);
  padding: 5px 11px; border-radius: 999px;
}

/* Icon tile (dark square with lime icon) */
.icon-tile {
  width: 46px; height: 46px; flex: none; border-radius: 13px;
  background: var(--brand-deep); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-tile--sm { width: 42px; height: 42px; border-radius: 12px; }
.icon-tile--lg { width: 54px; height: 54px; border-radius: 16px; }
.icon-tile--lime { background: var(--brand); color: var(--brand-deep); }

/* Site header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 30px; padding-top: 16px; padding-bottom: 16px; }

.site-brand { display: inline-flex; align-items: center; gap: 14px; margin-right: auto; }
.site-brand__mark {
  display: inline-block; width: 46px; height: 46px; flex: none;
  background: var(--brand);
  -webkit-mask: var(--mark-url) center / contain no-repeat;
  mask: var(--mark-url) center / contain no-repeat;
}
.site-brand__text { line-height: 1.05; }
.site-brand__kicker {
  display: block; font-family: var(--font-head); font-weight: 600; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--brand-strong);
  margin-bottom: 3px; line-height: 1;
}
.site-brand__name {
  display: block; font-family: var(--font-head); font-weight: 800; font-size: 16.5px;
  letter-spacing: -.01em; color: var(--brand-deep); line-height: 1; white-space: nowrap;
}
.site-brand--inverse .site-brand__mark { background: #fff; }
.site-brand--inverse .site-brand__kicker { color: rgba(255,255,255,.85); }
.site-brand--inverse .site-brand__name { color: #fff; }

.site-nav { display: flex; gap: 30px; }
.site-nav__link {
  font-weight: 600; font-size: 13.5px; color: var(--ink);
  transition: color .15s ease; white-space: nowrap;
}
.site-nav__link:hover { color: var(--brand-strong); }
.site-nav__link--active { color: var(--brand-strong); font-weight: 800; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 10px; padding: 9px; cursor: pointer; color: var(--ink);
}

/* Mobile menu overlay */
.mobile-menu { position: fixed; inset: 0; z-index: 70; background: rgba(35,35,29,.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); display: none; justify-content: flex-end; }
.mobile-menu.is-open { display: flex; }
.mobile-menu__panel { width: min(340px, 86vw); height: 100%; background: var(--surface); padding: 24px; display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow-xl); }
.mobile-menu__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mobile-menu__close { background: none; border: none; cursor: pointer; color: var(--ink); padding: 4px; }
.mobile-menu__link { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--brand-deep); padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu__cta { margin-top: 18px; }

/* Home hero */
.hero { position: relative; overflow: hidden; background: var(--surface); }
.hero__watermark {
  /* fixed offsets (not %) so the mark sits identically on every page, whatever the hero height */
  position: absolute; right: -8%; top: -44px; width: 640px; height: 640px; z-index: 0;
  background: var(--green-50);
  -webkit-mask: var(--mark-url) center / contain no-repeat;
  mask: var(--mark-url) center / contain no-repeat;
}
.hero__inner { position: relative; z-index: 1; padding-top: 96px; padding-bottom: 88px; }
.hero__eyebrow { margin-bottom: 30px; }
.hero__title { font-size: clamp(44px, 8.5vw, 108px); font-weight: 800; line-height: .98; letter-spacing: -.03em; margin: 0 0 34px; max-width: 1000px; }
.hero__title-accent { color: var(--brand); font-style: normal; }
.hero__lead { font-size: 19px; line-height: 1.6; color: var(--n-700); margin: 0; max-width: 480px; }
.hero__species { display: flex; gap: 0; flex-wrap: wrap; list-style: none; padding: 0; margin: 46px 0 0; font-weight: 700; font-size: 14px; color: var(--muted); }
.hero__species li { padding-right: 16px; margin-right: 16px; border-right: 1px solid var(--line); }
.hero__species li:last-child { border-right: none; }

/* Sub-page hero */
.page-hero { position: relative; overflow: hidden; background: var(--surface); }
/* fades the watermark out where a short hero would hard-clip it; invisible elsewhere */
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 110px;
  background: linear-gradient(to bottom, transparent, var(--surface));
}
.page-hero__watermark {
  /* same size + offsets as .hero__watermark → no jump between pages; short heroes just clip the bottom */
  position: absolute; right: -8%; top: -44px; width: 640px; height: 640px; border-radius: 50%;
  background: var(--green-50);
  -webkit-mask: var(--mark-url) center / contain no-repeat;
  mask: var(--mark-url) center / contain no-repeat;
}
.page-hero__inner { position: relative; z-index: 1; padding-top: 90px; padding-bottom: 64px; }
.page-hero__eyebrow { margin-bottom: 22px; }
.page-hero__title { font-size: clamp(38px, 6vw, 76px); font-weight: 800; line-height: .96; letter-spacing: -.03em; margin: 0 0 22px; max-width: 900px; }
.page-hero__lead { color: var(--n-700); font-size: clamp(16px, 2vw, 20px); line-height: 1.6; max-width: 620px; margin: 0; }
/* 404: split hero — text left, dog photo right (photo is shot on white, blends into the surface) */
.page-hero__split { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.page-hero__img { width: min(320px, 30vw); height: auto; }
@media (max-width: 900px) {
  .page-hero__split { grid-template-columns: 1fr; }
  .page-hero__img { width: 220px; justify-self: center; }
}

/* Home: service index rows */
.service-index__row {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 24px; align-items: baseline;
  padding: 26px 0; border-top: 1px solid var(--line);
  transition: padding .2s ease;
}
.service-index__row:last-child { border-bottom: 1px solid var(--line); }
.service-index__row:hover { padding-left: 14px; }
.service-index__row:hover .service-index__title { color: var(--brand-strong); }
.service-index__num { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--brand); }
.service-index__title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(20px, 2.4vw, 26px);
  color: var(--brand-deep); transition: color .15s ease;
}
.service-index__title .icon { color: var(--brand-strong); width: 22px; height: 22px; }
.service-index__desc { font-size: 14.5px; color: var(--muted); margin: 6px 0 0; max-width: 560px; }
.service-index__arrow { align-self: center; color: var(--muted); }

/* Leistungen: detail rows */
.service-detail {
  display: grid; grid-template-columns: 88px 1fr; gap: 22px; align-items: start;
  padding: 34px 0; border-top: 1px solid var(--line);
  transition: padding-left .2s ease;
}
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail:hover { padding-left: 12px; }
.service-detail:hover .service-detail__title { color: var(--brand-strong); }
.service-detail__num { font-family: var(--font-head); font-weight: 900; font-size: clamp(30px, 4vw, 52px); color: var(--green-200); line-height: .9; }
.service-detail__title {
  display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: clamp(21px, 2.6vw, 30px);
  color: var(--brand-deep); letter-spacing: -.01em; transition: color .15s ease;
}
.service-detail__desc { font-size: 15.5px; line-height: 1.65; color: var(--n-700); max-width: 640px; margin: 0 0 16px; }

/* Dark feature band (Diagnostik im Haus) */
.feature-band__title { color: #fff; font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; margin: 0 0 18px; line-height: 1; letter-spacing: -.02em; }
.feature-band__lead { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.6; max-width: 380px; margin: 0; }
.feature-band__eyebrow { color: var(--brand); margin-bottom: 16px; }
.feature-band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-card { border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 22px 20px; display: flex; flex-direction: column; gap: 12px; }
.feature-card .icon { color: var(--brand); width: 26px; height: 26px; }
.feature-card__title { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: #fff; letter-spacing: -.01em; }

/* Step list (So läuft Ihr Besuch ab) */
.step-list__row { display: grid; grid-template-columns: 96px 1fr; gap: 22px; align-items: baseline; padding: 26px 0; border-top: 1px solid var(--line); }
.step-list__num { font-family: var(--font-head); font-weight: 900; font-size: clamp(34px, 4.4vw, 56px); color: var(--brand); line-height: .9; }
.step-list__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(19px, 2.2vw, 24px); color: var(--brand-deep); letter-spacing: -.01em; margin-bottom: 6px; }
.step-list__desc { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 560px; }

/* Patienten */
.anchor-nav { background: var(--surface-soft); border-bottom: 1px solid var(--line); }
.anchor-nav__inner { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 20px; }
.anchor-nav__link {
  font-weight: 700; font-size: 14px; padding: 11px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); color: var(--brand-deep);
  transition: all .15s ease; white-space: nowrap;
}
.anchor-nav__link:hover { background: var(--brand); border-color: var(--brand); }

.patient-group { scroll-margin-top: 90px; }
.patient-group--alt { background: var(--surface-soft); }
.patient-group__kicker { font-family: var(--font-head); font-weight: 900; font-size: clamp(30px, 4vw, 52px); color: var(--green-200); line-height: .9; margin-bottom: 10px; }
.patient-group__title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 16px; }
.patient-group__lead { font-size: 16px; line-height: 1.65; color: var(--n-700); max-width: 460px; margin: 0 0 22px; }

.focus-list { list-style: none; padding: 0; margin: 0; }
.focus-list__item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 15px; }
.focus-list__item .icon { color: var(--brand); margin-top: 3px; }

.spectrum__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 44px); color: var(--brand-deep); letter-spacing: -.02em; margin: 0 0 30px; }
.spectrum__eyebrow { color: var(--brand-strong); margin-bottom: 12px; }
.spectrum__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 40px; list-style: none; padding: 0; margin: 0; }
.spectrum__item {
  display: flex; align-items: center; gap: 12px; padding: 14px 0;
  border-top: 1px solid rgba(47, 68, 22, .18); position: relative;
  font-weight: 600; font-size: 17px; color: var(--brand-deep);
  transition: padding-left .2s ease;
}
.spectrum__item::before { content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--brand-deep); transition: width .3s ease; }
.spectrum__item:hover::before { width: 100%; }
.spectrum__item:hover { padding-left: 10px; }
.spectrum__item .icon { color: var(--brand-deep); width: 20px; height: 20px; }

.transport-card { background: var(--brand-deep); border-radius: 22px; padding: 30px; color: #fff; }
.transport-card__row { display: flex; gap: 12px; align-items: flex-start; }
.transport-card__row > .icon { color: var(--brand); margin-top: 2px; width: 20px; height: 20px; }
.transport-card__title { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: #fff; margin-bottom: 8px; }
.transport-card__text { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.82); margin: 0; }

/* Artikel */
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.article-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card--featured { grid-column: span 2; }
/* height:auto schlägt das height-Attribut des <img> — sonst ignoriert der Browser die aspect-ratio */
/* Desktop: Portrait-Karten (gewollt); < 900px werden sie querformatig (s. Responsive) */
.article-card__media-link { display: block; }
.article-card__media { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-bottom: 1px solid var(--line); }
.article-card--featured .article-card__media { aspect-ratio: 5 / 3; }
.article-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article-card__title { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.article-card--featured .article-card__title { font-size: 26px; }
.article-card__excerpt { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.article-card--featured .article-card__excerpt { font-size: 16px; max-width: 620px; }
.article-card__more { font-weight: 700; font-size: 13px; color: var(--link); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.article-card__more .icon { width: 14px; height: 14px; }

/* Editorialer Rhythmus (nur Desktop): jede 5. Karte läuft quer über beide Spalten.
   Mit Featured-Karte (Seite 1) sind das die Kinder 6/11, ohne (Folgeseiten) 5/10 —
   beide Formeln treffen exakt die Zeilenanfänge, es entstehen keine Grid-Löcher. */
@media (min-width: 901px) {
  .article-grid:has(> .article-card--featured) > .article-card:nth-child(5n+1):not(.article-card--featured),
  .article-grid:not(:has(> .article-card--featured)) > .article-card:nth-child(5n) {
    grid-column: span 2;
  }
  .article-grid:has(> .article-card--featured) > .article-card:nth-child(5n+1):not(.article-card--featured) .article-card__media,
  .article-grid:not(:has(> .article-card--featured)) > .article-card:nth-child(5n) .article-card__media {
    aspect-ratio: 16 / 10;
  }
  .article-grid:has(> .article-card--featured) > .article-card:nth-child(5n+1):not(.article-card--featured) .article-card__excerpt,
  .article-grid:not(:has(> .article-card--featured)) > .article-card:nth-child(5n) .article-card__excerpt {
    max-width: 620px;
  }
}

/* Praxis */
.owner__photo { max-width: 420px; }
.owner__pill { display: inline-flex; align-items: center; gap: 12px; background: var(--brand-deep); border-radius: 999px; padding: 11px 22px; color: #fff; font-weight: 700; font-size: 14px; }
.owner__pill .icon { color: var(--brand); width: 17px; height: 17px; }

.value-list__row {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  padding: 26px 0; border-top: 1px solid var(--line);
  transition: padding-left .2s ease;
}
.value-list__row:last-child { border-bottom: 1px solid var(--line); }
.value-list__row:hover { padding-left: 10px; }
.value-list__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(19px, 2.2vw, 24px); color: var(--brand-deep); letter-spacing: -.01em; margin-bottom: 6px; }
.value-list__desc { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 620px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid__item--wide { grid-column: span 2; }
.gallery-note { font-weight: 500; font-size: 13px; color: var(--muted); margin: 18px 0 0; }

/* Placeholder media (replace with real images / featured images) */
.ph-media {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 4 / 3; border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, var(--green-100) 0 22px, var(--green-50) 22px 44px);
  display: flex; align-items: flex-end;
}
.ph-media--mint { background: repeating-linear-gradient(135deg, #d3ece6 0 22px, var(--mint-soft) 22px 44px); }
.ph-media--portrait { aspect-ratio: 4 / 5; }
.ph-media--wide { aspect-ratio: 16 / 8; }
.ph-media--map { aspect-ratio: 16 / 10; }
.ph-media--shadow { box-shadow: var(--shadow-lg); }
.ph-media__label {
  margin: 12px; font-family: ui-monospace, 'SFMono-Regular', 'Menlo', monospace;
  font-weight: 600; font-size: 11px; color: var(--brand-strong); background: #fff;
  padding: 6px 11px; border-radius: 8px; display: inline-flex; align-items: center; gap: 7px;
  box-shadow: var(--shadow-sm);
}
.ph-media__label .icon { width: 13px; height: 13px; }

/* Kontakt */
.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-list__item { display: inline-flex; align-items: center; gap: 13px; font-weight: 600; font-size: 16px; color: var(--ink); overflow-wrap: anywhere; }

.notice-card { background: var(--brand-deep); border-radius: 18px; padding: 24px; color: #fff; }
.notice-card--ghost { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; padding: 28px; }
.notice-card__row { display: flex; gap: 12px; align-items: flex-start; }
.notice-card__row > .icon { color: var(--brand); margin-top: 2px; width: 19px; height: 19px; flex: none; }
.notice-card__title { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 6px; }
.notice-card__text { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.8); margin: 0; }

.hours-table { margin: 0; }
.hours-table__row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(47, 68, 22, .18); }
.hours-table__day { font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 2vw, 22px); color: var(--brand-deep); }
.hours-table__time { font-family: var(--font-head); font-weight: 800; font-size: clamp(17px, 2vw, 22px); color: var(--brand-strong); font-variant-numeric: tabular-nums; }
.hours-table__row--closed .hours-table__day,
.hours-table__row--closed .hours-table__time { color: var(--muted); }
.hours-table__row--closed .hours-table__time { font-family: var(--font-body); font-style: italic; font-weight: 500; font-size: 15px; }
.hours-table--onwhite .hours-table__row { border-bottom-color: var(--line); padding: 18px 0; }
.hours-table--onwhite .hours-table__time { color: var(--ink); }

/* Termin cards (lime band) */
.termin { text-align: center; }
.termin__eyebrow { color: var(--brand-deep); opacity: .7; margin-bottom: 14px; }
.termin__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4.4vw, 52px); color: var(--brand-deep); letter-spacing: -.02em; line-height: 1.02; margin: 0 0 14px; }
.termin__lead { font-size: 17px; line-height: 1.6; color: var(--brand-deep); opacity: .8; max-width: 480px; margin: 0 auto 34px; }
.termin__note { font-weight: 700; font-size: 14px; color: var(--brand-deep); opacity: .6; margin: 22px 0 0; }
.termin-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: 0 auto; text-align: left; }
.termin-card {
  background: var(--surface); border-radius: 20px; padding: 26px 28px;
  display: flex; align-items: center; gap: 18px; box-shadow: var(--shadow-md);
  transition: transform .18s ease, box-shadow .18s ease;
}
.termin-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.termin-card--dark { background: var(--brand-deep); }
.termin-card__label { display: block; font-weight: 700; font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.termin-card__value { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(19px, 2.2vw, 26px); color: var(--brand-deep); letter-spacing: -.01em; }
.termin-card--dark .termin-card__label { color: rgba(255,255,255,.65); }
.termin-card--dark .termin-card__value { color: #fff; font-size: clamp(15px, 1.7vw, 20px); overflow-wrap: anywhere; }

/* Dark contact band (home) */
.contact-band__title { color: #fff; font-size: clamp(30px, 4vw, 46px); font-weight: 800; margin: 0 0 22px; line-height: 1.05; }
.contact-band__eyebrow { color: var(--brand); margin-bottom: 16px; }
.contact-band__list { display: flex; flex-direction: column; gap: 12px; font-weight: 500; font-size: 16px; color: rgba(255,255,255,.85); }
.contact-band__list .icon { color: var(--brand); }
.contact-band__item { display: inline-flex; gap: 11px; align-items: center; }

/* CTA band (lime, sub-pages) */
.cta-band { text-align: center; }
.cta-band__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 4vw, 44px); color: var(--brand-deep); letter-spacing: -.02em; margin: 0 0 12px; }
.cta-band__lead { color: var(--brand-deep); opacity: .8; font-size: 17px; max-width: 460px; margin: 0 auto 26px; }

/* Footer */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); }
.site-footer__inner { padding-top: 40px; padding-bottom: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.site-footer__meta { display: flex; gap: 24px; font-weight: 600; font-size: 13.5px; color: var(--muted); flex-wrap: wrap; }
.site-footer__meta a { color: inherit; }
.site-footer__meta a:hover { color: var(--brand-strong); }

/* Refinements */
figure { margin: 0; }
.split .section-head__title { margin: 0 0 14px; }
.split > div > .btn { margin-top: 8px; }
.article-card__media--ph { border-radius: 0; border: 0; border-bottom: 1px solid var(--line); aspect-ratio: 4 / 5; }
.article-card--featured .article-card__media--ph { aspect-ratio: 5 / 3; }
.chip-list--spaced { margin-top: 26px; }
.info-list + .notice-card { margin-top: 28px; }
.owner__pill { margin-top: 10px; }
.hours-table--onwhite { align-self: start; }

/* ---------- 5. Responsive ---------- */
@media (max-width: 900px) {
  .section { padding: 56px 0; }
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero__watermark, .page-hero__watermark { display: none; }
  .split--balanced, .split--narrow-wide, .split--wide-narrow { grid-template-columns: 1fr; }
  .service-index__row { grid-template-columns: 44px 1fr; }
  .service-index__desc, .service-index__arrow { display: none; }
  .service-detail { grid-template-columns: 54px 1fr; }
  .step-list__row { grid-template-columns: 64px 1fr; }
  .spectrum__grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card--featured { grid-column: span 1; }
  /* Mobil: alle Karten querformatig, Portrait frisst zu viel Höhe */
  .article-card__media, .article-card__media--ph,
  .article-card--featured .article-card__media,
  .article-card--featured .article-card__media--ph { aspect-ratio: 16 / 10; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid__item--wide { grid-column: span 1; }
  .termin-cards { grid-template-columns: 1fr; }
  .feature-band__grid { grid-template-columns: 1fr; }
}

/* Hero ohne Lead (Impressum, Datenschutz, …): kompakter Abschluss */
.page-hero--compact .page-hero__inner { padding-bottom: 28px; }
.page-hero--compact .page-hero__title { margin-bottom: 0; }

/* ============ Hinweis-Leiste (CPT „Informationen") ============ */
.announce { background: var(--mint-soft); border-bottom: 1px solid var(--line); }
.announce__inner { display: flex; flex-direction: column; }
.announce__row { padding: 12px 0; }
.announce__row + .announce__row { border-top: 1px solid rgba(15, 90, 80, .12); }
.announce__main { display: flex; align-items: center; gap: 12px; }
.announce__icon { color: var(--mint); flex-shrink: 0; width: 18px; height: 18px; }
.announce__text { margin: 0; font: 400 14px/1.5 var(--font-body); color: var(--mint-ink); min-width: 0; }
.announce__title { font-family: var(--font-head); font-weight: 700; margin-right: 8px; }
.announce__more {
  background: none; border: 0; cursor: pointer; color: var(--mint-ink);
  font: 700 13px var(--font-body); display: inline-flex; align-items: center; gap: 4px;
  padding: 4px; flex-shrink: 0;
}
.announce__chevron { transition: transform .15s ease; }
.announce__row.is-open .announce__chevron { transform: rotate(180deg); }
.announce__dismiss {
  margin-left: auto; background: none; border: 0; cursor: pointer;
  color: var(--mint-ink); opacity: .55; padding: 4px; display: inline-flex;
  align-items: center; flex-shrink: 0;
}
.announce__dismiss:hover { opacity: 1; }
.announce__detail {
  font: 400 14px/1.65 var(--font-body); color: var(--mint-ink);
  margin: 10px 0 4px; padding-left: 29px;
}
.announce__detail :last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .announce__detail { padding-left: 0; }
}

/* ============ Long-form content (Artikel, Impressum, Datenschutz) ============ */
.ph-media + .entry-content { margin-top: clamp(24px, 4vw, 40px); }
.entry-content { max-width: 760px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 {
  font-size: clamp(22px, 2.6vw, 27px); font-weight: 800; letter-spacing: -.02em;
  margin: 46px 0 14px;
}
.entry-content h3 { font-size: 19px; font-weight: 800; margin: 30px 0 10px; }
.entry-content h4 { font-size: 16.5px; font-weight: 800; margin: 24px 0 8px; }
.entry-content p { margin: 0 0 16px; line-height: 1.7; }
.entry-content ul, .entry-content ol { margin: 0 0 16px; padding-left: 24px; }
.entry-content li { margin-bottom: 7px; line-height: 1.65; }
.entry-content a { color: var(--brand); font-weight: 800; text-decoration: none; }
.entry-content a:hover { color: var(--brand-strong); text-decoration: underline; }
.entry-content img { max-width: 100%; height: auto; border-radius: 14px; }
.entry-content blockquote {
  margin: 0 0 16px; padding: 4px 0 4px 18px;
  border-left: 3px solid var(--brand); color: var(--n-700);
}

/* Umflossene Bilder + Bildunterschriften (klassische [caption]-Shortcodes) */
.entry-content .wp-caption { max-width: 100%; margin: 6px 0 20px; }
.entry-content .wp-caption img { display: block; }
.entry-content .alignright { float: right; margin: 6px 0 18px 26px; }
.entry-content .alignleft  { float: left;  margin: 6px 26px 18px 0; }
.entry-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.entry-content .alignnone { display: block; margin: 22px 0; }
.entry-content .wp-caption-text {
  margin-top: 8px; font-size: 13.5px; line-height: 1.5;
  color: var(--n-700); font-style: italic; text-align: center;
}
.entry-content a:has(> img) { cursor: zoom-in; display: inline-block; }
.entry-content::after { content: ""; display: block; clear: both; }

@media (max-width: 600px) {
  .entry-content .alignleft,
  .entry-content .alignright {
    float: none; margin-left: auto; margin-right: auto;
  }
}

/* ============ Lightbox (natives <dialog>, z. B. Anfahrtskarte) ============ */
[data-lightbox] { display: block; cursor: zoom-in; }
.lightbox {
  border: 0; padding: 0; background: transparent;
  max-width: min(92vw, 1100px); max-height: 88vh;
}
.lightbox img {
  display: block; max-width: 100%; max-height: 88vh;
  border-radius: 18px; box-shadow: var(--shadow-xl);
}
.lightbox::backdrop { background: rgba(35, 35, 29, .78); }
.lightbox__close {
  position: absolute; top: 10px; right: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px; border: 0;
  background: var(--surface); color: var(--brand-deep);
  cursor: pointer; box-shadow: var(--shadow-md);
}
.lightbox__close:hover { background: var(--green-50); }
.lightbox__figure { margin: 0; }
.lightbox__caption {
  margin-top: 12px; text-align: center;
  color: var(--surface); font-size: .95rem; line-height: 1.4;
}
.lightbox__caption[hidden] { display: none; }
.gallery-grid a { cursor: zoom-in; }

/* ============ Pagination (Blog / Archiv · the_posts_pagination) ============ */
.pagination { margin-top: 44px; }
.pagination .nav-links {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px;
}
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-width: 46px; height: 46px; padding: 0 15px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px; line-height: 1;
  color: var(--brand-deep); background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
a.page-numbers:hover { background: var(--green-50); border-color: var(--brand-strong); color: var(--brand-strong); }
.pagination .page-numbers.current { background: var(--brand); border-color: var(--brand); color: var(--brand-deep); }
.pagination .page-numbers.dots {
  min-width: 0; padding: 0 4px; background: transparent; border-color: transparent; color: var(--muted);
}
.pagination .page-numbers.prev, .pagination .page-numbers.next { padding: 0 22px; }
.pagination .page-numbers .icon { width: 16px; height: 16px; }
.pagination .page-numbers.prev .icon { transform: rotate(180deg); }

/* Nur für Screenreader (WP gibt eine Navigations-Überschrift aus) */
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
