/* ============================================================================
   ROLLER 3000 — stylesheet
   ----------------------------------------------------------------------------
   ONE source of truth for the whole look: edit the :root tokens below and the
   entire site re-skins. No colors or sizes are hard-coded anywhere else — every
   rule references var(--token). Keep it that way.
   ============================================================================ */

:root {
  /* ── Brand colors — "Electric Mint & Ink" ───────────────────────────────── */
  --accent:        #10b981;   /* fresh mint — primary action color            */
  --accent-strong: #0e9f74;   /* darker mint — hover/active                   */
  --accent-tint:   #d1fae5;   /* pale mint — soft backgrounds / chips         */
  --accent-glow:   #10b98140;

  /* secondary palette */
  --accent-2:        #065f46;   /* deep forest emerald — section labels & step numbers */
  --accent-2-strong: #064e3b;
  --accent-3:        #f5b500;   /* sunny amber — small highlights */

  --ink:           #0f1419;   /* near-black — headings & strong text          */
  --paper:         #fafaf7;   /* warm off-white — page background             */
  --surface:       #ffffff;   /* cards / raised surfaces                      */
  --surface-alt:   #f3f4f1;   /* alternating section background               */
  --soft:          #6b7280;   /* muted grey — secondary text                  */
  --line:          #e6e7e2;   /* hairline borders                             */

  --white:         #ffffff;
  --danger:        #e11d48;

  /* ── Typography ─────────────────────────────────────────────────────────── */
  --font-sans:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Outfit", var(--font-sans);

  --fs-hero:   clamp(2.25rem, 6vw, 4rem);
  --fs-h2:     clamp(1.6rem, 3.5vw, 2.5rem);
  --fs-h3:     clamp(1.15rem, 2vw, 1.4rem);
  --fs-lead:   clamp(1.05rem, 1.6vw, 1.3rem);
  --fs-body:   1rem;
  --fs-small:  0.875rem;

  --lh-tight:  1.1;
  --lh-snug:   1.3;
  --lh-body:   1.65;

  /* ── Spacing scale ──────────────────────────────────────────────────────── */
  --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: 4.5rem;
  --sp-9: 7rem;

  /* ── Radii ──────────────────────────────────────────────────────────────── */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* ── Shadows ────────────────────────────────────────────────────────────── */
  --shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.06), 0 1px 3px rgba(15, 20, 25, 0.05);
  --shadow-md: 0 6px 18px rgba(15, 20, 25, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 20, 25, 0.14);

  /* ── Layout ─────────────────────────────────────────────────────────────── */
  --container: 1120px;
  --header-h: 68px;
  --transition: 160ms ease;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--sp-4)); }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: var(--r-sm); }

/* ── Typography helpers ──────────────────────────────────────────────────────*/
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: var(--lh-tight); color: var(--ink); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
p  { color: var(--ink); }
.muted { color: var(--soft); }
.accent { color: var(--accent); }

/* ── Layout primitives ───────────────────────────────────────────────────────*/
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--alt { background: var(--surface-alt); }
.section__head { max-width: 46rem; margin-bottom: var(--sp-5); }
.section__head .eyebrow { color: var(--accent-2); }
.section__head p { color: var(--soft); font-size: var(--fs-lead); margin-top: var(--sp-3); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: var(--sp-2);
}

/* ── Buttons ─────────────────────────────────────────────────────────────────*/
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 0.8rem 1.4rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-body);
  line-height: 1;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--accent); color: var(--white); box-shadow: 0 6px 16px var(--accent-glow); }
.btn--primary:hover { background: var(--accent-strong); }

.btn--ghost { background: var(--surface); color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-strong); }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: #1c2530; }

/* official brand-colored contact buttons */
.btn--wa { background: #25d366; color: var(--white); box-shadow: 0 6px 16px rgba(37,211,102,0.28); }
.btn--wa:hover { background: #1fb457; }
.btn--tg { background: #229ed9; color: var(--white); box-shadow: 0 6px 16px rgba(34,158,217,0.28); }
.btn--tg:hover { background: #1c8dc2; }

.btn--block { width: 100%; }
.btn--lg { padding: 1rem 1.7rem; font-size: var(--fs-lead); }

/* ── Header / nav ────────────────────────────────────────────────────────────*/
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; gap: var(--sp-5); height: 100%; }

.brand { display: flex; align-items: center; gap: var(--sp-2); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); flex-shrink: 0; white-space: nowrap; }
.brand svg, .brand img { height: 32px; width: auto; }

.nav { display: flex; align-items: center; gap: var(--sp-4); margin-left: auto; }
.nav__links { display: flex; align-items: center; gap: var(--sp-4); }
.nav__links a { font-weight: 500; color: var(--ink); white-space: nowrap; transition: color var(--transition); }
.nav__links a:hover { color: var(--accent-strong); }
.nav-only-mobile { display: none; } /* Termin link shown only inside the mobile burger menu */

.nav__actions { display: flex; align-items: center; gap: var(--sp-3); }

/* language toggle */
.lang-toggle {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: var(--r-pill);
  overflow: hidden; background: var(--surface);
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-small);
}
.lang-toggle button { padding: 0.35rem 0.7rem; color: var(--soft); transition: background var(--transition), color var(--transition); }
.lang-toggle button[aria-pressed="true"] { background: var(--ink); color: var(--white); }

/* header icon button (Instagram) */
.icon-btn { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: var(--r-pill); color: var(--ink); transition: color var(--transition), background var(--transition); }
.icon-btn:hover { color: var(--accent-2-strong); background: var(--surface-alt); }
.icon-btn svg { width: 22px; height: 22px; }

/* mobile nav toggle */
.nav-burger { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: var(--transition);
}
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after  { position: absolute; top: 6px; }

/* ── Hero ────────────────────────────────────────────────────────────────────*/
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-7); align-items: center; padding-block: clamp(2rem, 4vw, 3.5rem); }
.hero h1 { font-size: var(--fs-hero); margin-bottom: var(--sp-4); }
.hero h1 .accent { color: var(--accent); }
.hero__lead { font-size: var(--fs-lead); color: var(--soft); max-width: 34rem; margin-bottom: var(--sp-5); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--sp-4); color: var(--soft); font-size: var(--fs-small); }
.hero__trust li { display: flex; align-items: center; gap: var(--sp-2); }
.hero__trust li::before { content: "✓"; color: var(--accent-3); font-weight: 700; }

.hero__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: var(--surface-alt);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: var(--sp-4); bottom: var(--sp-4);
  background: var(--surface); color: var(--ink); padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md); box-shadow: var(--shadow-md); font-family: var(--font-display); font-weight: 600; font-size: var(--fs-small);
}
.hero__badge strong { color: var(--accent-2-strong); }

/* ── Cards / services grid ───────────────────────────────────────────────────*/
.grid { display: grid; gap: var(--sp-4); }
.grid--services { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid--tips { grid-template-columns: repeat(2, 1fr); }
.grid--tips .card h3 { overflow-wrap: anywhere; hyphens: auto; }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--sp-5); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-tint); }
.card__icon {
  width: 46px; height: 46px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-strong); margin-bottom: var(--sp-3);
}
.card__icon svg { width: 24px; height: 24px; }
/* official brand-logo colors (WhatsApp / Telegram / Instagram) */
.card__icon--wa { background: #e7f9ee; color: #25d366; }
.card__icon--tg { background: #e6f4fb; color: #229ed9; }
.card__icon--ig { background: #fdeef4; }
.brand-tg { color: #229ed9; }
.btn__ic { width: 20px; height: 20px; }
.card h3 { margin-bottom: var(--sp-2); }
.card p { color: var(--soft); font-size: var(--fs-small); }
a.card { display: block; color: inherit; text-decoration: none; }
a.card h3 { color: var(--ink); }
.card__more { display: inline-block; margin-top: var(--sp-3); color: var(--accent-strong); font-family: var(--font-display); font-weight: 600; font-size: var(--fs-small); }

.note { color: var(--soft); font-size: var(--fs-small); margin-top: var(--sp-4); }

/* ── Steps ───────────────────────────────────────────────────────────────────*/
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); counter-reset: step; }
.step { position: relative; padding-left: 62px; min-height: 46px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 46px; height: 46px; border-radius: var(--r-pill);
  background: var(--accent-2); color: var(--white);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.step h3 { margin-bottom: var(--sp-2); }
.step p { color: var(--soft); }

/* ── About Nino ──────────────────────────────────────────────────────────────*/
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--sp-7); align-items: center; }
.about__photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3 / 4; background: var(--surface-alt); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__body p + p { margin-top: var(--sp-4); color: var(--soft); }
.about__body .lead { font-size: var(--fs-lead); color: var(--ink); }

/* ── Area ────────────────────────────────────────────────────────────────────*/
.chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-5); }
.chip { background: var(--accent-tint); color: var(--accent-strong); border-radius: var(--r-pill); padding: 0.4rem 0.9rem; font-size: var(--fs-small); font-weight: 600; font-family: var(--font-display); }
a.chip { text-decoration: none; transition: background var(--transition), color var(--transition); }
a.chip:hover { background: var(--accent); color: var(--white); }

/* ── Intake form ─────────────────────────────────────────────────────────────*/
.intake { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-7); align-items: start; }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-6); box-shadow: var(--shadow-md); }
.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-small); margin-bottom: var(--sp-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 0.9rem; font: inherit; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

.form__send { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-2); }
.photo-hint { display: flex; gap: var(--sp-3); align-items: flex-start; margin-top: var(--sp-4); padding: var(--sp-4); background: var(--accent-tint); border-radius: var(--r-md); color: var(--ink); font-size: var(--fs-small); }
.photo-hint svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent-strong); }

.intake__aside { color: var(--soft); }
.intake__aside h3 { color: var(--ink); margin-bottom: var(--sp-3); }
.intake__aside ul { display: grid; gap: var(--sp-3); }
.intake__aside li { display: flex; gap: var(--sp-3); align-items: flex-start; }
.intake__aside li::before { content: "→"; color: var(--accent-strong); font-weight: 700; }

/* ── Booking (Cal.com consent) ───────────────────────────────────────────────*/
.booking__embed { border: 1px dashed var(--line); border-radius: var(--r-lg); background: var(--surface); padding: var(--sp-7); text-align: center; }
.booking__embed .muted { max-width: 32rem; margin: var(--sp-3) auto var(--sp-5); }
.cal-frame { display: block; width: 100%; min-height: 760px; border: 0; border-radius: var(--r-lg); box-shadow: var(--shadow-md); background: var(--surface); }
.cal-cta { display: grid; gap: var(--sp-3); justify-items: center; text-align: center; padding: var(--sp-6); border-radius: var(--r-lg); box-shadow: var(--shadow-md); background: var(--surface); border: 1px solid var(--line); }
.cal-cta .muted { max-width: 32rem; }

/* ── FAQ ─────────────────────────────────────────────────────────────────────*/
.faq { display: grid; gap: var(--sp-3); max-width: 50rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5); box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-display); font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent-strong); font-size: 1.4rem; line-height: 1; transition: transform var(--transition); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--soft); margin-top: var(--sp-3); }

/* ── Gallery ─────────────────────────────────────────────────────────────────*/
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.gallery picture { display: block; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-sm); display: block; }
/* clickable thumbnail → opens the lightbox */
.gallery__item { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: var(--r-md); overflow: hidden; }
.gallery__item img { transition: transform var(--transition); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ── Lightbox (dependency-free) ──────────────────────────────────────────────*/
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  background: rgba(15, 20, 25, 0.93); padding: clamp(0.75rem, 4vw, 2.5rem); }
.lightbox.is-open { display: flex; }
.lightbox__fig { margin: 0; max-width: 1200px; width: 100%; display: grid; justify-items: center; gap: var(--sp-3); }
.lightbox__fig img { max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: var(--r-md); box-shadow: var(--shadow-lg); background: var(--surface-alt); }
.lightbox__cap { color: rgba(255,255,255,0.85); font-size: var(--fs-small); text-align: center; max-width: 40rem; }
.lightbox button { position: absolute; display: inline-grid; place-items: center; width: 48px; height: 48px;
  border-radius: var(--r-pill); background: rgba(255,255,255,0.14); color: #fff; backdrop-filter: blur(4px); transition: background var(--transition); }
.lightbox button:hover { background: rgba(255,255,255,0.28); }
.lightbox button svg { width: 24px; height: 24px; }
.lightbox__close { top: clamp(0.75rem, 3vw, 1.5rem); right: clamp(0.75rem, 3vw, 1.5rem); }
.lightbox__prev { left: clamp(0.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(0.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) { .lightbox__prev { left: 0.4rem; } .lightbox__next { right: 0.4rem; } .lightbox button { width: 42px; height: 42px; } }

/* ── Footer ──────────────────────────────────────────────────────────────────*/
.site-footer { background: var(--ink); color: #c9ccce; padding-block: var(--sp-7) var(--sp-6); margin-top: var(--sp-6); }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-6); }
.site-footer h4 { font-family: var(--font-display); color: var(--white); font-size: var(--fs-small); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--sp-3); }
.site-footer a { color: #c9ccce; transition: color var(--transition); }
.site-footer a:hover { color: var(--accent); }
.site-footer .brand { color: var(--white); margin-bottom: var(--sp-3); }
.site-footer ul { display: grid; gap: var(--sp-2); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: var(--sp-6); padding-top: var(--sp-4); display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between; font-size: var(--fs-small); color: #8a8f93; }

/* ── Mobile sticky action bar ────────────────────────────────────────────────*/
.sticky-bar { display: none; }

/* ── Legal pages ─────────────────────────────────────────────────────────────*/
.legal { max-width: 50rem; margin-inline: auto; padding-block: var(--sp-8); }
.legal h1 { font-size: var(--fs-h2); margin-bottom: var(--sp-5); }
.legal h2 { font-size: var(--fs-h3); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.legal p, .legal li { color: var(--ink); margin-bottom: var(--sp-3); }
.legal ul { list-style: disc; padding-left: var(--sp-5); }
.legal a { color: var(--accent-strong); text-decoration: underline; }
.legal .back { display: inline-block; margin-bottom: var(--sp-5); color: var(--soft); font-weight: 600; }

/* ── Article / Tipps + district landing pages ───────────────────────────────*/
.article { max-width: 50rem; margin-inline: auto; padding-block: var(--sp-7); }
.article .back { display: inline-block; margin-bottom: var(--sp-4); color: var(--soft); font-weight: 600; }
.article__head { margin-bottom: var(--sp-6); }
.article__head h1 { font-size: var(--fs-h2); margin: var(--sp-3) 0; }
.article__lead { font-size: var(--fs-lead); color: var(--soft); }
.article h2 { font-size: var(--fs-h3); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.article h3 { margin-top: var(--sp-5); margin-bottom: var(--sp-2); }
.article p, .article li { color: var(--ink); margin-bottom: var(--sp-3); line-height: 1.7; }
.article ul { list-style: disc; padding-left: var(--sp-5); margin-bottom: var(--sp-4); }
.article strong { font-weight: 600; }

.faq { margin-top: var(--sp-7); }
.faq__item { border-top: 1px solid var(--line); padding: var(--sp-4) 0; }
.faq__item h3 { margin: 0 0 var(--sp-2); font-size: var(--fs-body); }
.faq__item p { margin: 0; color: var(--soft); }

.cta-panel { margin-top: var(--sp-7); background: var(--surface-alt); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-6); text-align: center; }
.cta-panel h2 { margin-top: 0; }
.cta-panel p { color: var(--soft); max-width: 36rem; margin: var(--sp-3) auto 0; }
.cta-panel .btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-4); }

.related { margin-top: var(--sp-7); }
.related h2 { font-size: var(--fs-h3); margin-bottom: var(--sp-4); }
.related__links { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-3); }
.related__links a { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-4); font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform var(--transition), border-color var(--transition); }
.related__links a:hover { transform: translateY(-3px); border-color: var(--accent-tint); }

/* ── Reviews ─────────────────────────────────────────────────────────────────*/
.grid--reviews { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-5); box-shadow: var(--shadow-sm); margin: 0; }
.review__stars { color: var(--accent-strong); font-size: 1.1rem; letter-spacing: 0.12em; margin-bottom: var(--sp-3); }
.review blockquote { margin: 0 0 var(--sp-3); color: var(--ink); line-height: 1.6; }
.review figcaption { color: var(--soft); font-size: var(--fs-small); font-weight: 600; font-family: var(--font-display); }

/* ── i18n visibility (JS swaps [lang] on <html>) ─────────────────────────────*/
[data-i18n] { } /* text set via JS; no layout impact */

/* ── Reveal-on-scroll (progressive enhancement) ──────────────────────────────*/
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 16 / 10; }
  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 360px; aspect-ratio: 4 / 3; }
  .intake { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: var(--sp-6); }
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* collapse desktop nav, show burger + slide-down menu */
  .nav__links {
    display: none;
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: var(--sp-3);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: var(--sp-3); border-radius: var(--r-sm); }
  .nav__links a:hover { background: var(--surface-alt); }
  .nav-burger { display: inline-flex; }
  .nav { margin-left: auto; gap: var(--sp-2); }
  .nav__actions { gap: var(--sp-2); }
  /* declutter header on mobile: drop the icon buttons AND the wide "Termin buchen"
     button (it overflowed the 390px row). Booking stays reachable via the burger
     menu (.nav-only-mobile) + the hero CTA. */
  .site-header .container { gap: var(--sp-3); }
  .site-header .nav__actions .icon-btn,
  .site-header .nav__actions .btn--primary { display: none; }
  .nav-only-mobile { display: block; }

  /* sticky bottom contact bar */
  .sticky-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--surface); border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(15,20,25,0.08);
    padding: var(--sp-2); gap: var(--sp-2);
    padding-bottom: calc(var(--sp-2) + env(safe-area-inset-bottom));
  }
  .sticky-bar a {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: var(--sp-2); border-radius: var(--r-sm); font-size: 0.72rem; font-weight: 600;
    font-family: var(--font-display); color: var(--ink);
  }
  .sticky-bar a svg { width: 22px; height: 22px; }
  .sticky-bar a.is-primary { background: var(--accent); color: var(--white); }
  body { padding-bottom: 74px; } /* room for the bar */

  .field-row { grid-template-columns: 1fr; }
  .grid--tips { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .site-footer .container { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .container { padding-inline: var(--sp-4); }
}
