/* ============================================================
   Finkeldei Psychotherapie — Website
   Depends on colors_and_type.css (tokens).
   Variant: sans-serif only · pure-white surfaces · no icons ·
   photo-backed hero with scroll-to-white + centered logo.
   ============================================================ */

:root {
  /* sans-serif everywhere — override the editorial serif */
  --font-display: var(--font-sans);
  /* pure white surfaces (replace warm cream) */
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-sunken: #F2F3F3;   /* cool light grey, not cream */
  --line: #E2E3E1;
  --nav-h: 70px;
  --hero-cream: #F4F3EF;
  /* brand teal — new blue-green pair */
  --primary: #005054;
  --primary-deep: #003E41;
  --primary-darker: #00302F;
  --secondary: #578B8E;
  --primary-soft: #E7EFEF;
  --primary-tint: #C7DCDC;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background: var(--bg);
  font-family: var(--font-sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }

/* ---------- Layout primitives ---------- */
.kit-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.kit-container.is-narrow { max-width: var(--maxw-text); }
.kit-section { padding-block: clamp(64px, 9vw, 128px); }
.kit-section--sunken { background: var(--surface-sunken); }
.kit-section--cream { background: #F7F4EF; }

/* Section with photo background + cream overlay & top/bottom vignettes */
.kit-section--photo { position: relative; isolation: isolate; overflow: hidden; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; }
.kit-section--photo > .kit-container { position: relative; z-index: 1; }
/* On inner (non-snap) pages the photo band hugs its content instead of filling the viewport — no empty bands between sections */
html:not(.snap-home) .kit-section--photo { min-height: 0; display: block; }
.kit-section--photo-compact { min-height: 0; display: block; }
.kit-section__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  pointer-events: none;
}
/* (cream wash removed — photo shows through; vignettes below keep edges soft) */
/* top & bottom cream vignettes for a seamless transition into neighbouring sections */
.kit-section__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    #F7F4EF 0%,
    rgba(247, 244, 239, 0) 22%,
    rgba(247, 244, 239, 0) 58%,
    #F7F4EF 92%,
    #F7F4EF 100%
  );
}

/* ---------- Type (all sans) ---------- */
.kit-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); margin-bottom: 18px; }
.kit-display { font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-display); line-height: 1.05; letter-spacing: -.025em; margin: 0 0 24px; }
.kit-h1 { font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-h1); line-height: 1.08; letter-spacing: -.022em; margin: 0 0 20px; }
.kit-h2 { font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-h2); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 28px; }
.kit-h3 { font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-h3); line-height: 1.18; letter-spacing: -.012em; margin: 28px 0 12px; }
.kit-lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-2); margin: 0 0 32px; max-width: 48ch; }
.kit-body { font-size: var(--fs-body); line-height: 1.65; color: var(--ink-2); margin: 0 0 16px; max-width: 64ch; }

/* ---------- Buttons (no icons) ---------- */
.kit-btn {
  font: inherit; font-size: 15px; font-weight: 500; line-height: 1;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; border-radius: var(--r-md); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: none;
}
.kit-btn--primary { background: var(--primary); color: var(--on-dark); }
.kit-btn--primary:hover { background: var(--primary-deep); }
.kit-btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.kit-btn--ghost:hover { background: var(--primary); border-color: var(--primary); color: var(--on-dark); }
.kit-btn--onDark { background: var(--on-dark); color: var(--ink); }
.kit-btn--onDark:hover { background: #fff; }
.kit-btn--light { background: #fff; color: var(--primary-darker); }
.kit-btn--light:hover { background: var(--surface-sunken); }
.kit-btn--sm { font-size: 13px; font-weight: 500; padding: 11px 20px; }
.kit-btn--lightghost { background: transparent; border-color: rgba(244,243,239,.6); color: var(--on-dark); }
.kit-btn--lightghost:hover { background: rgba(244,243,239,.12); }
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }

/* ---------- Header — fixed, transparent over hero, solid primary on scroll ---------- */
.kit-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: var(--nav-h);
  padding: 0 var(--gutter);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  --gutter: clamp(20px, 5vw, 64px);
}
.kit-header.is-solid {
  background-color: var(--primary);
  border-bottom-color: rgba(244,243,239,.16);
}
.kit-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; opacity: 1; transition: opacity .15s ease; }
.kit-logo img { width: auto; height: 40px; display: block; }
.kit-logo.is-hidden { opacity: 0; pointer-events: none; }

.kit-nav { display: flex; gap: 30px; align-items: center; }
.kit-nav a { font-size: 15px; color: var(--ink); opacity: .72; text-decoration: none; padding-bottom: 3px; border-bottom: 1px solid transparent; transition: opacity .15s ease; }
.kit-nav a:hover { opacity: 1; }
.kit-nav a.is-active { opacity: 1; border-bottom-color: var(--ink); }
.is-solid .kit-nav a { color: var(--on-dark); }
.is-solid .kit-nav a.is-active { border-bottom-color: var(--on-dark); }

.kit-header__cta { flex: none; }
.kit-burger { display: none; background: transparent; border: 1px solid rgba(30,35,38,.3); color: var(--ink); cursor: pointer; padding: 8px 14px; font: inherit; font-size: 13px; letter-spacing: .04em; border-radius: var(--r-md); }
.is-solid .kit-burger { border-color: rgba(244,243,239,.5); color: var(--on-dark); }

/* mobile nav dropdown */
.kit-mnav {
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: var(--primary); border-bottom: 1px solid rgba(244,243,239,.16);
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px var(--gutter) 22px;
}
.kit-mnav a { font-size: 18px; color: var(--on-dark); text-decoration: none; padding: 13px 0; border-bottom: 1px solid rgba(244,243,239,.12); }
.kit-mnav a.is-active { font-weight: 600; }
.kit-mnav .kit-btn { margin-top: 14px; justify-content: center; }

/* ---------- HERO — photo bg, centered logo, scroll-to-white veil ---------- */
/* ---------- HERO — cream bg, text left, large landscape photo right (vignetted, overlapping) ---------- */
.kit-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--hero-cream);
  height: 100vh; height: 100dvh; min-height: 600px;
  display: flex; flex-direction: column;
}
.kit-hero__main {
  position: relative; z-index: 1;
  flex: 1 1 auto; min-height: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: calc(var(--nav-h) + clamp(28px, 4vw, 56px)) clamp(28px, 4vw, 48px);
}
.kit-hero__inner {
  position: static;
  width: 100%;
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  display: flex; align-items: center;
}
/* ---- Hero bottom banner — full-width keypoints in cards ---- */
.kit-hero__banner {
  position: relative; z-index: 2; flex: 0 0 auto;
  background: transparent;
  padding: clamp(10px, 1.4vw, 16px) var(--gutter) clamp(20px, 2.6vw, 34px);
}
.kit-hero__banner-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.kit-hero__kp {
  background: var(--hero-cream);
  border: 0;
  border-radius: var(--r-md);
  padding: 13px 17px 14px;
  display: flex; flex-direction: column; gap: 3px;
  box-shadow: 0 8px 26px rgba(0, 80, 84, .18), 0 2px 8px rgba(0, 80, 84, .10);
}
.kit-hero__kp-t { font-family: var(--font-sans); font-size: 14.5px; font-weight: 600; line-height: 1.15; color: var(--ink); margin: 0 0 1px; }
.kit-hero__kp-d { font-size: 12px; line-height: 1.4; color: var(--ink-2); margin: 0; }
.kit-hero__copy { position: relative; z-index: 2; width: min(100%, 560px); text-align: left; }
.kit-hero__logo { width: auto; height: clamp(76px, 8vw, 108px); margin: 0 0 28px; display: block; border-radius: var(--r-md); }
.kit-hero__title { font-family: var(--font-sans); font-weight: 500; font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.12; letter-spacing: -.02em; color: var(--ink); margin: 0 0 24px; }
.kit-hero__lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-2); margin: 0; max-width: 40ch; }
.kit-hero__signoff { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 26px 0 0; }
.kit-hero__cta { margin-top: 28px; }
.kit-hero__signoff-name { color: var(--ink); font-weight: 600; }
.kit-hero__media {
  position: absolute; top: 0; right: 0; bottom: 0; transform: none;
  width: 66%; margin: 0; z-index: 0; pointer-events: none;
}
.kit-hero__media img {
  width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: 70% 50%;
  display: block;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 16%, #000 38%);
          mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 16%, #000 38%);
  -webkit-mask-composite: source-over;
          mask-composite: add;
}

/* ---------- Welcome — personal letter (warm beige, reduced, no chrome) ---------- */
.kit-welcome { background: var(--hero-cream); min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; padding-block: clamp(72px, 11vw, 152px); }
.kit-welcome__inner { width: 70%; max-width: none; margin: 0 auto; padding-inline: 0; text-align: left; }
.kit-welcome__eyebrow { font-size: 13px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin: 0 0 28px; }
.kit-welcome__quote {
  margin: 0 0 44px; max-width: 650px;
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(1.75rem, 3.6vw, 2.85rem); line-height: 1.28; letter-spacing: -.015em;
  color: var(--ink); quotes: none;
}
.kit-welcome__text { max-width: none; }
.kit-welcome__text p { font-size: clamp(1.125rem, 1.5vw, 1.35rem); line-height: 1.7; color: var(--ink-2); margin: 0 0 22px; }
.kit-welcome__text p:last-child { margin-bottom: 0; }
.kit-welcome__sig { font-size: clamp(1.125rem, 1.5vw, 1.35rem); line-height: 1.6; color: var(--ink-2); margin: 48px 0 0; }
.kit-welcome__name { font-family: 'Sacramento', cursive; font-weight: 400; font-size: clamp(2.2rem, 3.4vw, 3rem); line-height: 1; color: var(--primary); display: inline-block; margin: 8px 0 2px; }

/* ---------- Keypoints band (numbered, no icons) ---------- */
.kit-keypoints { background: var(--surface); border-bottom: 1px solid var(--line); }
.kit-keypoints__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.kit-keypoint {
  padding: clamp(30px, 3vw, 46px) clamp(24px, 2.4vw, 38px);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.kit-keypoint:last-child { border-right: 0; }
.kit-keypoint__no { font-size: 13px; font-weight: 600; letter-spacing: .14em; color: var(--primary); }
.kit-keypoint__t { font-size: 19px; font-weight: 600; line-height: 1.25; margin: 0; color: var(--ink); letter-spacing: -.01em; }
.kit-keypoint__d { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; }

/* ---------- Group-therapy focus band — photo bg + overlay ---------- */
.kit-focus { position: relative; isolation: isolate; color: var(--on-dark); padding-block: clamp(72px, 9vw, 130px); overflow: hidden; }
.kit-focus__bg { position: absolute; inset: 0; z-index: -2; background: url('../assets/praxis-gruppenraum.jpg') center/cover no-repeat; }

/* ---------- Einzeltherapie band — cream, centered vignette image ---------- */
.kit-solo { background: #F7F4EF; padding-block: clamp(64px, 9vw, 128px); }
.kit-solo__head { text-align: center; max-width: 760px; margin: 0 auto; }
.kit-solo__media { width: 50%; margin: clamp(20px, 3vw, 36px) auto clamp(28px, 4vw, 52px); }
.kit-solo__media img {
  width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover;
  -webkit-mask-image: radial-gradient(ellipse 62% 62% at 50% 50%, #000 24%, rgba(0,0,0,0) 78%);
          mask-image: radial-gradient(ellipse 62% 62% at 50% 50%, #000 24%, rgba(0,0,0,0) 78%);
}
.kit-solo .kit-grouplist { max-width: 920px; margin-inline: auto; }
.kit-solo__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: var(--sp-7); flex-wrap: wrap; max-width: 920px; margin-inline: auto; }
.kit-solo__meta { font-size: 13px; color: var(--ink-2); max-width: 56ch; line-height: 1.5; }
/* Split variant: full-bleed image filling its entire half; text left, image right */
.kit-solo--split { padding: 0; background: #F7F4EF; }
.kit-solo__split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: clamp(460px, 64vh, 680px); }
.kit-solo__textwrap { display: flex; align-items: center; padding: clamp(48px, 6vw, 96px) clamp(32px, 4vw, 72px) clamp(48px, 6vw, 96px) max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter))); }
.kit-solo--split .kit-solo__text { width: 100%; max-width: 540px; display: flex; flex-direction: column; text-align: left; }
.kit-solo--split .kit-solo__foot { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 22px; margin-top: var(--sp-6); max-width: none; }
.kit-solo--split .kit-solo__foot .kit-btn { white-space: nowrap; align-self: flex-start; }
.kit-solo--split .kit-solo__media { width: 100%; height: 100%; min-height: 0; margin: 0; border-radius: 0; overflow: hidden; }
.kit-solo--split .kit-solo__media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; border-radius: 0;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%, #000 34%);
          mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%, #000 34%); }
@media (max-width: 860px) {
  .kit-solo__split { grid-template-columns: 1fr; min-height: 0; }
  .kit-solo__textwrap { padding: clamp(32px, 7vw, 56px) var(--gutter); }
  .kit-solo--split .kit-solo__media { order: -1; }
  .kit-solo--split .kit-solo__media img { aspect-ratio: 4 / 3; height: auto;
    -webkit-mask-image: linear-gradient(to bottom, #000 76%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to bottom, #000 76%, rgba(0,0,0,0) 100%); }
}

/* ---------- Gruppentherapie band — primary (navbar colour), centered vignette image ---------- */
.kit-groupband { background: #F7F4EF; padding-block: clamp(64px, 9vw, 128px); }
.kit-groupband__head { text-align: center; max-width: 760px; margin: 0 auto; }
.kit-groupband__intro { margin: 0 auto; max-width: 54ch; color: var(--on-dark-2); }
.kit-groupband__media { width: 50%; margin: clamp(20px, 3vw, 36px) auto clamp(28px, 4vw, 52px); }
.kit-groupband__media img {
  width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover;
  -webkit-mask-image: radial-gradient(ellipse 62% 62% at 50% 50%, #000 24%, rgba(0,0,0,0) 78%);
          mask-image: radial-gradient(ellipse 62% 62% at 50% 50%, #000 24%, rgba(0,0,0,0) 78%);
}
.kit-groupband .kit-grouplist { max-width: 920px; margin-inline: auto; }
.kit-groupband__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: var(--sp-7); flex-wrap: wrap; max-width: 920px; margin-inline: auto; }
.kit-groupband__meta { font-size: 13px; color: var(--on-dark-2); max-width: 56ch; line-height: 1.5; }
@media (max-width: 860px) { .kit-groupband:not(.kit-groupband--split) .kit-groupband__media { width: 74%; } }
@media (max-width: 540px) { .kit-groupband:not(.kit-groupband--split) .kit-groupband__media { width: 90%; } }

/* Split variant: full-bleed image filling its entire half; image left, text right */
.kit-groupband--split { padding: 0 0 clamp(56px, 7vw, 104px); }
/* Cream divider that visually separates the two split bands; collapses when stacked */
.kit-bandsep { background: #F7F4EF; height: clamp(48px, 6vw, 96px); }
.kit-groupband__split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: clamp(460px, 64vh, 680px); }
.kit-groupband--split .kit-groupband__media { width: 100%; height: 100%; min-height: 0; margin: 0; border-radius: 0; overflow: hidden; }
.kit-groupband--split .kit-groupband__media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; border-radius: 0;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%, #000 34%);
          mask-image: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%, #000 34%); }
.kit-groupband__textwrap { display: flex; align-items: center; padding: clamp(48px, 6vw, 96px) clamp(28px, 7vw, 132px) clamp(48px, 6vw, 96px) clamp(32px, 4vw, 72px); }
.kit-groupband--split .kit-groupband__text { width: 100%; max-width: 540px; text-align: left; }
.kit-groupband--split .kit-groupband__intro { margin: 0; max-width: 48ch; color: var(--ink-2); }
.kit-groupband--split .kit-groupband__foot { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 22px; margin-top: var(--sp-6); max-width: none; }
.kit-groupband--split .kit-groupband__meta { color: var(--ink-2); }
.kit-groupband--split .kit-groupband__foot .kit-btn { white-space: nowrap; align-self: flex-start; }

/* Full-width expandable group list (accordion) — cream band */
.kit-groupacc__heading { font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--primary); margin: clamp(56px, 7vw, 104px) 0 0; }
.kit-groupacc__heading + .kit-groupacc { margin-top: clamp(20px, 2.4vw, 32px); }
.kit-groupacc { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.kit-groupacc__item { border-bottom: 1px solid var(--line); }
.kit-groupacc__q { width: 100%; display: flex; align-items: center; gap: 18px; padding: 22px 4px; background: none; border: 0; cursor: pointer; text-align: left; color: var(--ink); font: inherit; transition: color .15s ease; }
.kit-groupacc__q:hover { color: var(--primary); }
.kit-groupacc__no { font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--primary); flex: none; width: 2.4ch; }
.kit-groupacc__title { font-size: 19px; font-weight: 500; letter-spacing: -.01em; flex: 1; }
.kit-groupacc__sign { font-size: 24px; font-weight: 400; line-height: 1; color: var(--ink-3); flex: none; }
.kit-groupacc__a { margin: 0; padding: 0 4px 26px calc(2.4ch + 18px); max-width: 76ch; font-size: 16px; line-height: 1.65; color: var(--ink-2); }

@media (max-width: 860px) {
  .kit-bandsep { display: none; }
  .kit-groupband__split { grid-template-columns: 1fr; min-height: 0; }
  .kit-groupband__textwrap { padding: clamp(32px, 7vw, 56px) var(--gutter); }
  .kit-groupband--split .kit-groupband__media img { aspect-ratio: 4 / 3; height: auto;
    -webkit-mask-image: linear-gradient(to bottom, #000 76%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to bottom, #000 76%, rgba(0,0,0,0) 100%); }
  .kit-groupacc { margin: clamp(40px, 8vw, 64px) 0; }
  .kit-groupacc__a { padding-left: 4px; }
}
.kit-focus__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(28,40,44,.86), rgba(28,40,44,.92)); }
.kit-focus__head { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: end; margin-bottom: var(--sp-8); }
.kit-focus__intro { font-size: var(--fs-lead); line-height: 1.55; color: var(--on-dark-2); margin: 0; }
.kit-grouplist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid rgba(244,243,239,.2); }
.kit-grouplist li { display: flex; align-items: baseline; gap: 16px; padding: 20px 4px; font-size: 19px; font-weight: 500; color: var(--on-dark); border-bottom: 1px solid rgba(244,243,239,.2); letter-spacing: -.01em; }
.kit-grouplist__no { font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--secondary); flex: none; }
.kit-focus__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: var(--sp-7); flex-wrap: wrap; }
.kit-focus__meta { font-size: 13px; color: var(--on-dark-2); max-width: 56ch; line-height: 1.5; }

/* light variant of grouplist on white sections */
.kit-grouplist--light { border-top-color: var(--line); }
.kit-grouplist--light li { color: var(--ink); border-bottom-color: var(--line); }
.kit-grouplist--light .kit-grouplist__no { color: var(--primary); }

/* ---------- Service cards (no icons) ---------- */
.kit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: var(--sp-6); }
.kit-card { background: rgba(247, 244, 239, 0.62); border: 1px solid transparent; border-radius: var(--r-md); padding: 34px 30px 30px; display: flex; flex-direction: column; gap: 12px; min-height: 270px; box-shadow: 0 8px 26px rgba(0, 80, 84, .18), 0 2px 8px rgba(0, 80, 84, .10); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.kit-card:hover { transform: scale(1.03); border-color: rgba(0, 80, 84, .45); box-shadow: 0 14px 34px rgba(0, 80, 84, .24), 0 3px 10px rgba(0, 80, 84, .12); }
.kit-card.is-emphasis { background: rgba(247, 244, 239, 0.62); }
.kit-card.is-muted { background: rgba(247, 244, 239, 0.62); }
/* Plain variant (no photo bg) — tighter padding, solid cards on cream */
.kit-services--plain { background: #F7F4EF; padding-block: clamp(40px, 5vw, 80px) clamp(72px, 9vw, 140px); }
.kit-services--plain .kit-card,
.kit-services--plain .kit-card.is-emphasis,
.kit-services--plain .kit-card.is-muted { background: #FFFFFF; border-color: var(--line); }
.kit-services--plain .kit-card.is-emphasis { border-color: rgba(0, 80, 84, .35); }
.kit-card__tag { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.kit-card__tag.is-primary { color: var(--primary); }
.kit-card__title { font-size: 25px; font-weight: 600; margin: 6px 0 0; line-height: 1.1; letter-spacing: -.015em; }
.kit-card__body { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.kit-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--primary); background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit; }
.kit-card__link:hover { color: var(--primary-deep); }
.kit-card__link::after { content: ''; }
.kit-card.is-clickable { cursor: pointer; }
.kit-card.is-clickable:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* ---------- Process steps ---------- */
.kit-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: var(--sp-6); }
.kit-step { padding: 32px 28px 32px 26px; position: relative; border-left: 1px solid var(--primary); }
.kit-step:last-child { border-right: 0; }
.kit-step__n { font-size: 30px; font-weight: 600; color: var(--primary); display: block; margin-bottom: 12px; letter-spacing: -.01em; }
.kit-step__t { font-size: 21px; font-weight: 600; margin: 0 0 8px; letter-spacing: -.01em; }
.kit-step__d { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* ---------- Practice images (real photos) ---------- */
.kit-practice { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.kit-practice figure { margin: 0; }
.kit-practice img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r-md); display: block; }
.kit-practice figcaption { font-size: 13px; color: var(--ink-3); margin-top: 12px; letter-spacing: .02em; }

/* ---------- Practice gallery (full-bleed mosaic + centred PRAXIS plate) ---------- */
.kit-gallery {
  position: relative; width: 100%;
  height: 100vh; height: 100dvh; min-height: 600px;
  overflow: hidden; background: var(--hero-cream);
}
.kit-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100%; height: 100%; gap: 0;
}
.kit-gallery__item { margin: 0; overflow: hidden; position: relative; }
.kit-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kit-gallery__item--group  { grid-column: 1 / 7;  grid-row: 1 / 3; }
.kit-gallery__item--a      { grid-column: 7 / 10;  grid-row: 1 / 2; }
.kit-gallery__item--detail { grid-column: 10 / 13; grid-row: 1 / 2; }
.kit-gallery__item--b      { grid-column: 7 / 13; grid-row: 2 / 3; }
.kit-gallery__item--group img  { object-position: center; }
.kit-gallery__item--a img      { object-position: center 60%; }
.kit-gallery__item--detail img { object-position: 40% center; }
.kit-gallery__item--b img      { object-position: center 62%; }
.kit-gallery__plate {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 3; background: var(--hero-cream); border-radius: var(--r-md);
  padding: clamp(13px, 1.7vw, 25px) clamp(23px, 3.5vw, 55px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 56px rgba(0, 80, 84, .30), 0 6px 18px rgba(0, 80, 84, .18);
}
.kit-gallery__plate span {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.2rem, 3vw, 2.5rem); line-height: 1;
  letter-spacing: .16em; text-transform: uppercase; color: var(--primary);
}

/* ---------- About ---------- */
.kit-about__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--sp-8); align-items: center; }
/* Split variant: portrait image left of text on cream, no vignette */
.kit-section--about-split { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; }
.kit-section--about-split > .kit-container { max-width: 1440px; }
.kit-about__grid--split { grid-template-columns: 1fr 1.15fr; align-items: stretch; gap: clamp(40px, 5vw, 88px); }
.kit-about__media { display: flex; flex-direction: column; gap: var(--sp-5); }
.kit-about__text { display: flex; flex-direction: column; }
.kit-about__grid--split .kit-about__media { min-height: clamp(420px, 58vh, 600px); }
.kit-about__grid--split .kit-about__img { position: relative; flex: 1 1 auto; height: auto; min-height: 0; border-radius: var(--r-md); box-shadow: 0 8px 26px rgba(0, 80, 84, .18), 0 2px 8px rgba(0, 80, 84, .10); overflow: hidden; }
.kit-about__grid--split .kit-about__img > img {
  width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: 38% center;
  border-radius: var(--r-md); display: block;
}
/* DPtV membership logo overlaid in bottom-left corner of the photo */
.kit-about__dptv-badge {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  padding: 9px 13px; border-radius: var(--r-sm, 10px);
  box-shadow: 0 2px 10px rgba(0, 80, 84, .14);
}
.kit-about__dptv { height: 30px; width: auto; max-width: 100%; flex: 0 0 auto; object-fit: contain; display: block; }
.kit-about__grid.is-top { align-items: start; }
.kit-about__img { margin: 0; }
.kit-about__img > img { width: 100%; height: 540px; object-fit: cover; object-position: center 30%; border-radius: var(--r-md); display: block; }
.kit-creds { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.kit-creds li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.5; color: var(--ink); }
.kit-creds li::before { content: ''; position: absolute; left: 3px; top: 3px; width: 7px; height: 12px; border: solid var(--primary); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.kit-members { margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid var(--line); font-size: 14px; line-height: 1.6; color: var(--ink-2); }
.kit-members__logos { margin-top: 22px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.kit-members__logos img { height: 42px; width: auto; display: block; }
.kit-about__block { margin-top: var(--sp-7); }
.kit-about__label { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--primary); margin: 0 0 18px; }
.kit-about__subh { font-size: 20px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); margin: 0 0 16px; }
.kit-about__block .kit-body:last-child { margin-bottom: 0; }

/* Clickable "Über mich" card */
.kit-about__card {
  margin-top: auto;
  background: var(--hero-cream);
  border-radius: var(--r-md);
  padding: 26px 30px 28px;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 80, 84, .18), 0 2px 8px rgba(0, 80, 84, .10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.kit-about__card:hover { transform: scale(1.03); box-shadow: 0 14px 34px rgba(0, 80, 84, .24), 0 3px 10px rgba(0, 80, 84, .12); }
.kit-about__card:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.kit-about__card .kit-about__label { margin-bottom: 18px; }

/* ---------- Über mich (Vita) — viewport-fitting editorial layout ---------- */
.kit-vita-section {
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--nav-h) + clamp(32px, 6vh, 92px));
  padding-bottom: clamp(32px, 6vh, 92px);
}
.kit-vita-section .kit-about__grid.is-top { align-items: start; gap: clamp(32px, 5vw, 80px); }
.kit-vita-section .kit-about__img img { height: clamp(340px, 48vh, 520px); object-position: center 26%; }
.kit-vita-section .kit-about__card { margin-top: var(--sp-6); }

/* editorial text column: eyebrow + heading + body, divided by hairlines */
.kit-vita { display: flex; flex-direction: column; }
.kit-vita__block { margin: 0; padding: clamp(22px, 3vh, 36px) 0; border-top: 1px solid var(--line); }
.kit-vita__block:first-child { padding-top: 0; border-top: 0; }
.kit-vita__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); margin: 0 0 14px; }
.kit-vita__h { font-family: var(--font-sans); font-size: clamp(1.4rem, 2vw, 1.85rem); font-weight: 600; line-height: 1.16; letter-spacing: -.015em; color: var(--ink); margin: 0 0 16px; }
.kit-vita .kit-body { max-width: 60ch; font-size: 16px; line-height: 1.58; margin-bottom: 14px; }
.kit-vita .kit-body:last-child { margin-bottom: 0; }
.kit-vita .kit-members { margin-top: 0; padding-top: clamp(22px, 3vh, 36px); }

/* static (non-clickable) credentials card */
.kit-about__card--plain { cursor: default; }
.kit-about__card--plain:hover { transform: none; box-shadow: 0 8px 26px rgba(0, 80, 84, .18), 0 2px 8px rgba(0, 80, 84, .10); }

@media (max-width: 860px) {
  .kit-vita-section { min-height: 0; display: block; padding-top: calc(var(--nav-h) + 32px); }
}

/* ---------- FAQ (typographic +/-) ---------- */
.kit-faq-groups { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 72px); }
.kit-faq-group__title { font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--primary); margin: 0 0 var(--sp-4); }
.kit-faq { border-top: 1px solid var(--line); }
.kit-faq__item { border-bottom: 1px solid var(--line); }
.kit-faq__q { width: 100%; background: transparent; border: 0; cursor: pointer; font: inherit; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; color: var(--ink); }
.kit-faq__q span:first-child { font-size: 19px; font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
.kit-faq__sign { font-size: 24px; font-weight: 400; color: var(--primary); line-height: 1; flex: none; width: 22px; text-align: center; }
.kit-faq__a { margin: 0 4px; padding: 0 60px 26px 4px; font-size: 16px; line-height: 1.65; color: var(--ink-2); max-width: 70ch; }

/* ---------- Contact ---------- */
.kit-contact__grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: var(--sp-8); align-items: stretch; }
.kit-contact__grid.is-single { grid-template-columns: 1fr; }
.kit-contact__left { display: flex; flex-direction: column; padding-top: 36px; padding-bottom: 36px; }
.kit-contact__left .kit-contactinfo { margin-top: 26px; }
.kit-contact__formcol { display: flex; }
.kit-contact__formcol .kit-form { width: 100%; }
.kit-contact { background: #F7F4EF; }
/* viewport-height contact when the form is present */
.kit-contact--full { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; background: #F7F4EF; }
.kit-contact--full > .kit-container { width: 100%; }
/* map + accessibility notice side by side, map halved */
.kit-contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; margin: 4px 0 24px; }
.kit-contact__row .kit-map { height: auto; min-height: 200px; margin-bottom: 0; }
.kit-contact__row .kit-access { margin-bottom: 0; align-items: flex-start; }
.kit-contactinfo { list-style: none; margin: 36px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.kit-contactinfo li { padding: 22px 4px; border-bottom: 1px solid var(--line); }
.kit-contactinfo a { color: inherit; text-decoration: none; }
.kit-contactinfo a:hover { color: var(--primary); }
.kit-contactinfo__l { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
.kit-contactinfo__v { display: block; font-size: 16px; color: var(--ink); line-height: 1.45; }
.kit-map { display: block; position: relative; height: 220px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface-sunken); overflow: hidden; margin-bottom: 20px; text-decoration: none; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease; }
.kit-map:hover { border-color: var(--primary); box-shadow: 0 8px 22px rgba(0,80,84,.14); }
.kit-map:hover .kit-map__cta { background: var(--primary-deep, #003c3f); }
.kit-map__cta { position: absolute; right: 14px; top: 14px; display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; letter-spacing: .01em; color: var(--on-dark); background: var(--primary); padding: 8px 13px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,80,84,.22); transition: background .15s ease; }
.kit-map__cta svg { display: block; }
/* Accessibility notice — prominent */
.kit-access { display: flex; align-items: flex-start; gap: 14px; background: var(--primary-soft); border: 1.5px solid var(--primary); border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 28px; box-shadow: 0 6px 18px rgba(0,80,84,.14); }
.kit-access svg { flex: 0 0 auto; color: var(--primary); margin-top: 1px; }
.kit-access p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.kit-access strong { color: var(--ink); font-weight: 600; }
.kit-map__svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.kit-map__marker { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; gap: 4px; pointer-events: none; }
.kit-map__name { font-size: 12px; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; white-space: nowrap; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.kit-map__pinicon { display: block; filter: drop-shadow(0 2px 3px rgba(0,0,0,.3)); }
.kit-getthere { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: auto; }
.kit-getthere > div { font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.kit-getthere__h { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; font-weight: 600; }

/* ---------- Form ---------- */
.kit-form { background: #FBFAF6; border: 1px solid var(--line); border-radius: var(--r-md); padding: 36px; display: flex; flex-direction: column; gap: 22px; }
.kit-form > .kit-field:first-child { margin-top: 0; }
.kit-form button[type="submit"] { margin-top: auto; }
.kit-field { display: flex; flex-direction: column; gap: 9px; }
.kit-field--grow { flex: 1 1 auto; }
.kit-field--grow textarea { flex: 1 1 auto; min-height: 120px; resize: vertical; }
.kit-field label { font-size: 12px; letter-spacing: .04em; color: var(--ink-2); font-weight: 600; }
.kit-field__opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ink-3); }
.kit-field input, .kit-field textarea { font: inherit; font-size: 16px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); padding: 9px 0; outline: none; resize: none; }
.kit-field input:focus, .kit-field textarea:focus { border-bottom-color: var(--primary); }
.kit-field input::placeholder, .kit-field textarea::placeholder { color: var(--ink-3); }
.kit-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.kit-chip { font: inherit; font-size: 13px; padding: 9px 16px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink-2); background: var(--hero-cream); cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.kit-chip.is-on { background: var(--primary); color: var(--on-dark); border-color: var(--primary); }
.kit-privacy { font-size: 12px; line-height: 1.55; color: var(--ink-3); margin: 0; }
.kit-form__done { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; }
.kit-form__done p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink); }

/* ---------- Footer ---------- */
.kit-crisis { background: var(--primary-soft); border: 1px solid var(--primary-tint); border-radius: var(--r-md); padding: 20px 24px; font-size: 14px; line-height: 1.6; color: var(--ink-2); margin-bottom: var(--sp-8); }
.kit-crisis strong { color: var(--ink); font-weight: 600; }
.kit-footer { background: var(--primary); color: var(--on-dark-2); padding-block: clamp(48px, 6vw, 80px); }
.kit-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: var(--sp-7); border-bottom: 1px solid rgba(244,243,239,.14); }
.kit-footer__mark { width: auto; height: 46px; margin-bottom: 14px; }
.kit-footer__brandname { font-size: 19px; font-weight: 600; color: var(--on-dark); letter-spacing: -.01em; }
.kit-footer__role { font-size: 13px; line-height: 1.5; margin-top: 8px; max-width: 30ch; }
.kit-footer__col { display: flex; flex-direction: column; gap: 9px; }
.kit-footer__col a, .kit-footer__col span:not(.kit-footer__h) { font-size: 14px; color: var(--on-dark-2); text-decoration: none; background: none; border: 0; padding: 0; text-align: left; font-family: inherit; cursor: pointer; }
.kit-footer__col a:hover, .kit-footer__col button:hover { color: var(--on-dark); }
.kit-footer__h { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 5px; }
.kit-footer__legal { display: flex; justify-content: space-between; align-items: center; padding-top: var(--sp-5); font-size: 13px; gap: 16px; flex-wrap: wrap; }
.kit-footer__links { display: flex; gap: 20px; }
.kit-footer__links a { color: var(--on-dark-2); text-decoration: none; }
.kit-footer__links a:hover { color: var(--on-dark); }

/* ---------- Page hero (inner pages clear the fixed nav) ---------- */
.kit-pagehero { padding-block: calc(var(--nav-h) + clamp(48px, 6vw, 88px)) clamp(32px, 4vw, 48px); border-bottom: 1px solid var(--line); min-height: clamp(440px, 48vh, 520px); display: flex; flex-direction: column; justify-content: center; }
.kit-pagehero.is-cream { background: #F7F4EF; }
.kit-pagehero .kit-lead { margin-bottom: 0; }
/* Inner pages (Über mich, Kontakt, Behandlungsangebot, FAQ): smaller
   hero heading + intro than the home hero. Scoped to .kit-pagehero,
   which the Startseite does not use. */
.kit-pagehero .kit-h1 { font-size: clamp(2rem, 3.2vw, 2.85rem); }
.kit-pagehero .kit-lead { font-size: clamp(1.05rem, 1.3vw, 1.2rem); }
/* photo-backed page hero variant */
.kit-pagehero.is-photo { position: relative; isolation: isolate; border-bottom: 0; color: var(--on-dark); }
.kit-pagehero.is-photo .kit-eyebrow { color: var(--on-dark-2); }
.kit-pagehero.is-photo .kit-h1 { color: var(--on-dark); }
.kit-pagehero.is-photo .kit-lead { color: rgba(244,243,239,.9); }
/* light (cream) overlay variant — dark text over a softly washed photo */
.kit-pagehero.is-photo.is-light .kit-pagehero__overlay { background: linear-gradient(180deg, rgba(247,244,239,.70), rgba(247,244,239,.62)); }
.kit-pagehero.is-photo.is-light .kit-eyebrow { color: var(--primary); }
.kit-pagehero.is-photo.is-light .kit-h1 { color: var(--ink); }
.kit-pagehero.is-photo.is-light .kit-lead { color: var(--ink-2); }
.kit-pagehero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center 55%; }
.kit-pagehero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(28,40,44,.78), rgba(28,40,44,.7)); }

/* ---------- Mobile floating CTA (no icon) ---------- */
.kit-mobilecta {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  display: none; align-items: center; justify-content: center; gap: 9px;
  background: var(--primary); color: var(--on-dark); text-decoration: none;
  font-size: 16px; font-weight: 500; padding: 16px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-cta); z-index: 45;
}

/* ============================================================
   Section scroll-snap — Startseite only (desktop)
   Each section fills the viewport; scrolling jumps cleanly to
   the next one. Scoped via .snap-home on <html> (toggled by the
   app when the home page is active) and to wider screens only,
   so the mobile flow stays natural.
   ============================================================ */
@media (min-width: 861px) {
  html.snap-home { scroll-snap-type: y mandatory; }
  html.snap-home main > section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh; min-height: 100dvh;
  }
  /* footer is shorter than a screen — rest it at the document end */
  html.snap-home .kit-footer { scroll-snap-align: end; }

  /* Welcome & Services centre their content vertically; add the nav
     height to the top padding so the fixed header doesn't eat the top
     gap — visible spacing above and below stays identical at any size. */
  html.snap-home main > section.kit-welcome {
    padding-top: calc(var(--nav-h) + clamp(40px, 8vh, 132px));
    padding-bottom: clamp(40px, 8vh, 132px);
  }
  html.snap-home main > section.kit-section--photo {
    padding-top: calc(var(--nav-h) + clamp(40px, 8vh, 110px));
    padding-bottom: clamp(40px, 8vh, 110px);
  }
  /* sections not already viewport-centred (e.g. Ablauf und Kosten):
     centre the content and let the vertical padding scale with the
     viewport height so the section fits one screen automatically. */
  html.snap-home main > section.kit-section--cream:not(.kit-section--about-split) {
    display: flex; flex-direction: column; justify-content: center;
    /* +nav-h on top compensates the fixed header so the visible gap
       above and below the content is identical at every viewport size */
    padding-top: calc(var(--nav-h) + clamp(24px, 6vh, 96px));
    padding-bottom: clamp(24px, 6vh, 96px);
  }

  /* About/Vita split: fit one screen — scale the padding with the
     viewport, narrow the portrait column so the text runs wider and
     shorter, and tighten the editorial text a touch. */
  html.snap-home main > section.kit-section--about-split {
    padding-top: calc(var(--nav-h) + clamp(24px, 6vh, 96px));
    padding-bottom: clamp(24px, 6vh, 96px);
  }
  html.snap-home .kit-about__grid--split {
    grid-template-columns: 0.82fr 1.18fr;
    gap: var(--sp-6);
  }
  html.snap-home .kit-about__block { margin-top: var(--sp-5); }
  html.snap-home .kit-about__block .kit-body { font-size: 15px; line-height: 1.55; margin-bottom: 12px; }
  html.snap-home .kit-about__card { margin-top: auto; padding: 20px 26px 22px; }
  html.snap-home .kit-about__card .kit-creds { gap: 9px; }
  html.snap-home .kit-about__card .kit-creds li { font-size: 14px; }

  /* Contact: fit one screen whenever the two-column layout (form beside
     the info column) is active. Scale the padding with the viewport,
     compensate the fixed header for equal top/bottom gaps, and tighten
     the internal vertical rhythm so the content fits one viewport. */
  html.snap-home main > section.kit-contact--full {
    padding-top: calc(var(--nav-h) + clamp(20px, 5vh, 72px));
    padding-bottom: clamp(20px, 5vh, 72px);
  }
  html.snap-home .kit-contact__left { padding-top: 0; padding-bottom: 0; }
  html.snap-home .kit-contact__left .kit-contactinfo { margin-top: 18px; margin-bottom: 22px; }
  html.snap-home .kit-contactinfo li { padding-block: 14px; }
  html.snap-home .kit-contact__row { margin: 2px 0 18px; }
  html.snap-home .kit-contact__row .kit-map { min-height: 150px; }
  html.snap-home .kit-contact__row .kit-access { padding: 12px 14px; }
  html.snap-home .kit-contact__formcol .kit-form { padding: 24px 26px; gap: 16px; }
  html.snap-home .kit-contact__formcol .kit-field--grow textarea { min-height: 84px; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .kit-cards { grid-template-columns: 1fr; }
  .kit-keypoints__grid { grid-template-columns: 1fr 1fr; }
  .kit-keypoint:nth-child(2) { border-right: 0; }
  .kit-keypoint:nth-child(1), .kit-keypoint:nth-child(2) { border-bottom: 1px solid var(--line); }
  .kit-steps { grid-template-columns: 1fr; }
  .kit-step { border-right: 0; padding: 22px 0 22px 22px; }
  .kit-practice { grid-template-columns: 1fr; }
  .kit-gallery { height: auto; min-height: 0; }
  .kit-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .kit-gallery__item { aspect-ratio: 4 / 3; }
  .kit-gallery__item--group  { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16 / 10; }
  .kit-gallery__item--a      { grid-column: 1 / 2; grid-row: auto; }
  .kit-gallery__item--detail { grid-column: 2 / 3; grid-row: auto; }
  .kit-gallery__item--b      { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16 / 10; }
  .kit-focus__head { grid-template-columns: 1fr; gap: 18px; }
  .kit-grouplist { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .kit-nav, .kit-header > .kit-header__cta { display: none; }
  .kit-burger { display: inline-flex; }
  .kit-hero { height: auto; min-height: 0; }
  .kit-hero__inner { display: block; min-height: 0; }
  .kit-hero__copy { width: 100%; }
  .kit-hero__media { position: static; transform: none; width: 100%; margin-top: 32px; }
  .kit-hero__media img { aspect-ratio: 4 / 3; height: auto; min-height: 0;
    -webkit-mask-image: radial-gradient(ellipse 90% 88% at 50% 50%, #000 52%, rgba(0,0,0,0) 96%);
            mask-image: radial-gradient(ellipse 90% 88% at 50% 50%, #000 52%, rgba(0,0,0,0) 96%); }
  .kit-hero__banner-grid { grid-template-columns: 1fr 1fr; }
  .kit-about__grid { grid-template-columns: 1fr; }
  .kit-section--about-split { min-height: 0; display: block; }
  .kit-about__grid--split .kit-about__img { height: auto; }
  .kit-about__grid--split .kit-about__img > img { aspect-ratio: 4 / 3; height: auto; }
  .kit-about__img > img { height: 400px; }
  .kit-about__grid.is-top .kit-about__img { order: -1; }
  .kit-contact__grid { grid-template-columns: 1fr; }
  .kit-contact--full { min-height: 0; display: block; }
  .kit-contact__row { grid-template-columns: 1fr; }
  .kit-contact__row .kit-map { min-height: 220px; }
  .kit-getthere { grid-template-columns: 1fr; }
  .kit-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .kit-faq__a { padding-right: 4px; }
  .kit-mobilecta { display: flex; }
  body { padding-bottom: 84px; }
}

@media (max-width: 540px) {
  .kit-keypoints__grid { grid-template-columns: 1fr; }
  .kit-hero__banner-grid { grid-template-columns: 1fr; }
  /* Phone hero: full-viewport photo, copy overlaid on top */
  .kit-hero { min-height: 100svh; }
  .kit-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; }
  .kit-hero__media img { width: 100%; height: 100%; aspect-ratio: auto; min-height: 0; object-fit: cover; object-position: 60% 50%;
    -webkit-mask-image: none; mask-image: none; }
  .kit-hero__media::after { content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,40,42,.30) 0%, rgba(0,40,42,.12) 32%, rgba(0,40,42,.42) 72%, rgba(0,40,42,.66) 100%); }
  .kit-hero__main { flex: 1 1 auto; align-items: flex-end; padding-bottom: clamp(28px, 8vw, 48px); }
  .kit-hero__inner { display: block; }
  .kit-hero__copy { width: 100%; }
  .kit-hero__title, .kit-hero__lead { color: #fff; }
  .kit-hero__lead { max-width: none; }
  .kit-hero__banner { display: none; }
  .kit-keypoint { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .kit-keypoint:last-child { border-bottom: 0; }
  .kit-contactinfo { grid-template-columns: 1fr; }
  .kit-footer__grid { grid-template-columns: 1fr; }
  .kit-mobilecta { display: none; }
  body { padding-bottom: 0; }
  .kit-footer__legal { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
