/* ==========================================================================
   Arztpraxis Dr. med. Stefan Wehrle — arztpraxis-wehrle.ch
   Design: modern, reduziert. Blau/Weiss.
   Keine externen Requests (Fonts selbst gehostet), keine Cookies, kein Tracking.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (selbst gehostet — DSGVO/DSG-freundlich, kein Google-CDN)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   2. Design-Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Blauwelt */
  --navy-900: #0b2239;
  --navy-800: #123252;
  --navy-700: #1b4670;
  --blue-600: #2f6fa8;
  --blue-500: #4a8cc2;
  --blue-300: #93bcdc;
  --blue-200: #bfd8ec;
  --blue-100: #dceaf6;
  --blue-50: #f1f7fc;

  /* Neutral */
  --white: #ffffff;
  --ink: #17242f;
  --ink-soft: #3d4f5e;
  --ink-muted: #64798a;
  --line: #dbe6ef;
  --line-soft: #eaf1f7;

  /* Semantik */
  --bg: var(--white);
  --bg-tint: var(--blue-50);
  --text: var(--ink);
  --accent: var(--blue-600);

  /* Typografie — Überschriften Montserrat Bold, Fliesstext Inter Regular */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  --font-display: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale — Fliesstext 18–19 px (Montserrat baut breiter als eine
     Serife, deshalb sind die Überschriften etwas zurückgenommen). */
  --fs-display: clamp(2.1rem, 1.35rem + 2.9vw, 3.55rem);
  --fs-h2: clamp(1.6rem, 1.25rem + 1.45vw, 2.35rem);
  --fs-h3: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
  --fs-lead: clamp(1.2rem, 1.13rem + 0.32vw, 1.4rem);
  --fs-body: clamp(1.125rem, 1.09rem + 0.16vw, 1.1875rem);
  --fs-small: 0.95rem;
  --fs-eyebrow: 0.8rem;

  /* Layout */
  --maxw: 1200px;
  --maxw-text: 68ch;
  --gutter: clamp(1.25rem, 0.6rem + 2.6vw, 3.5rem);
  --section-y: clamp(4rem, 2.4rem + 6.4vw, 8.5rem);
  --radius: 4px;
  --radius-lg: 20px;

  --header-h: 72px;

  --shadow-sm: 0 1px 2px rgba(11, 34, 57, 0.05),
    0 6px 20px -12px rgba(11, 34, 57, 0.18);
  --shadow-md: 0 2px 6px rgba(11, 34, 57, 0.06),
    0 24px 56px -28px rgba(11, 34, 57, 0.3);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   3. Reset / Basis
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

img,
svg,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p {
  margin: 0 0 1.15em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--blue-600);
  text-decoration: none;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  margin: 0 0 1.15em;
  padding-left: 1.15em;
}

li {
  margin-bottom: 0.4em;
}

strong {
  font-weight: 600;
  color: var(--navy-800);
}

abbr[title] {
  text-decoration: none;
  border-bottom: 1px dotted var(--blue-300);
  cursor: help;
}

:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--blue-200);
  color: var(--navy-900);
}

/* --------------------------------------------------------------------------
   4. Layout-Helfer
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow {
  max-width: 940px;
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--tint {
  background: var(--bg-tint);
}

.section--navy {
  background: var(--navy-900);
  color: var(--blue-100);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy a {
  color: var(--blue-200);
}

/* Sonst erbt <strong> das dunkle Navy und verschwindet auf dunklem Grund. */
.section--navy strong,
.site-footer strong {
  color: var(--white);
}

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

.measure {
  max-width: var(--maxw-text);
}

.stack > * + * {
  margin-top: 1.15em;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: var(--fs-small);
  font-weight: 500;
  transition: top 0.18s var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   5. Typografische Bausteine
   -------------------------------------------------------------------------- */

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1.15rem;
}

.section--navy .eyebrow {
  color: var(--blue-300);
}

.eyebrow--rule {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.eyebrow--rule::after {
  content: '';
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.display {
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

.section--navy .lead {
  color: var(--blue-200);
}

.section-head {
  margin-bottom: clamp(2.5rem, 1.6rem + 3vw, 4.25rem);
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  padding: 1.05rem 1.75rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

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

.btn--primary {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--blue-200);
}

.btn--ghost:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
}

.section--navy .btn--ghost {
  color: var(--white);
  border-color: rgba(191, 216, 236, 0.35);
}

.section--navy .btn--ghost:hover {
  border-color: var(--blue-300);
  background: rgba(255, 255, 255, 0.06);
}

.btn--light {
  background: var(--white);
  color: var(--navy-900);
}

.btn--light:hover {
  background: var(--blue-100);
}

.btn--sm {
  padding: 0.7rem 1.25rem;
  min-height: 40px;
  font-size: 0.88rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.btn .icon {
  width: 17px;
  height: 17px;
  flex: none;
}

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  font-size: 1.02rem;
}

.link-arrow .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.2s var(--ease);
}

.link-arrow:hover .icon {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   7. Header / Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  text-decoration: none;
  color: var(--navy-900);
  line-height: 1.15;
  flex: none;
}

.brand:hover {
  text-decoration: none;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.brand__role {
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.3rem + 1.6vw, 2.1rem);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.3rem + 1.6vw, 2.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list li {
  margin: 0;
}

.nav__link {
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-soft);
  padding-block: 0.35rem;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--navy-900);
  text-decoration: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__aside {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: none;
}

/* Rechtslinks — nur im aufgeklappten Burger-Menü sichtbar */
.nav__legal {
  display: none;
  margin: 0;
  gap: 1.5rem;
  font-size: 1rem;
}

.nav__legal a {
  color: var(--ink-muted);
  padding-block: 0.35rem;
}

/* Sprachumschalter */
.lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--ink-muted);
}

.lang__sep {
  width: 1px;
  height: 12px;
  background: var(--line);
}

.lang a {
  color: var(--ink-muted);
}

.lang a:hover {
  color: var(--navy-900);
  text-decoration: none;
}

.lang [aria-current='true'] {
  color: var(--navy-900);
}

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-right: -10px;
  background: none;
  border: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: none;
}

.burger__box {
  position: relative;
  width: 22px;
  height: 12px;
}

.burger__box span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.18s var(--ease);
}

.burger__box span:nth-child(1) {
  top: 0;
}
.burger__box span:nth-child(2) {
  bottom: 0;
}

.burger[aria-expanded='true'] .burger__box span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.burger[aria-expanded='true'] .burger__box span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}


/* --------------------------------------------------------------------------
   8. Hero — vollflächiges Aufmacherbild, darunter der Textblock
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-bottom: clamp(2rem, 1.2rem + 2vw, 3rem);
}

/* Der erste Abschnitt nach dem Hero rückt näher heran — sonst summieren sich
   Hero-Abstand und Abschnittsabstand zu einer sehr grossen Lücke. */
#ansatz {
  padding-top: clamp(2.5rem, 1.6rem + 3vw, 4.5rem);
}

/* Bildband über die volle Seitenbreite */
.hero__banner {
  margin: 0 0 clamp(2.5rem, 1.5rem + 3.5vw, 4.5rem);
  width: 100%;
  background: var(--blue-50);
}

.hero__banner img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  /* Bildausschnitt auf das Gesicht ausgerichtet */
  object-position: 55% 32%;
}

.hero__intro {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}

.hero__title {
  margin-bottom: 0.4em;
}

.hero__practice {
  font-family: var(--font-sans);
  /* bewusst doppelt so gross wie zuvor */
  font-size: clamp(2.04rem, 1.92rem + 0.6vw, 2.36rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--blue-600);
  margin-bottom: 1.75rem;
}

.hero__claim {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.02rem + 0.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  max-width: 26ch;
  margin-inline: auto;
  margin-bottom: 0;
}

.hero__intro .btn-row {
  justify-content: center;
}

/* Kennzahlen-Leiste unter dem Hero */
.hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 1.8rem + 3.5vw, 5rem);
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}

.hero__fact {
  background: var(--white);
  padding: 1.65rem 1.5rem;
}

.hero__fact dt {
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.hero__fact dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy-800);
  line-height: 1.4;
}


/* --------------------------------------------------------------------------
   8b. Bildflächen — Rechteck mit runden Ecken, ohne Schatten und Farbblock
   -------------------------------------------------------------------------- */

.photo {
  margin: 0;
  width: 100%;
}

.photo__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
}

.photo figcaption {
  margin-top: 0.9rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Ansatz (Fliesstext + Merkmale)
   -------------------------------------------------------------------------- */

.approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.25rem, 1rem + 4.5vw, 5.5rem);
  align-items: start;
}

.approach__aside {
  position: static;
}

/* Klebende linke Spalte — nur wenn das Fenster hoch genug ist, damit Zitat und
   Bild nicht unten abgeschnitten werden. */
@media (min-width: 901px) and (min-height: 780px) {
  .approach__aside {
    position: sticky;
    top: calc(var(--header-h) + 2.5rem);
    align-self: start;
  }
}

.approach__figure {
  margin-top: clamp(2rem, 1.4rem + 2vw, 3rem);
  max-width: 400px;
}

.pull {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 2rem);
  font-weight: 300;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--navy-800);
  margin: 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--blue-300);
}

.feature-list {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.feature-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin: 0;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line-soft);
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.feature-list .icon {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 0.28em;
  color: var(--blue-500);
}

.feature-list h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.008em;
  color: var(--navy-800);
}

.feature-list p {
  margin: 0;
  font-size: 1.06rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. Anliegen (Themen-Raster)
   -------------------------------------------------------------------------- */

.topics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.topics li {
  background: var(--white);
  margin: 0;
  padding: 1.15rem 1.35rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
  /* Lange deutsche Komposita (z. B. «Schilddrüsensprechstunde») müssen im
     Flex-Kontext umbrechen dürfen, sonst laufen sie aus der Zelle heraus. */
  hyphens: auto;
  overflow-wrap: anywhere;
}

.section--tint .topics li {
  background: var(--white);
}

.topics li::before {
  content: '';
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--blue-300);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.topics li:hover {
  background: var(--blue-50);
  color: var(--navy-900);
}

.topics li:hover::before {
  background: var(--blue-600);
  transform: scale(1.4);
}

.topics-note {
  margin-top: 2rem;
  font-size: 1.06rem;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   11. Über mich + Werdegang
   -------------------------------------------------------------------------- */

.about__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.25rem, 1rem + 4.5vw, 5rem);
  align-items: start;
}

/* Bild-Platzhalter für das zweite Bild */
.figure {
  margin: 0;
}

.figure__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-100);
}

.figure__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figure figcaption {
  margin-top: 0.85rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Platzhalter-Optik: austauschbar durch echtes <img> */
.placeholder {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 2rem;
  background: repeating-linear-gradient(
      135deg,
      rgba(74, 140, 194, 0.05) 0 10px,
      rgba(74, 140, 194, 0) 10px 20px
    ),
    var(--blue-50);
  border: 1px dashed var(--blue-300);
  border-radius: var(--radius-lg);
  color: var(--blue-600);
}

.placeholder .icon {
  width: 38px;
  height: 38px;
  opacity: 0.55;
}

.placeholder__label {
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
}

.placeholder__hint {
  font-size: 0.83rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--ink-muted);
  max-width: 28ch;
  line-height: 1.5;
}

/* Werdegang */
.cv {
  margin-top: clamp(3rem, 2rem + 3vw, 5rem);
}

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

.cv__list li {
  position: relative;
  margin: 0;
  padding: 0 0 2.25rem 2rem;
}

.cv__list li:last-child {
  padding-bottom: 0;
}

.cv__list li::before {
  content: '';
  position: absolute;
  left: -4.5px;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--blue-500);
}

.cv__period {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue-600);
  margin-bottom: 0.4rem;
}

.cv__title {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.008em;
  color: var(--navy-800);
  margin: 0 0 0.3rem;
}

.cv__detail {
  margin: 0;
  font-size: 1.06rem;
  color: var(--ink-muted);
  line-height: 1.62;
}

/* --------------------------------------------------------------------------
   12. Zusammenarbeit
   -------------------------------------------------------------------------- */

.collab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
}

.card--quiet {
  background: var(--blue-50);
  border-color: transparent;
}

/* Bewusst kein Flex: sonst wird das <sup> zu einem eigenen Flex-Item und
   reisst mit der gap Lücken in den Text. */
.badge {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--navy-700);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1.35rem;
}

.badge .icon {
  vertical-align: -0.15em;
  margin-right: 0.45rem;
}

/* --------------------------------------------------------------------------
   13. Termin — Hervorgehobener Abschnitt
   -------------------------------------------------------------------------- */

.appointment {
  position: relative;
  overflow: hidden;
}

.appointment::before {
  content: '';
  position: absolute;
  right: -12%;
  top: -35%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 140, 194, 0.22) 0%,
    rgba(74, 140, 194, 0) 68%
  );
  pointer-events: none;
}

/* Drei Spalten: Kontakt · Ablauf · Impressionsbild (rechts unten) */
.appointment__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.72fr);
  gap: clamp(2rem, 1rem + 2.6vw, 3.5rem);
  align-items: start;
}

/* Stefan blickt nach links — das Bild steht deshalb rechts und schaut ins Layout. */
.appointment__figure {
  align-self: end;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(191, 216, 236, 0.18);
  border-radius: 14px;
  color: var(--white);
  text-decoration: none;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(191, 216, 236, 0.42);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(191, 216, 236, 0.14);
  color: var(--blue-200);
}

.contact-card__icon .icon {
  width: 19px;
  height: 19px;
}

.contact-card__label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 0.22rem;
}

.contact-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  word-break: break-word;
}

.notice {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 2px solid var(--blue-300);
  border-radius: 0 8px 8px 0;
  font-size: 1.06rem;
  line-height: 1.6;
}

.notice .icon {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 0.2em;
  color: var(--blue-300);
}

/* Kosten und Abrechnung — abgesetzter Block unter dem Termin-Raster */
.billing {
  position: relative;
  margin-top: clamp(2.5rem, 1.8rem + 2.5vw, 4rem);
  padding-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  border-top: 1px solid rgba(191, 216, 236, 0.18);
}

.billing p {
  color: var(--blue-200);
}

/* Ablauf-Schritte */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  margin: 0;
  padding: 0 0 1.6rem 3.25rem;
}

.steps li:last-child {
  padding-bottom: 0;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.1em;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(191, 216, 236, 0.35);
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--blue-200);
}

.steps li::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 2.05rem;
  bottom: 0.55rem;
  width: 1px;
  background: rgba(191, 216, 236, 0.2);
}

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

.steps h3 {
  font-family: var(--font-sans);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.25rem;
  letter-spacing: -0.008em;
}

.steps p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--blue-200);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. Praxis / Anfahrt
   -------------------------------------------------------------------------- */

.practice__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}

.address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.75rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--navy-800);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.75rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.info-grid dt {
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
}

.info-grid dd {
  margin: 0;
  font-size: 1.06rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-900);
  color: var(--blue-200);
  padding-block: clamp(3rem, 2rem + 3.5vw, 5rem) 2.25rem;
  font-size: 1.02rem;
}

.site-footer a {
  color: var(--blue-200);
}

.site-footer a:hover {
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(191, 216, 236, 0.14);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.footer__tagline {
  color: var(--blue-300);
  font-size: 1rem;
  max-width: 34ch;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 0.6rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: 0.94rem;
  color: rgba(191, 216, 236, 0.65);
}

.footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   16. Mobile Sticky-CTA (Terminanmeldung immer erreichbar)
   -------------------------------------------------------------------------- */

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  flex: 1;
  padding-inline: 0.75rem;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   17. Rechtstexte (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */

.legal {
  padding-block: clamp(3rem, 2rem + 4vw, 6rem) var(--section-y);
}

.legal__header {
  max-width: var(--maxw-text);
  margin-bottom: clamp(2.5rem, 1.8rem + 2.5vw, 4rem);
}

.legal__updated {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  margin-top: 1rem;
}

.legal__body {
  max-width: var(--maxw-text);
}

.legal__body h2 {
  font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.7rem);
  font-weight: 400;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
}

.legal__body h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal__body h3 {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.008em;
}

.legal__body ul {
  padding-left: 1.1rem;
}

.legal__body li::marker {
  color: var(--blue-300);
}

.legal__body dl {
  margin: 0 0 1.15em;
}

.legal__body dt {
  font-weight: 600;
  color: var(--navy-800);
  margin-top: 1rem;
}

.legal__body dd {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
}

/* Platzhalter, die vor dem Livegang zu füllen sind */
.todo {
  background: #fff4d6;
  border-bottom: 1px solid #e8c96a;
  padding: 0.1em 0.35em;
  border-radius: 3px;
  color: #6b5312;
  font-size: 0.95em;
  font-weight: 500;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.back-link .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.2s var(--ease);
}

.back-link:hover {
  color: var(--navy-900);
  text-decoration: none;
}

.back-link:hover .icon {
  transform: translateX(-3px);
}

/* --------------------------------------------------------------------------
   17b. Utilities (statt Inline-Styles — ermöglicht eine strikte CSP)
   -------------------------------------------------------------------------- */

.icon-sprite {
  position: absolute;
}

.legal__title {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem);
}

.note-fine {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--blue-300);
}

.steps-title {
  color: var(--white);
  margin-bottom: 1.75rem;
}

.info-grid--flush {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.footer__bottom--flush {
  padding-top: 0;
  border-top: 0;
}

/* --------------------------------------------------------------------------
   18. Scroll-Reveal (dezent, respektiert prefers-reduced-motion)
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */

/* iPad quer / kleine Laptops */
@media (max-width: 1080px) {
  /* Drei Spalten werden hier zu eng — Bild rückt in eine eigene Zeile */
  .appointment__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .appointment__figure {
    grid-column: 2;
    justify-self: end;
    max-width: 320px;
  }

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

  .footer__brand-col {
    grid-column: 1 / -1;
  }
}


/* Die Navigation muss früher weichen als das Layout: mit der grösseren Schrift
   passen Menü, Sprachumschalter und Button ab ca. 1080 px nicht mehr in eine Zeile. */
@media (max-width: 1080px) {
  :root {
    --header-h: 64px;
  }

  /* Navigation ins Off-Canvas-Panel */
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: block;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.75rem;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.24s var(--ease), transform 0.24s var(--ease),
      visibility 0.24s;
    box-shadow: var(--shadow-md);
  }

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

  .nav__list {
    display: block;
  }

  .nav__list li + li {
    border-top: 1px solid var(--line-soft);
  }

  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--navy-800);
  }

  .nav__link::after {
    display: none;
  }

  .nav__aside {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .nav__aside .btn {
    width: 100%;
  }

  .nav__aside .lang {
    justify-content: center;
  }

  .nav__legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* iPad hoch */
@media (max-width: 900px) {

  /* Bildband hochformatiger, damit das Gesicht gross genug bleibt */
  .hero__banner img {
    aspect-ratio: 3 / 2;
    object-position: 55% 28%;
  }

  /* Auf dem Tablet ergibt 2×2 ein ruhigeres Bild als 3 + 1 Waise. */
  .hero__facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach__grid,
  .about__grid,
  .collab,
  .appointment__grid,
  .practice__grid {
    grid-template-columns: 1fr;
  }

  .approach__figure {
    max-width: 420px;
    margin-inline: auto;
  }

  .about__figure {
    max-width: 460px;
    margin-inline: auto;
  }

  /* Wichtig: das grid-column aus der Tablet-Stufe zurücksetzen. Sonst erzwingt
     es im einspaltigen Raster eine zweite Spalte und die Seite läuft rechts über. */
  .appointment__figure {
    grid-column: auto;
    justify-self: center;
    align-self: auto;
    max-width: 380px;
    margin-inline: auto;
  }

  .collab__figure {
    order: -1;
  }
}

/* Smartphone */
@media (max-width: 640px) {
  :root {
    --radius-lg: 16px;
  }

  body {
    line-height: 1.64;
  }

  .brand__role {
    display: none;
  }

  /* Auf dem Smartphone Hochformat, sonst wird das Gesicht zu klein */
  .hero__banner img {
    aspect-ratio: 4 / 5;
    object-position: 56% 26%;
  }

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

  .hero__fact {
    padding: 1.25rem 0;
  }


  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .btn {
    width: 100%;
  }

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

  .topics li {
    padding: 0.95rem 1rem;
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.15rem 1.25rem;
    gap: 0.9rem;
  }

  .contact-card__value {
    font-size: 1.12rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Sticky-CTA nur mobil */
  .sticky-cta {
    display: flex;
  }

  /* Der feste Balken liegt über dem Seitenende — die Fusszeile braucht deshalb
     unten Luft, sonst sind Impressum und Datenschutz nicht antippbar. */
  .site-footer {
    padding-bottom: calc(6rem + env(safe-area-inset-bottom));
  }

  /* Grössere Tippflächen für die Rechtslinks */
  .footer__bottom nav {
    gap: 0.25rem 1.75rem;
  }

  .footer__bottom nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 400px) {
  .topics {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   20. Motion / Print / Kontrast
   -------------------------------------------------------------------------- */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   21. Druckfassung
   Ziel: gut lesbares Dokument auf A4 — kein Tonerfresser, keine Bedienelemente,
   keine Umbrüche mitten in einem Eintrag.
   Hinweis: Beim Drucken ist die Seitenbreite rund 794 px, deshalb greifen die
   Regeln der schmalen Ansicht ohnehin und die Raster stehen bereits gestapelt.
   -------------------------------------------------------------------------- */

@page {
  margin: 18mm 16mm 20mm;
}

@media print {

  /* --- Grundlagen ------------------------------------------------------- */

  html {
    scroll-behavior: auto;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 10.5pt;
    line-height: 1.5;
    -webkit-print-color-adjust: economy;
    print-color-adjust: economy;
  }

  p {
    orphans: 3;
    widows: 3;
  }

  /* Textspalten dürfen die volle Papierbreite nutzen */
  .measure,
  .wrap,
  .wrap--narrow,
  .hero__intro,
  .hero__claim {
    max-width: none;
  }

  .section {
    padding-block: 6mm;
  }

  /* Die Faktenleiste bezieht ihre Trennlinien aus dem Rasterhintergrund.
     Auf Papier bliebe dadurch eine leere farbige Kachel stehen — deshalb
     stattdessen echte Rahmen an den einzelnen Feldern. */
  .hero__facts {
    background: none !important;
    gap: 0;
    border: 0 !important;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__fact {
    padding: 3mm 4mm 3mm 0;
    border-top: 1px solid #bbb !important;
  }

  /* --- Bedienelemente und Dekoration entfernen -------------------------- */

  .site-header,
  .sticky-cta,
  .btn-row,
  .skip-link,
  .link-arrow,
  .back-link,
  .hero::before,
  .appointment::before {
    display: none !important;
  }

  /* Schmuckfotos raus — auf Papier zählt der Text.
     Das Aufmacherbild bleibt als Kopf erhalten, aber flach. */
  .approach__figure,
  .about__figure,
  .appointment__figure {
    display: none !important;
  }

  .hero {
    padding-bottom: 6mm;
  }

  .hero__banner {
    margin-bottom: 8mm;
  }

  .hero__banner img {
    aspect-ratio: auto;
    height: 45mm;
    object-fit: cover;
    object-position: 55% 30%;
  }

  /* Die Navigationsspalte der Fusszeile ist auf Papier ohne Nutzen */
  .footer__grid > div:nth-child(3) {
    display: none;
  }

  /* --- Farbflächen aufhellen -------------------------------------------- */

  .section--navy,
  .section--tint,
  .site-footer,
  .card,
  .card--quiet,
  .contact-card,
  .notice,
  .badge,
  .hero__fact,
  .topics li,
  .topics {
    background: #fff !important;
  }

  .section--navy,
  .section--navy h2,
  .section--navy h3,
  .section--navy p,
  .section--navy span,
  .section--navy a,
  .section--navy strong,
  .site-footer,
  .site-footer p,
  .site-footer a,
  .site-footer strong,
  .footer__brand,
  .footer__tagline,
  .footer__heading,
  .contact-card,
  .contact-card__label,
  .contact-card__value,
  .steps h3,
  .steps p,
  .billing p,
  .notice,
  .badge,
  .lead,
  .cv__detail,
  .feature-list p,
  .info-grid dd,
  .topics li {
    color: #000 !important;
  }

  .eyebrow,
  .cv__period,
  .hero__fact dt,
  .info-grid dt,
  .footer__heading,
  .contact-card__label {
    color: #333 !important;
  }

  .hero__practice {
    color: #000 !important;
  }

  /* Linien dezent, aber sichtbar */
  .topics,
  .topics li,
  .hero__facts,
  .feature-list li,
  .card,
  .contact-card,
  .info-grid,
  .billing,
  .legal__body h2,
  .footer__grid {
    border-color: #bbb !important;
  }

  .contact-card__icon,
  .steps li::before,
  .steps li::after {
    border-color: #999 !important;
    background: none !important;
    color: #000 !important;
  }

  .pull {
    border-left-color: #999;
    margin-bottom: 5mm;
  }

  /* Im Druck stehen die Spalten untereinander — sonst klebt das Zitat am Text */
  .approach__aside {
    margin-bottom: 4mm;
  }

  .notice {
    border-left-color: #999;
  }

  /* --- Schriftgrössen für Papier ---------------------------------------- */

  .display,
  .hero__title,
  .legal__title {
    font-size: 22pt;
    line-height: 1.15;
  }

  .hero__practice {
    font-size: 13pt;
  }

  .hero__claim,
  .pull {
    font-size: 12.5pt;
  }

  h2 {
    font-size: 15pt;
  }

  h3,
  .steps h3,
  .feature-list h3,
  .cv__title {
    font-size: 11.5pt;
  }

  .lead {
    font-size: 11pt;
  }

  .address,
  .contact-card__value {
    font-size: 12pt;
  }

  .eyebrow {
    font-size: 8.5pt;
  }

  /* --- Raster und Umbrüche ---------------------------------------------- */

  .approach__aside {
    position: static !important;
  }

  .approach__grid,
  .about__grid,
  .collab,
  .appointment__grid,
  .practice__grid,
  .footer__grid,
  .contact-cards {
    display: block;
  }

  .topics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-card {
    margin-bottom: 4mm;
  }

  h1, h2, h3,
  .eyebrow,
  .section-head {
    break-after: avoid;
    page-break-after: avoid;
  }

  .feature-list li,
  .cv__list li,
  .steps li,
  .topics li,
  .contact-card,
  .hero__fact,
  .billing,
  .card,
  .info-grid > div,
  figure {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Der Termin-Abschnitt gehört zusammen auf eine Seite */
  #termin .section-head,
  #appointment .section-head {
    break-before: page;
    page-break-before: always;
  }

  /* --- Verweise ---------------------------------------------------------- */

  /* Nur fremde Adressen ausschreiben. Telefon, E-Mail und Sprungmarken
     stehen bereits im Text, die eigene Domain ebenfalls. */
  a[href^="http"]:not([href*="arztpraxis-wehrle.ch"])::after {
    content: " (" attr(href) ")";
    font-size: 8.5pt;
    color: #444;
    word-break: break-all;
  }

  a {
    text-decoration: none;
    color: #000 !important;
  }

  /* Einblend-Effekt darf im Druck nichts verstecken */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
