/* =============================================================
   de la Fuente — Psychotherapie Linz
   Production stylesheet
   - Design tokens from Claude Design (colors, type, spacing)
   - Mobile-first responsive layout
   ============================================================= */

@font-face {
  font-family: 'Montserrat';
  font-weight: 100 900;
  font-style: normal;
  src: url('/fonts/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 100 900;
  font-style: italic;
  src: url('/fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype-variations');
  font-display: swap;
}

:root {
  /* ---------- BRAND COLORS ---------- */
  --teal-900: #00474a;
  --teal-800: #006063;
  --teal-700: #007377;
  --teal:     #008080;
  --teal-600: #1a8e8e;
  --teal-500: #4ca3a3;
  --teal-300: #99c8c8;
  --teal-100: #e6f0f0;

  --gold-700: #b58a04;
  --gold-600: #d49c05;
  --gold:     #f2b705;
  --gold-300: #f7cf57;
  --gold-100: #fdf2cd;

  --ink:    #1a1a1a;
  --ink-2:  #3a3a3a;
  --ink-3:  #6b6b6b;
  --line:   #e2e2e0;
  --paper:  #faf7f2;
  --paper-2:#f3efe7;
  --white:  #ffffff;

  --rust:        #a64223;
  --terracotta:  #c97a52;
  --sand:        #d9c9a8;

  /* ---------- SEMANTIC COLORS ---------- */
  --color-bg:               var(--paper);
  --color-bg-brand:         var(--teal);
  --color-bg-brand-deep:    var(--teal-900);
  --color-surface:          var(--white);
  --color-surface-warm:     var(--paper-2);
  --color-fg:               var(--ink);
  --color-fg-muted:         var(--ink-2);
  --color-fg-subtle:        var(--ink-3);
  --color-fg-on-brand:      var(--gold);
  --color-fg-on-brand-soft: #ffffffee;
  --color-line:             var(--line);
  --color-link:             var(--teal-700);
  --color-link-hover:       var(--teal-900);
  --color-accent:           var(--gold);
  --color-accent-hover:     var(--gold-700);

  /* ---------- TYPOGRAPHY ---------- */
  --font-display: 'Montserrat', 'Helvetica Neue', system-ui, sans-serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  /* Type scale — base sizes (mobile-tuned, scale up on larger screens) */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg:   1.1875rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  1.625rem;
  --fs-3xl:  2rem;
  --fs-4xl:  2.5rem;
  --fs-5xl:  3rem;

  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-normal:  1.55;
  --lh-relaxed: 1.75;

  --ls-tighter: -0.02em;
  --ls-tight:   -0.01em;
  --ls-normal:  0;
  --ls-wide:    0.02em;
  --ls-wider:   0.06em;
  --ls-caps:    0.08em;

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  /* ---------- SPACING (8pt base) ---------- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* ---------- RADII ---------- */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-xl: 16px;
  --r-pill: 999px;
  --r-circle: 50%;

  /* ---------- ELEVATION ---------- */
  --shadow-xs: 0 1px 2px rgba(15, 30, 30, 0.04);
  --shadow-sm: 0 2px 6px rgba(15, 30, 30, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 30, 30, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 30, 30, 0.12);

  /* ---------- MOTION ---------- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 140ms;
  --dur-base: 220ms;
  --dur-slow: 420ms;

  /* ---------- LAYOUT ---------- */
  --content-w: 62ch;
  --container: 1180px;
  --container-sm: 760px;
  --gutter: var(--sp-5);
}

/* Scale type up at larger viewports */
@media (min-width: 640px) {
  :root {
    --fs-xl: 1.5rem;
    --fs-2xl: 1.875rem;
    --fs-3xl: 2.375rem;
    --fs-4xl: 3rem;
    --fs-5xl: 3.75rem;
    --gutter: var(--sp-6);
  }
}
@media (min-width: 960px) {
  :root {
    --fs-2xl: 2rem;
    --fs-3xl: 2.75rem;
    --fs-4xl: 3.75rem;
    --fs-5xl: 5rem;
    --gutter: var(--sp-7);
  }
}

/* =============================================================
   RESET / BASE
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: var(--lh-relaxed);
  color: var(--color-fg);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- HEADINGS ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  text-wrap: balance;
  /* German has very long compound words; allow them to break when columns get narrow */
  overflow-wrap: break-word;
  hyphens: auto;
}
h1, .h1 {
  font-weight: var(--fw-bold);
  font-size: var(--fs-4xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
}
h2, .h2 {
  font-weight: var(--fw-bold);
  font-size: var(--fs-3xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
}
h3, .h3 {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
h4, .h4 {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
}

.no-caps { text-transform: none !important; letter-spacing: -0.01em !important; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
p.lede {
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--color-fg-muted);
}
small { font-size: var(--fs-sm); color: var(--color-fg-muted); }

a {
  color: var(--color-link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--color-link-hover); }

ul, ol { padding-left: 1.25em; margin: 0 0 1em; }
li { margin-bottom: 0.35em; }
li:last-child { margin-bottom: 0; }

hr {
  border: 0;
  border-top: 1px solid var(--color-line);
  margin: var(--sp-7) 0;
}

::selection { background: var(--gold-300); color: var(--ink); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: var(--sp-3);
}
.on-teal .eyebrow { color: var(--gold); }

/* On-teal context */
.on-teal { background: var(--teal); color: var(--gold); }
.on-teal h1, .on-teal h2, .on-teal h3, .on-teal h4 { color: var(--gold); }
.on-teal p { color: var(--gold-100); }
.on-teal a { color: var(--gold-300); }
.on-teal a:hover { color: var(--gold); }

/* On-paper-2 (warm card) */
.on-paper-2 { background: var(--paper-2); }

/* =============================================================
   LAYOUT PRIMITIVES
   ============================================================= */

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

section {
  padding-block: var(--sp-8);
}
@media (min-width: 960px) {
  section { padding-block: var(--sp-9); }
}

/* Stack helper */
.stack > * + * { margin-top: var(--sp-5); }
.stack-lg > * + * { margin-top: var(--sp-7); }
.stack-sm > * + * { margin-top: var(--sp-4); }

/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95em 1.8em;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: var(--gold);
}
.btn--primary:hover {
  background: var(--teal-900);
  color: var(--gold);
}
.btn--gold {
  background: var(--gold);
  color: var(--teal-900);
}
.btn--gold:hover {
  background: var(--gold-700);
  color: var(--teal-900);
}
.btn--ghost {
  background: transparent;
  color: var(--teal-900);
  border-color: var(--teal-700);
}
.btn--ghost:hover {
  background: var(--teal);
  color: var(--gold);
  border-color: var(--teal);
}
.btn--ghost-light {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--ghost-light:hover {
  background: var(--gold);
  color: var(--teal-900);
}

/* =============================================================
   LAUNCH NOTICE — REMOVE AFTER AUGUST 2026 START
   ============================================================= */

.launch-notice {
  background: var(--teal-900);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  text-align: center;
  padding: 0.65em var(--gutter);
  line-height: 1.4;
}
.launch-notice strong {
  color: var(--white);
  font-weight: var(--fw-semibold);
}
@media (min-width: 720px) {
  .launch-notice { font-size: 0.8125rem; }
}

/* =============================================================
   LAUNCH NOTICE END
   ============================================================= */


/* =============================================================
   LANGUAGE SUGGESTION BANNER (top of page)
   ============================================================= */

.lang-suggest {
  background: var(--paper-2);
  border-bottom: 1px solid var(--color-line);
  font-size: var(--fs-sm);
}
.lang-suggest[hidden] { display: none; }
.lang-suggest__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-3);
}
.lang-suggest__msg {
  margin: 0;
  color: var(--ink-2);
  flex: 1 1 auto;
  min-width: 0;
}
.lang-suggest__link {
  color: var(--teal-900);
  font-weight: var(--fw-semibold);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
  margin-left: var(--sp-2);
  white-space: nowrap;
}
.lang-suggest__link:hover {
  color: var(--teal);
}
.lang-suggest__close {
  background: transparent;
  border: 0;
  color: var(--ink-3);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 var(--sp-2);
  flex-shrink: 0;
  border-radius: var(--r-sm);
}
.lang-suggest__close:hover {
  color: var(--ink);
  background: rgba(0,0,0,0.04);
}

/* =============================================================
   HEADER / NAVIGATION
   ============================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  flex: 1 1 auto;
}
.brand__sun {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);   /* nudged up from --fs-sm for slightly more presence */
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  line-height: 1.15;
}
.brand__role {
  display: none;
  font-weight: var(--fw-medium);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-top: 2px;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .brand__role { display: block; }
}

.nav {
  display: none;
  align-items: center;
  gap: var(--sp-6);
}
.nav a {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
}
.nav a:hover, .nav a.is-active { color: var(--teal-900); }

.lang-switch {
  display: none;
  align-items: stretch;
  border: 1px solid var(--color-line);
  border-radius: var(--r-pill);
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 800px) {
  .lang-switch { display: inline-flex; }
}
.lang-switch a, .lang-switch span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--ink-3);
  font-weight: var(--fw-semibold);
}
.lang-switch a:hover { color: var(--teal-900); }
.lang-switch .is-active {
  background: var(--gold);
  color: var(--teal-900);
}

/* Mobile menu */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  color: var(--ink);
}
.nav-toggle svg { width: 18px; height: 18px; }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--color-line);
  background: var(--paper);
  padding: var(--sp-4) var(--gutter) var(--sp-5);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { margin: 0; }
.mobile-nav a {
  display: block;
  padding: var(--sp-3) 0;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  border-bottom: 1px solid var(--color-line);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav__lang a {
  color: var(--teal-700);
  font-weight: var(--fw-semibold);
}

@media (min-width: 800px) {
  .nav { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* =============================================================
   HERO
   ============================================================= */

.hero {
  padding-block: var(--sp-7) var(--sp-8);
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(0,128,128,0.06), transparent 70%),
    var(--paper);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
}
.hero__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--teal);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,71,74,0.25));
  pointer-events: none;
}

.hero__copy h1 {
  font-size: clamp(2rem, 5vw, var(--fs-3xl));
  line-height: 1.05;
  margin-bottom: var(--sp-5);
}
.hero__copy h1 .accent { color: var(--teal-700); }
.hero__copy .lede {
  max-width: 50ch;
  margin-bottom: var(--sp-6);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

@media (min-width: 800px) {
  .hero { padding-block: var(--sp-9) var(--sp-10); }
  .hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--sp-8);
  }
  .hero__portrait { max-width: none; }
}
@media (min-width: 1100px) {
  .hero__grid { gap: var(--sp-9); }
}

/* =============================================================
   PRACTICE STRIP — 4-up facts (FIXED: responsive!)
   ============================================================= */

.practice-strip {
  background: var(--white);
  border-block: 1px solid var(--color-line);
  padding-block: var(--sp-6);
}
.practice-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-5) var(--sp-4);
}
.practice-strip__item dt {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: var(--sp-2);
}
.practice-strip__item dd {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--ink);
  margin: 0;
}

@media (min-width: 800px) {
  .practice-strip { padding-block: var(--sp-7); }
  .practice-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--sp-5);
  }
  .practice-strip__item dd { font-size: 1.25rem; }
}

/* =============================================================
   APPROACH GRID (Therapy methods cards)
   ============================================================= */

.approach__head {
  max-width: 60ch;
  margin-bottom: var(--sp-7);
}
/* Section h2: one tier below page-title; matches .about-preview__grid h2 on index pages */
.approach__head h2,
.process__head h2 {
  font-size: var(--fs-2xl);
}
/* Lede in section context: keep readable but one step below hero/page-intro lede */
.approach__head .lede,
.process__head .lede {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
}
.approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-5);
}
.approach-card {
  background: var(--white);
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.approach-card:hover {
  border-color: var(--teal-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.approach-card__number {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  color: var(--gold-700);
  margin-bottom: var(--sp-3);
}
.approach-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}
.approach-card p {
  color: var(--color-fg-muted);
  font-size: var(--fs-lg);
}

@media (min-width: 720px) {
  .approach__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* =============================================================
   PROCESS (numbered steps)
   ============================================================= */

.process__head { max-width: 60ch; margin-bottom: var(--sp-7); }
.process__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-5);
  align-items: start;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--gold);
  background: var(--teal);
  width: 56px;
  height: 56px;
  border-radius: var(--r-circle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.process-step h4 {
  font-size: var(--fs-lg);
  margin: 0 0 var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.process-step p { color: var(--ink-2); margin: 0; }

@media (min-width: 720px) {
  .process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-7) var(--sp-6);
  }
}
@media (min-width: 1100px) {
  .process__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* =============================================================
   QUOTE / PULL
   ============================================================= */

.pullquote {
  background: var(--teal-900);
  color: var(--gold);
  padding-block: var(--sp-8);
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-style: italic;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  line-height: 1.35;
  margin: 0;
  max-width: 32ch;
  color: var(--gold-100);
  text-wrap: balance;
}
.pullquote blockquote::before {
  content: '\201C';
  display: block;
  font-size: 3em;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 0.2em;
  font-family: 'Georgia', serif;
}
.pullquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--sp-5);
}

/* =============================================================
   ABOUT BLOCK (preview on homepage)
   ============================================================= */

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.about-preview__media {
  aspect-ratio: 3 / 4;
  background: var(--paper-2);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 380px;
  margin-inline: auto;
  width: 100%;
}
.about-preview__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
@media (min-width: 800px) {
  .about-preview__grid {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--sp-8);
  }
  .about-preview__media { max-width: none; }
}

/* =============================================================
   CTA BANNER
   ============================================================= */

.cta-banner {
  background: var(--teal);
  color: var(--gold);
  text-align: left;
}
.cta-banner__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
}
.cta-banner h2 {
  color: var(--gold);
  margin: 0;
  max-width: 22ch;
}
.cta-banner p {
  color: var(--gold-100);
  margin: var(--sp-3) 0 0;
  max-width: 50ch;
  font-size: var(--fs-lg);
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
@media (min-width: 800px) {
  .cta-banner__grid {
    grid-template-columns: 1.5fr auto;
    gap: var(--sp-7);
  }
}

/* =============================================================
   CONTACT CARD / FORM
   ============================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--sp-8);
  }
}

.contact-info dl { margin: 0; }
.contact-info dt {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-2);
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { margin: 0; font-size: var(--fs-base); color: var(--ink); }
.contact-info a { overflow-wrap: anywhere; }

.form {
  background: var(--white);
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
@media (min-width: 720px) { .form { padding: var(--sp-7); } }

.form__field { margin-bottom: var(--sp-5); }
.form__field:last-of-type { margin-bottom: var(--sp-6); }
.form__label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: var(--sp-2);
}
.form__label .req { color: var(--rust); }
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.75em 0.85em;
  background: var(--paper);
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.form__textarea { min-height: 9em; resize: vertical; line-height: var(--lh-normal); }
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,128,128,0.12);
}
.form__consent {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  margin-bottom: var(--sp-5);
}
.form__consent input { margin-top: 0.25em; flex-shrink: 0; }
.form__note {
  font-size: var(--fs-sm);
  color: var(--ink-3);
  background: var(--gold-100);
  border-left: 3px solid var(--gold);
  padding: var(--sp-4);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: var(--sp-5);
}

/* =============================================================
   PROSE (long-form text pages — Impressum/Datenschutz/Über mich)
   ============================================================= */

.prose {
  max-width: var(--content-w);
}
.prose h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-4);
}
.prose h2:first-child { margin-top: 0; }
.eyebrow + h2,
.eyebrow + h3 { margin-top: 0; }
.prose h3 {
  font-size: var(--fs-xl);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}
.prose p, .prose li { color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: var(--fw-semibold); }
.prose a { overflow-wrap: anywhere; word-break: break-word; }

/* =============================================================
   FOOTER
   ============================================================= */

.site-footer {
  background: var(--teal-900);
  color: var(--gold-100);
  padding-block: var(--sp-8) var(--sp-6);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}
@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7);
  }
}
@media (min-width: 960px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--sp-7);
  }
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  color: var(--gold);
  text-decoration: none;
}
.site-footer__brand img { width: 32px; height: 32px; }
.site-footer__brand-name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--gold);
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.site-footer p,
.site-footer ul {
  color: var(--gold-100);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--sp-2); }
.site-footer a {
  color: var(--gold-300);
  text-decoration: none;
}
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.site-footer__bottom {
  border-top: 1px solid rgba(247, 207, 87, 0.15);
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-4);
  color: var(--gold-300);
}

/* =============================================================
   IMAGE BREAK (full-width visual break between sections)
   ============================================================= */

.image-break {
  margin: 0;
  position: relative;
}
.image-break img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}
.image-break figcaption {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 71, 74, 0.85);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
@media (min-width: 800px) {
  .image-break img { max-height: 560px; }
}

/* =============================================================
   PAGE INTRO (top of secondary pages)
   ============================================================= */

.page-intro {
  padding-block: var(--sp-7) var(--sp-7);
  background: var(--paper);
  border-bottom: 1px solid var(--color-line);
}
.page-intro h1 {
  font-size: var(--fs-3xl);   /* inner-page title: one tier below hero h1 */
  margin-bottom: var(--sp-4);
}
.page-intro .lede { max-width: 56ch; }

/* =============================================================
   UTILITY
   ============================================================= */

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  position: static;
  display: inline-block;
  padding: var(--sp-2) var(--sp-3);
  background: var(--gold);
  color: var(--teal-900);
}

/* =============================================================
   FIRA PAGE — supplemental components
   (jump links, response sample, download rows, study dl)
   ============================================================= */

/* ── Jump-to-section links in page-intro ────────────────────── */
.fira-jump {
  margin-top: var(--sp-6);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 2;
}
.fira-jump a {
  color: var(--teal-700);
  text-decoration: none;
  white-space: nowrap;
}
.fira-jump a:hover { color: var(--teal-900); text-decoration: underline; }

/* ── Response sample table ──────────────────────────────────── */
.fira-response-sample {
  background: var(--white);
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  max-width: var(--content-w);
}
.fira-response-sample__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: var(--sp-4);
}
.fira-response-sample__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--color-line);
  font-size: var(--fs-sm);
}
.fira-response-sample__row:last-of-type { border-bottom: 0; }
.fira-rs-pos { color: var(--teal-700); font-weight: var(--fw-medium); }
.fira-rs-key {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  color: var(--ink-3);
  opacity: 0.5;
  text-align: center;
}
.fira-rs-neg { color: var(--rust); text-align: right; font-weight: var(--fw-medium); }
.fira-response-sample__note {
  font-size: var(--fs-xs);
  color: var(--ink-3);
  margin-top: var(--sp-4);
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .fira-response-sample__row { grid-template-columns: 1fr; gap: var(--sp-1); }
  .fira-rs-neg { text-align: left; }
  .fira-rs-key { display: none; }
}

/* ── Download list ──────────────────────────────────────────── */
.fira-dl-group { margin-bottom: var(--sp-5); }
.fira-dl-group__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-1);
  border-bottom: 1px solid var(--color-line);
}
.fira-dl-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-2);
  border-bottom: 1px solid var(--color-line);
  text-decoration: none;
  color: var(--ink-2);
  font-size: var(--fs-sm);
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  border-radius: var(--r-sm);
}
.fira-dl-row:last-child { border-bottom: 0; }
.fira-dl-row:hover { background: var(--teal-100); color: var(--teal-900); }
.fira-dl-row svg { flex-shrink: 0; color: var(--teal-600); }
.fira-dl-row strong {
  color: var(--teal-800);
  font-weight: var(--fw-semibold);
}

/* ── Study download — prominent full-width card ─────────────── */
.fira-study-dl {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.fira-study-dl:hover {
  background: var(--teal-900);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.fira-study-dl__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.fira-study-dl__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.fira-study-dl__text strong {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--gold);
  display: block;
}
.fira-study-dl__text span {
  font-size: var(--fs-xs);
  color: var(--gold-100);
  letter-spacing: 0.02em;
}
.fira-study-dl__arrow {
  flex-shrink: 0;
  color: var(--gold-300);
}

/* =============================================================
   ABOUT PAGE — video embed
   ============================================================= */

.about-video {
  max-width: 748px;
}
.about-video video {
  width: 100%;
  display: block;
  border-radius: var(--r-lg);
  background: var(--ink);
  box-shadow: var(--shadow-md);
}

/* =============================================================
   ABOUT PAGE — Außerhalb der Praxis two-column layout
   ============================================================= */

.about-outside {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: start;
}
.about-outside__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
}
.about-outside__media img {
  width: 100%;
  display: block;
}
@media (min-width: 800px) {
  .about-outside {
    grid-template-columns: 1.5fr 1fr;
    gap: var(--sp-8);
  }
  .about-outside__media {
    max-width: none;
    margin-inline: 0;
  }
}
