/* Urologische Privatpraxis "Urologie & Mehr" — Dr. med. (Syr.) Adnan Dadikhi, Dortmund.
   Design variant: "warm" — generous radii, pill buttons, soft warm shadows.
   Deliberately unlike the HNO-Zehlendorf sheet (variant "precise": tight radii,
   2px card borders, no shadow) so two client pages never read as one template.

   Palette comes from the LOGO, not the website CSS: the logo mark and wordmark
   measure a vermillion around #e24c27 (weighted mean over all saturated pixels).
   --primary is that hue deepened to #c8401a so body-size text and white-on-brand
   buttons both clear 5:1 contrast; the practice's own brown polo/orange badge
   uniform is picked up by --secondary / --brand-deep. */
:root {
  --primary: #c8401a;
  --secondary: color-mix(in srgb, var(--primary) 62%, #2a1108);
  --accent: #e8912f;
  --ink: #26180f;
  --muted: #64514a;
  --brand-deep: color-mix(in srgb, var(--primary) 26%, #2a1710);
  --brand-soft: color-mix(in srgb, var(--primary) 9%, #fffdfb);
  --brand-soft-2: color-mix(in srgb, var(--primary) 4%, #fffdfb);
  --surface: color-mix(in srgb, var(--primary) 6%, #fffdfb);
  --surface-strong: #ffffff;
  --line: color-mix(in srgb, var(--primary) 17%, #ffffff);
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 20px color-mix(in srgb, var(--secondary) 12%, transparent);
  --shadow-md: 0 18px 44px color-mix(in srgb, var(--secondary) 17%, transparent);
  --shadow-lg: 0 30px 66px color-mix(in srgb, var(--secondary) 22%, transparent);
  --shell: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin: 0 auto; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 253, 251, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 14px; font-weight: 800; color: var(--primary);
  font-family: "Plus Jakarta Sans", Inter, sans-serif; }
/* definite height — without it the inline-flex .brand collapses the logo to 0x0 */
.brand img { height: 40px; width: auto; max-width: 210px; max-height: none; object-fit: contain; flex: 0 0 auto; }
.brand-text { display: block; line-height: 1.2; border-left: 1px solid var(--line); padding-left: 14px; }
.brand-text strong { display: block; font-size: .95rem; color: var(--secondary); }
.brand-text span { display: block; font-size: 0.68rem; color: var(--muted); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 600; font-size: 0.94rem; }
.nav-links a { white-space: nowrap; }
.nav-links a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* ---------- buttons: pill shapes carry the "warm" variant ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 28px; border-radius: 999px; white-space: nowrap;
  border: 1px solid transparent; font-weight: 700; line-height: 1; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--secondary) 34%, transparent); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px color-mix(in srgb, var(--secondary) 42%, transparent); }
.btn-secondary { background: #fff; color: var(--primary); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--primary); transform: translateY(-2px); }
.btn-small { min-height: 46px; padding: 0 22px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-call { background: #fff; color: var(--primary); border: 2px solid color-mix(in srgb, var(--primary) 30%, #fff); font-weight: 700; }
.btn-call:hover { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 5%, #fff); transform: translateY(-2px); }
.btn-call .call-ic { font-size: 1.05em; line-height: 1; margin-right: 2px; }
.header-actions .btn-call { padding: 10px 16px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--brand-soft) 0%, #ffffff 58%); }
.hero::before { content: ""; position: absolute; top: -24%; right: -8%; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary) 13%, transparent), transparent 66%); z-index: 0; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; padding: clamp(46px, 6vw, 82px) 0; }
.hero-copy { max-width: 580px; }
.hero-sub { max-width: 33rem; margin: 20px 0 0; color: var(--muted); font-size: 1.13rem; }
.hero-bullets { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 12px; max-width: 33rem; }
.hero-bullets li { display: flex; gap: 12px; align-items: center; font-weight: 600; color: var(--ink); }
.hero-bullets li::before { content: "\2713"; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%;
  background: var(--brand-soft); color: var(--primary); font-size: 0.72rem; font-weight: 800; flex: none;
  border: 1px solid var(--line); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.trust-note { margin: 20px 0 0; color: var(--muted); font-size: 0.92rem; }
.hero-figure { position: relative; }
.hero-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg); background: linear-gradient(150deg, var(--brand-soft), color-mix(in srgb, var(--primary) 18%, #ffffff)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption { margin: 12px 2px 0; color: var(--muted); font-size: .84rem; }
.hero-stat { position: absolute; right: -22px; bottom: -26px; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-md); padding: 15px 22px; display: grid; gap: 3px; }
.hero-stat-value { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; color: var(--primary); font-size: 1.5rem; line-height: 1; letter-spacing: -.01em; }
.hero-stat-label { color: var(--muted); font-size: 0.78rem; max-width: 190px; line-height: 1.4; }

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 22px; padding: 8px 16px;
  border-radius: 100px; color: var(--secondary); background: var(--brand-soft); border: 1px solid var(--line);
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
h1, h2, h3 { margin: 0; line-height: 1.14; letter-spacing: -0.02em; color: var(--secondary); font-family: "Plus Jakarta Sans", Inter, sans-serif; }
h1 { font-size: clamp(2.05rem, 4.2vw, 3.05rem); font-weight: 800; max-width: 19ch; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); font-weight: 700; max-width: 24ch; }
h3 { font-size: 1.16rem; font-weight: 700; }
.section-head { max-width: 740px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center h2 { margin-left: auto; margin-right: auto; max-width: 30ch; }
.section-head p { margin: 16px 0 0; color: var(--muted); font-size: 1.05rem; }
.section-head .eyebrow, .hero .eyebrow { margin-bottom: 22px; }
.lead-para { color: var(--muted); font-size: 1.02rem; margin: 0 0 16px; }
.lead-para:last-of-type { margin-bottom: 0; }
section.band { padding: clamp(64px, 7vw, 104px) 0; }

/* ---------- trust strip ---------- */
.trust-strip { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip-inner { display: flex; flex-wrap: wrap; gap: 14px 38px; justify-content: center; padding: 22px 0; }
.trust-pill { display: inline-flex; align-items: center; gap: 9px; color: var(--secondary); font-weight: 600; font-size: 0.95rem; }
.trust-pill::before { content: "\2726"; color: var(--accent); }

/* ---------- cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--primary) 32%, #fff); }
.card h3 { margin-bottom: 10px; }
.card p, .text-muted { color: var(--muted); }
.card-icon { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-soft), color-mix(in srgb, var(--primary) 17%, #ffffff));
  color: var(--primary); margin-bottom: 18px; }
.card-icon svg { width: 26px; height: 26px; }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; }
#stosswelle .split { align-items: start; }
.split.wide-left { grid-template-columns: 1.05fr 0.95fr; }

/* ---------- counters ---------- */
.counters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.counter { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--surface-strong); box-shadow: var(--shadow-sm); }
.counter-value { display: block; color: var(--primary); font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.6rem); line-height: 1; letter-spacing: -0.02em; }
.counter-label { display: block; margin-top: 10px; color: var(--muted); font-size: 0.92rem; }

/* ---------- method / image splits ---------- */
.method { background: linear-gradient(180deg, var(--brand-soft-2), #fff); }
.method-image { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--surface); }
.method-image img { width: 100%; height: 100%; object-fit: cover; }
.method-image.tall { aspect-ratio: 4 / 4.1; }
.figure-note { margin: 12px 4px 0; color: var(--muted); font-size: .84rem; }
.point-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.point-list li { display: flex; gap: 12px; color: var(--ink); font-weight: 600; align-items: flex-start; }
.point-list li::before { content: "\2713"; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 9px;
  background: var(--brand-soft); color: var(--primary); font-size: 0.74rem; font-weight: 800; flex: none; border: 1px solid var(--line); }

/* ---------- accordion ---------- */
.treatments-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.treatments-grid .section-head { position: sticky; top: 100px; margin-bottom: 0; }
.accordion { display: grid; gap: 10px; }
details { border: 1px solid color-mix(in srgb, var(--primary) 34%, #ffffff); border-radius: 14px; background: #fff; padding: 0 20px; transition: box-shadow .25s ease, border-color .25s ease; }
details[open] { box-shadow: var(--shadow-sm); border-color: color-mix(in srgb, var(--primary) 30%, #ffffff); }
summary { cursor: pointer; padding: 16px 0; font-weight: 700; font-size: 0.99rem; color: var(--secondary); list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%;
  background: var(--brand-soft); color: var(--primary); font-weight: 700; transition: transform .3s ease, background .3s ease, color .3s ease; flex: none; }
details[open] summary::after { transform: rotate(45deg); background: var(--primary); color: #fff; }
details p { margin: 0 0 16px; color: var(--muted); font-size: 0.95rem; }
.leistungen-figure { margin: 28px 0 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--surface); }
.leistungen-figure img { display: block; width: 100%; height: 250px; object-fit: cover; }
.cta-hint { color: var(--muted); font-size: .88rem; }
.leistungen-cta { margin-top: 22px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps .card { padding: 32px 28px; }
.step-number { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-weight: 800; margin-bottom: 18px; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; }
/* three distinct frames: one large plus two stacked. Every practice photo
   appears exactly once on the page — two of the six were near-duplicates. */
.gallery-grid.gallery-3 { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 215px; }
.gallery-grid.gallery-3 figure:first-child { grid-column: span 2; grid-row: span 2; }
/* the second frame has a wall painting along its top edge; a centred crop
   turns it into a headless figure — bias the crop downward into the room */
.gallery-grid.gallery-3 figure:nth-child(2) img { object-position: center 62%; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--surface); cursor: zoom-in; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure::after { content: "\002B"; position: absolute; right: 10px; bottom: 10px; width: 32px; height: 32px;
  display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--primary);
  font-size: 1.15rem; font-weight: 700; opacity: 0; transition: opacity .2s ease; pointer-events: none; }
.gallery-grid figure:hover::after, .gallery-grid figure:focus-visible::after { opacity: 1; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.team-grid .card { display: flex; gap: 22px; align-items: flex-start; }
.doc-photo { width: 104px; height: 130px; border-radius: 16px; object-fit: cover; object-position: center 14%; flex: none; box-shadow: var(--shadow-sm); }
.doc-role { color: var(--primary); font-weight: 700; font-size: 0.86rem; margin: 5px 0 10px; letter-spacing: .01em; }
.team-photo { max-width: 640px; margin: 26px auto 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.team-photo img { display: block; width: 100%; height: auto; }
.team-photo figcaption { padding: 12px 16px 15px; font-size: .9rem; color: var(--muted); text-align: center; }
.team-sec .info-box { margin-top: 28px; }

/* ---------- info box ---------- */
.info-box { display: flex; gap: 16px; align-items: center; background: linear-gradient(135deg, var(--brand-soft), #fff);
  border: 1px solid var(--line); border-left: 4px solid var(--accent); padding: 24px 28px; border-radius: 16px; max-width: 900px; margin: 0 auto; }
.info-box .info-ic { width: 44px; height: 44px; border-radius: 13px; background: #fff; display: grid; place-items: center;
  color: var(--accent); flex: none; box-shadow: var(--shadow-sm); font-weight: 800; }
/* the info-box carries its own light surface — it must never inherit a dark band's
   text colour (that is white-on-white). Ships with the component, deliberately. */
.info-box p, .band-dark .info-box p, .final-cta .info-box p { color: var(--ink); }
.info-box p { margin: 0; font-size: 0.96rem; }
.band-dark .info-box, .final-cta .info-box { background: #fff; }
.band-dark .info-box a, .final-cta .info-box a { color: var(--primary); }

/* ---------- credential row (no seal image: see the report — the practice's
   praxis+award seal expired Q1/2026, so it is stated as a dated fact instead) --- */
.cred-badges { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 22px 0 0; }
.cred-badges li { font-size: .82rem; font-weight: 600; color: var(--secondary); background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; }

/* ---------- final CTA ---------- */
.final-cta { color: #fff; }
.final-cta .shell { background: linear-gradient(135deg, var(--secondary), var(--brand-deep)); border-radius: var(--radius-lg);
  padding: clamp(42px, 5vw, 66px); position: relative; overflow: hidden; }
.final-cta h2 { color: #fff; max-width: 22ch; }
.final-cta p { color: rgba(255,255,255,0.86); }
.final-cta .eyebrow { color: #fff; background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }
.final-cta .btn-primary { background: #fff; color: var(--primary); box-shadow: 0 12px 28px rgba(0,0,0,.24); }
.final-cta .btn-call { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.final-cta .btn-call:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.final-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- FAQ + contact ---------- */
.faq-contact { background: linear-gradient(180deg, var(--brand-soft-2), #fff); }
.faq-contact .section-head, .faq-contact h2 { margin-bottom: 30px; }
.faq-contact .accordion { margin-top: 26px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; color: var(--muted); }
.contact-list li { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-list a { color: inherit; }
.contact-list a:hover { color: var(--primary); text-decoration: underline; }
.contact-card .btn { width: 100%; margin-top: 22px; }
.hours { margin-top: 22px; }
.hours strong { display: block; color: var(--secondary); margin-bottom: 8px; }
.hours table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.hours td { padding: 6px 0; color: var(--muted); vertical-align: top; }
.hours td:first-child { width: 42%; color: var(--ink); font-weight: 600; }
.muted { color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { background: var(--brand-deep); color: rgba(255,255,255,0.74); padding: 32px 0; }
.site-footer a:hover { color: #fff; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-links { display: flex; gap: 18px; }

/* ---------- section rhythm: hero -> light -> tinted+motif -> white ->
     tinted+motif -> dark+motif -> tinted -> dark final CTA ---------- */
.band-tinted { background: linear-gradient(160deg, var(--brand-soft) 0%, #ffffff 56%); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.band-tinted > .shell { position: relative; z-index: 1; }
.band-tinted::before { content: ""; position: absolute; top: -30%; right: -6%; width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary) 12%, transparent), transparent 66%); z-index: 0; }
.band-tinted .card, .band-tinted details { background: #fff; }
.band-wash { background:
  radial-gradient(1200px 420px at 85% -10%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 60%),
  linear-gradient(180deg, #ffffff, var(--brand-soft-2)); }
.band-dark { background: linear-gradient(150deg, var(--brand-deep), color-mix(in srgb, var(--secondary) 90%, #140702));
  color: #f4e9e2; position: relative; overflow: hidden; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .section-head p { color: rgba(255,255,255,.80); }
/* the eyebrow pill has a near-white background — recolouring only the text would
   put light type on a white pill. Override the background too. */
.band-dark .eyebrow { color: #fff; background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }
.band-dark .steps .card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); box-shadow: none; }
.band-dark .steps .card p { color: rgba(255,255,255,.78); }
.band-dark .steps .card:hover { border-color: rgba(255,255,255,.4); transform: translateY(-6px); }
.band-dark .step-number { background: #fff; color: var(--primary); }
.band-dark > .shell, .final-cta > .shell { position: relative; z-index: 1; }

/* ---------- lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center;
  background: rgba(26,10,4,.92); padding: 4vmin; }
.lb.is-open { display: flex; }
.lb img { max-width: 100%; max-height: 84vh; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-cap { position: absolute; left: 0; right: 0; bottom: 3vmin; text-align: center; color: #fff; font-size: .95rem; padding: 0 6vmin; }
.lb button { position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3);
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; display: grid; place-items: center; }
.lb button:hover { background: rgba(255,255,255,.26); }
.lb-close { top: 3vmin; right: 3vmin; }
.lb-prev { left: 3vmin; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vmin; top: 50%; transform: translateY(-50%); }

/* ---------- booking + legal pages ---------- */
.booking-main, .legal-main { padding: clamp(44px, 5vw, 76px) 0 80px; }
.booking-shell { max-width: 980px; }
.booking-split { display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: start; margin-top: 32px; }
.booking-embed { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow-sm); min-height: 300px; }
.call-card { background: linear-gradient(160deg, var(--primary), var(--secondary)); color: #fff; border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.call-eyebrow { display: block; font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-bottom: 12px; }
.call-number { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.4rem; font-weight: 800; margin: 14px 0 4px; }
.call-card .hours { margin-top: 18px; border-top: 1px solid rgba(255,255,255,.22); padding-top: 16px; }
.call-card .hours strong, .call-card .hours td:first-child { color: #fff; }
.call-card .hours td { color: rgba(255,255,255,.84); }
.call-note { margin-top: 16px; font-size: .88rem; color: rgba(255,255,255,.86); line-height: 1.55; }
.btn-call-lg { width: 100%; justify-content: center; background: #fff; color: var(--primary); box-shadow: none; font-size: 1.05rem; border: none; }
.legal-shell { max-width: 820px; }
.legal-shell h1 { margin: 0 0 28px; }
.legal-shell h2 { margin: 38px 0 12px; font-size: 1.35rem; }
.legal-shell h3 { margin: 26px 0 10px; font-size: 1.08rem; }
.legal-shell p { margin: 0 0 14px; color: var(--muted); line-height: 1.75; }
.legal-shell ul { margin: 0 0 16px; padding-left: 22px; color: var(--muted); line-height: 1.75; }
.legal-shell a { color: var(--primary); word-break: break-word; }

/* ---------- scroll reveal ---------- */
.js .card, .js .counter, .js .gallery-grid figure, .js .method-image, .js .section-head, .js .info-box, .js .accordion, .js .team-photo {
  opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease;
}
.js .is-in { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .js .card, .js .counter, .js .gallery-grid figure, .js .method-image, .js .section-head, .js .info-box, .js .accordion, .js .team-photo {
    opacity: 1; transform: none; transition: none; }
}

/* ---------- mobile CTA: hidden until effects.js adds body.lp-cta-on ---------- */
.mobile-cta { display: none; gap: 8px; }
.mobile-cta .btn { flex: 1 1 0; justify-content: center; }

@media (max-width: 1000px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .gallery-grid.gallery-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.gallery-3 figure:first-child { grid-column: span 2; grid-row: span 1; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { max-width: 520px; }
  .hero-stat { right: 12px; bottom: -22px; }
  .split, .split.wide-left, .treatments-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps, .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid .section-head { position: static; }
  .booking-split { grid-template-columns: 1fr; }
  .booking-aside { order: -1; }
  .call-card { position: static; }
  /* the name plate overlays the photo on desktop; on a phone it lands on the
     doctor's face — move it below the image instead */
  .hero-stat { position: static; left: auto; bottom: auto; margin-top: 16px;
    display: flex; align-items: baseline; gap: 10px; box-shadow: var(--shadow-sm); padding: 13px 18px; }
  .hero-stat-label { max-width: none; }
}
@media (max-width: 760px) {
  .header-actions .btn-call { display: none; }
  /* Gated behind body.lp-cta-on (effects.js sets it once the hero is scrolled
     past). Ungated, this bar covers the hero from the very first pixel — that
     was the "floating button visible at page top" on Osmanoglou, 2026-07-31. */
  body.lp-cta-on .mobile-cta { position: fixed; left: 12px; right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 40; display: flex; animation: lp-cta-in .25s ease; }
  body.lp-cta-on { padding-bottom: 86px; }
  .mobile-cta .btn { width: auto; white-space: nowrap; padding: 14px 16px; font-size: .95rem; }
  .mobile-cta .btn-call { flex: 0 0 auto; }
  .mobile-cta .btn-primary { flex: 1 1 auto; }
  .gallery-grid { grid-auto-rows: 150px; }
}
@media (max-width: 560px) {
  .shell { width: min(100% - 32px, var(--shell)); }
  .header-inner { min-height: 68px; }
  .brand img { height: 34px; }
  .brand-text { display: none; }
  .header-actions .btn-small:not(.btn-call) { display: none; }
  .header-actions .btn-call { display: inline-flex; padding: 8px 14px; font-size: .9rem; }
  .hero-sub { font-size: 1.02rem; }
  .cards-grid, .trust-strip-inner, .counters { grid-template-columns: 1fr; }
  .gallery-grid figure:first-child { grid-column: span 1; grid-row: span 1; }
  .team-grid .card { flex-direction: column; }
  .footer-inner, .footer-links { flex-direction: column; text-align: center; }
  .lb-prev { left: 2vmin; } .lb-next { right: 2vmin; } .lb button { width: 40px; height: 40px; }
}

/* cost transparency under the flagship figure — the qualification lever, and it
   fills the dead column the centred split used to leave */
.cost-note { margin-top: 22px; padding: 20px 22px; background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--accent); border-radius: 16px; box-shadow: var(--shadow-sm); }
.cost-note strong { display: block; color: var(--secondary); font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 1.02rem; margin-bottom: 6px; }
.cost-note p { margin: 0; color: var(--muted); font-size: .93rem; }

/* the Leistungen head is sticky, so its column runs short next to a tall
   accordion; a phone nudge fills it with something a patient can use */
.side-note { margin-top: 30px; padding: 22px 24px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.side-note p { margin: 0 0 16px; color: var(--muted); font-size: .94rem; }
.side-note .btn { width: 100%; }

/* ---------- privacy note under the embedded request form ---------- */
.form-note { margin: 6px 14px 14px; font-size: .82rem; line-height: 1.6; color: var(--muted); }
.form-note a { color: var(--primary); }
