/* =============================================================
   Physiotherapie Sandra Steininger — Design Tokens + Site Styles
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --brand-yellow:        #F2C744;
  --brand-yellow-deep:   #D9A91F;
  --brand-yellow-soft:   #FBEBA6;
  --brand-yellow-wash:   #FCF6E1;

  --ink:                 #1F1B16;
  --ink-soft:            #2E2A24;
  --ink-mute:            #5C544A;
  --ink-faint:           #8A8378;

  --sage-900: #2F4034;
  --sage-700: #4F6B57;
  --sage-500: #7A9583;
  --sage-300: #B7CABE;
  --sage-100: #E2EAE3;
  --sage-50:  #F1F5F1;

  --clay-700: #8C5A3F;
  --clay-500: #B5805E;
  --clay-300: #DDB99E;
  --clay-100: #F4E5D6;

  --rose-700: #9C3D5A;
  --rose-300: #E8A0B8;
  --rose-100: #F9CEDF;
  --rose-50:  #FDEAF1;

  --bg:          #FBF8F2;
  --bg-raised:   #FFFFFF;
  --bg-sunken:   #F4EFE5;
  --bg-ink:      #1F1B16;

  --line:        rgba(31, 27, 22, 0.10);
  --line-strong: rgba(31, 27, 22, 0.20);
  --line-faint:  rgba(31, 27, 22, 0.05);

  --success: #5C8A6A;
  --info:    #4F7BA0;
  --warn:    #C68A2E;
  --danger:  #B5523B;

  --fg-1: var(--ink);
  --fg-2: var(--ink-mute);
  --fg-3: var(--ink-faint);
  --fg-on-dark: #FBF8F2;
  --fg-on-yellow: var(--ink);

  --font-display: "DM Serif Text", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --fs-display:  clamp(48px, 6vw, 88px);
  --fs-h1:       clamp(36px, 4.2vw, 60px);
  --fs-h2:       clamp(28px, 3vw, 42px);
  --fs-h3:       clamp(22px, 2.2vw, 28px);
  --fs-h4:       20px;
  --fs-lead:     20px;
  --fs-body:     17px;
  --fs-small:    15px;
  --fs-caption:  13px;
  --fs-eyebrow:  12px;

  --lh-tight:   1.08;
  --lh-snug:    1.22;
  --lh-normal:  1.55;
  --lh-relaxed: 1.7;

  --tracking-tight:   -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-eyebrow: 0.18em;

  --s-1:  4px;   --s-2:  8px;   --s-3:  12px;  --s-4:  16px;
  --s-5:  20px;  --s-6:  24px;  --s-8:  32px;  --s-10: 40px;
  --s-12: 48px;  --s-16: 64px;  --s-20: 80px;  --s-24: 96px;
  --s-32: 128px;

  --r-xs: 4px;   --r-sm: 8px;   --r-md: 14px;  --r-lg: 22px;
  --r-xl: 32px;  --r-pill: 999px;
  --r-blob: 48% 52% 60% 40% / 55% 45% 55% 45%;

  --shadow-xs:     0 1px 2px rgba(31,27,22,0.04);
  --shadow-sm:     0 2px 8px rgba(31,27,22,0.06);
  --shadow-md:     0 8px 24px rgba(31,27,22,0.08);
  --shadow-lg:     0 18px 48px rgba(31,27,22,0.10);
  --shadow-yellow: 0 8px 28px rgba(217,169,31,0.25);

  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    140ms;
  --dur-base:    240ms;
  --dur-slow:    420ms;

  --container:    1200px;
  --container-md: 920px;
  --container-sm: 680px;
  --gutter:       clamp(20px, 4vw, 48px);
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

html, body {
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Type scale ---- */
.t-display, h1.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg-1);
  text-wrap: balance;
}
.t-h1, h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}
.t-h2, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}
.t-h3, h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
}
.t-h4, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-h4);
  line-height: 1.35;
}
.t-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-lead);
  line-height: var(--lh-normal);
  color: var(--fg-2);
  text-wrap: pretty;
}
.t-body, p {
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--fg-1);
  text-wrap: pretty;
}
.t-small   { font-size: var(--fs-small);   line-height: var(--lh-normal); }
.t-caption { font-size: var(--fs-caption); line-height: 1.45; color: var(--fg-3); }
.t-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.t-mark {
  background-image: linear-gradient(transparent 62%, var(--brand-yellow-soft) 62%);
  background-repeat: no-repeat;
  padding: 0 0.05em;
}

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

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

/* ---- Buttons ---- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur-base) var(--ease-out);
  text-decoration: none;
  color: var(--ink);
}
.btn i { width: 18px; height: 18px; }
.btn--primary { background: var(--brand-yellow); color: var(--ink); box-shadow: var(--shadow-xs); }
.btn--primary:hover { background: var(--brand-yellow-deep); box-shadow: var(--shadow-yellow); transform: translateY(-1px); }
.btn--secondary { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn--secondary:hover { background: var(--ink); color: var(--fg-on-dark); }
.btn--ghost { background: transparent; padding: 14px 12px; }
.btn--ghost:hover { color: var(--brand-yellow-deep); }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.eyebrow.center { text-align: center; }
.eyebrow--on-dark { color: var(--brand-yellow); }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background var(--dur-base), backdrop-filter var(--dur-base), box-shadow var(--dur-base);
}
.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { height: 52px; width: auto; display: block; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word strong { font-family: var(--font-body); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; color: var(--ink); text-transform: uppercase; }
.brand-word em { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 18px; color: var(--ink); margin-top: 2px; }
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--ink); text-decoration: none;
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--brand-yellow-deep); transition: width var(--dur-base) var(--ease-out);
}
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }

/* ---- Hero ---- */
.hero {
  position: relative; padding: 80px 0 100px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(110deg, var(--bg) 0%, var(--bg) 38%, rgba(251,248,242,0.85) 50%, rgba(251,248,242,0) 70%),
    url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: right center;
  z-index: 0;
}
.hero-loop {
  position: absolute; right: -120px; top: 30px; width: 720px; opacity: 0.35;
  pointer-events: none; z-index: 1;
}
.hero-inner { position: relative; max-width: 880px; }
.hero h1 { margin: 0 0 24px; }
.hero-lead { max-width: 620px; margin: 0 0 36px; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }
.hero-meta { display: flex; align-items: flex-start; gap: 56px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-meta div,
.hero-meta a { display: flex; flex-direction: column; text-decoration: none; }
.hero-meta a { transition: opacity .15s; }
.hero-meta a:hover { opacity: .7; }
.hero-meta strong { font-family: var(--font-display); font-size: 32px; font-weight: 400; color: var(--ink); }
.hero-meta span { font-size: 12.5px; color: var(--ink-mute); letter-spacing: 0.04em; }

/* ---- Sections ---- */
.section { padding: clamp(64px, 10vw, 128px) 0; }
.section--cream  { background: var(--bg); }
.section--sunken { background: var(--bg-sunken); }
.section--ink    { background: var(--bg-ink); color: var(--fg-on-dark); }
.section--ink h2, .section--ink p, .section--ink li { color: var(--fg-on-dark); }
.section--cta    { background: var(--brand-yellow-wash); text-align: center; padding: clamp(80px, 12vw, 140px) 0; }
.section--bone   { background: var(--bg-sunken); }
.section--band   { padding: 56px 0; background: var(--brand-yellow-wash); }

.cta-inner { max-width: 760px; margin: 0 auto; }
.cta-inner h2 { margin: 0 0 20px; }
.cta-row { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.cta-mail { margin-top: 18px; font-size: 14px; color: var(--ink-mute); }
.cta-mail a { color: var(--ink); }

.section-head { max-width: 700px; margin: 0 0 56px; }
.section-head h2 { margin: 0 0 18px; }

/* ---- Treatment cards ---- */
.treatment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.treatment-grid--five { grid-template-columns: repeat(3, 1fr); }

.treatment-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all var(--dur-base) var(--ease-out);
}
.treatment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.treatment-icon {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--bg-sunken); display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px; color: var(--ink);
}
.treatment-icon i { width: 22px; height: 22px; stroke-width: 1.6; }
.treatment-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 24px; margin: 0; line-height: 1.2; }
.treatment-card p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-mute); flex: 1; }
.treatment-card--feature { background: var(--brand-yellow-wash); border-color: transparent; }
.treatment-card--feature .treatment-icon { background: var(--brand-yellow); }
.treatment-card--rose { background: var(--rose-50); border-color: transparent; }
.treatment-card--rose .treatment-icon { background: var(--rose-100); color: var(--rose-700); }

.treatment-bullets {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 6px;
}
.treatment-bullets li {
  font-size: 13px; line-height: 1.5; color: var(--ink-mute);
  padding-left: 16px; position: relative;
}
.treatment-bullets li::before {
  content: '·'; position: absolute; left: 4px; top: -2px;
  color: var(--brand-yellow-deep); font-weight: 700; font-size: 18px;
}
.treatment-tag {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink); background: var(--brand-yellow-wash);
  padding: 6px 12px; border-radius: 999px;
  align-self: flex-start;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s;
}
a.treatment-tag { text-decoration: none; }
a.treatment-tag:hover { background: var(--brand-yellow); }
.treatment-tag i { width: 13px; height: 13px; stroke-width: 2; }
.treatment-card--rose .treatment-tag { background: var(--rose-100); color: var(--rose-700); }
.treatment-card--rose .treatment-tag:hover { background: var(--rose-300); }

/* ---- Hausbesuche band ---- */
.homevisit-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
}
.homevisit-icon {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--brand-yellow); display: flex; align-items: center; justify-content: center;
  flex: none;
}
.homevisit-icon i { width: 28px; height: 28px; stroke-width: 1.6; }
.homevisit-copy h3 { margin: 0 0 6px; }
.homevisit-copy p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink); max-width: 620px; }
.homevisit-cta { display: flex; gap: 12px; flex: none; flex-wrap: wrap; }

/* ---- About ---- */
.about-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  background-image: url('https://images.unsplash.com/photo-1645005512827-48ff6f97848a?w=900&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.photo-blob {
  position: absolute; bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--brand-yellow);
  border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%;
  opacity: 0.85;
}
.photo-caption {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(31,27,22,0.7); color: var(--fg-on-dark);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  backdrop-filter: blur(8px);
}
.about-copy h2 { margin: 0 0 24px; }
.about-copy .t-lead { margin-bottom: 28px; }

.cv-block { margin-bottom: 24px; }
.cv-block:last-child { margin-bottom: 0; }
.cv-label {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 12px;
}
.cv-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.cv-list li { display: flex; gap: 14px; font-size: 14px; color: var(--ink); line-height: 1.5; }
.cv-year {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute);
  white-space: nowrap; min-width: 92px; padding-top: 2px;
}
.cv-tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.cv-tags li {
  font-size: 13px; padding: 6px 12px;
  background: var(--bg-raised); border: 1px solid var(--line);
  border-radius: 999px; color: var(--ink);
}

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px;
}
.testimonial {
  background: var(--bg-raised); border: 1px solid var(--line);
  border-radius: 22px; padding: 28px; margin: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial blockquote {
  margin: 0; font-family: var(--font-display); font-size: 19px; line-height: 1.4; color: var(--ink);
}
.testimonial figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial figcaption strong { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.testimonial figcaption span { font-size: 12px; color: var(--ink-mute); }
.testimonial--feature { background: var(--sage-100); border-color: transparent; }

/* ---- Reitpädagogik teaser ---- */
.reitp-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.reitp-copy h2 { margin: 0 0 24px; color: var(--fg-on-dark); }
.reitp-copy .t-lead { color: rgba(251,248,242,0.82); margin-bottom: 28px; }
.reitp-copy em { color: var(--brand-yellow); }
.reitp-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.reitp-meta div { display: flex; align-items: center; gap: 8px; color: rgba(251,248,242,0.85); font-size: 14px; }
.reitp-meta i { width: 16px; height: 16px; color: var(--brand-yellow); }
.reitp-photo-frame {
  position: relative;
  aspect-ratio: 4/5; border-radius: 22px; overflow: hidden;
}
.reitp-photo-blob {
  position: absolute; inset: 0;
  background-image: url('https://cdn.pixabay.com/photo/2021/05/19/12/38/horse-6265857_1280.jpg');
  background-size: cover;
  background-position: center;
}
.reitp-photo-caption {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(31,27,22,0.7); color: var(--fg-on-dark);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ---- Locations ---- */
.location-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.location-card {
  background: var(--bg-raised); border: 1px solid var(--line);
  border-radius: 22px; padding: 28px; position: relative;
  display: flex; flex-direction: column; gap: 8px;
}
.location-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-mute);
  background: var(--bg-sunken); padding: 5px 10px; border-radius: 999px;
}
.location-card--alt .location-tag { background: var(--brand-yellow-wash); color: var(--ink); }
.location-card--alt { background: var(--brand-yellow-wash); border-color: transparent; }
.location-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-sunken); display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.location-card--alt .location-icon { background: var(--brand-yellow); }
.location-icon i { width: 22px; height: 22px; stroke-width: 1.6; }
.location-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; margin: 0; line-height: 1.2; }
.location-role { font-size: 13px; color: var(--ink-mute); margin: 0 0 10px; font-weight: 500; }
.location-card address {
  font-style: normal; font-size: 14px; line-height: 1.55; color: var(--ink);
  display: flex; flex-direction: column;
}
.location-hours {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-mute); margin: 12px 0 0;
}
.location-hours i { width: 14px; height: 14px; }

/* ---- Footer ---- */
.site-footer { background: var(--bg-ink); color: var(--fg-on-dark); padding: 64px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(251,248,242,0.1);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(251,248,242,0.7); }
.footer-lockup { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo { height: 44px; display: block; flex: none; }
.footer-word { display: flex; flex-direction: column; line-height: 1; }
.footer-word strong { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; color: var(--bg); text-transform: uppercase; }
.footer-word em { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 20px; color: var(--bg); margin-top: 4px; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-yellow); margin: 0 0 12px; font-weight: 600; }
.footer-col p { font-size: 14px; line-height: 1.7; color: rgba(251,248,242,0.85); margin: 0 0 8px; }
.footer-col a { color: var(--brand-yellow); text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 24px;
  font-size: 12.5px; color: rgba(251,248,242,0.5);
}
.footer-bottom a { color: rgba(251,248,242,0.7); text-decoration: none; }

/* ---- Burger & Mobile Nav ---- */
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  color: var(--ink);
  border-radius: var(--r-sm);
  padding: 0;
  flex-shrink: 0;
  transition: background var(--dur-fast);
}
.burger:hover { background: var(--bg-sunken); }
.burger i { width: 24px; height: 24px; pointer-events: none; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 45;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 0 var(--gutter);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-inner {
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100%;
  gap: 40px;
  padding: 96px 0 56px;
}
.mobile-nav-links {
  display: flex; flex-direction: column;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.2;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--dur-fast);
}
.mobile-nav-links a:first-child { border-top: 1px solid var(--line); }
.mobile-nav-links a:hover { color: var(--brand-yellow-deep); }
.mobile-nav-cta {
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-nav-cta .btn {
  width: 100%; justify-content: center;
  font-size: 16px; padding: 16px 24px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .treatment-grid { grid-template-columns: 1fr 1fr; }
  .treatment-grid--five { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-inner, .reitp-inner { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .homevisit-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-meta { gap: 28px; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .brand-mark { height: 40px; }
  .brand-word strong { font-size: 12px; }
  .brand-word em { font-size: 15px; }
  .hero-meta strong { font-size: 24px; }
  .hero-meta { gap: 16px; }
  .treatment-grid,
  .treatment-grid--five { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .homevisit-inner { gap: 20px; }
  .homevisit-cta { width: 100%; }
  .homevisit-cta .btn { flex: 1; justify-content: center; }
  .cv-year { min-width: 72px; }
}
