/* ==========================================================================
   GRZ Sternstraße Dresden — Stylesheet
   Physio- & Ergotherapie · Dresden Mickten
   ========================================================================== */

:root {
  --green:       #2f9e5f;
  --green-dark:  #1f7a47;
  --green-soft:  #e8f5ee;
  --orange:      #f39a1f;
  --orange-dark: #d97e07;
  --ink:         #1c2a2f;
  --muted:       #56676d;
  --line:        #e4ece8;
  --bg:          #ffffff;
  --bg-soft:     #f5f9f6;
  --bg-dark:     #14312a;
  --white:       #ffffff;
  --radius:      16px;
  --radius-lg:   26px;
  --shadow-sm:   0 2px 10px rgba(20, 49, 42, .06);
  --shadow:      0 12px 34px rgba(20, 49, 42, .10);
  --shadow-lg:   0 26px 60px rgba(20, 49, 42, .16);
  --maxw:        1180px;
  --font-head:   'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body:   'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Sichtbarer Tastatur-Fokus (WCAG 2.4.7) */
:focus-visible { outline: 3px solid var(--green-dark); outline-offset: 2px; border-radius: 4px; }
.section--dark :focus-visible, .job :focus-visible { outline-color: #fff; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 600; color: var(--ink); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #dbe8e2; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-dark);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.section--dark .eyebrow { color: #7fd6a2; }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
h2.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); letter-spacing: -.02em; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }
.section--dark .section-head p { color: #a9c4ba; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(47,158,95,.32); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(47,158,95,.42); }
.btn--accent { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(243,154,31,.32); }
.btn--accent:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--green-dark); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar { background: var(--bg-dark); color: #cfe3d9; font-size: .84rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #cfe3d9; display: inline-flex; align-items: center; gap: 7px; transition: color .15s; }
.topbar a:hover { color: #fff; }
.topbar .topbar-group { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar svg { width: 15px; height: 15px; color: var(--green); }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink);
  padding: 9px 15px; border-radius: 999px; transition: background .15s, color .15s; position: relative;
}
.nav-links a:hover { background: var(--green-soft); color: var(--green-dark); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--green-dark); }
.nav-phone svg { width: 18px; height: 18px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--bg-soft); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 82px 0 90px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: var(--green-soft); color: var(--green-dark);
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(47,158,95,.2); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -.03em; font-weight: 700; }
.hero h1 .hl { color: var(--green); }
.hero-sub { margin-top: 22px; font-size: 1.15rem; color: var(--muted); max-width: 540px; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 38px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: var(--ink); font-weight: 500; }
.hero-trust svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

.hero-media { position: relative; }
.hero-media .main-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero-media .accent-blob { position: absolute; inset: auto -30px -30px auto; width: 180px; height: 180px; background: radial-gradient(circle at 30% 30%, var(--orange), var(--orange-dark)); border-radius: 40% 60% 55% 45%; filter: blur(2px); opacity: .18; z-index: 0; }
.hero-card {
  position: absolute; left: -28px; bottom: 34px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px 20px; display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.hero-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--green-soft); display: grid; place-items: center; flex-shrink: 0; }
.hero-card .ic svg { width: 24px; height: 24px; color: var(--green); }
.hero-card strong { font-family: var(--font-head); display: block; font-size: 1rem; }
.hero-card span { font-size: .84rem; color: var(--muted); }

/* ---------- Feature strip ---------- */
.feature-strip { margin-top: -46px; position: relative; z-index: 5; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--green-soft); display: grid; place-items: center; margin-bottom: 16px; }
.feature-card .ic svg { width: 26px; height: 26px; color: var(--green); }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   About / Split
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3/2.4; object-fit: cover; }
.split-media .tag {
  position: absolute; bottom: 22px; left: 22px; background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow-sm); font-family: var(--font-head); font-weight: 600; font-size: .92rem;
}
.split-media .tag span { color: var(--green-dark); }
.lead { font-size: 1.14rem; color: var(--ink); margin-bottom: 18px; }
.split-body p { color: var(--muted); margin-bottom: 16px; }
.check-list { margin: 24px 0 30px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.check-list b { font-family: var(--font-head); }

blockquote.pull {
  border-left: 4px solid var(--orange); padding: 6px 0 6px 22px; margin: 26px 0; font-style: italic;
  color: var(--ink); font-size: 1.12rem; font-family: var(--font-head); font-weight: 500;
}
blockquote.pull cite { display: block; margin-top: 8px; font-style: normal; font-size: .88rem; color: var(--muted); font-weight: 500; }

/* ==========================================================================
   Services cards (overview)
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 36px; overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.svc-card::after { content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--green); }
.svc-card.ergo::after { background: var(--orange); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-card .ic { width: 58px; height: 58px; border-radius: 16px; background: var(--green-soft); display: grid; place-items: center; margin-bottom: 20px; }
.svc-card.ergo .ic { background: #fdf0dd; }
.svc-card .ic svg { width: 30px; height: 30px; color: var(--green); }
.svc-card.ergo .ic svg { color: var(--orange-dark); }
.svc-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.svc-card p { color: var(--muted); margin-bottom: 20px; }
.svc-card .arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--green-dark); }
.svc-card.ergo .arrow { color: var(--orange-dark); }
.svc-card .arrow svg { width: 18px; height: 18px; transition: transform .2s; }
.svc-card:hover .arrow svg { transform: translateX(4px); }

/* ---------- Treatment tag lists ---------- */
.treat-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 44px; margin-top: 10px; }
.treat-block h4 { font-size: 1.05rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.treat-block h4::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--green); }
.treat-block.o h4::before { background: var(--orange); }
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; }
.pill-list li {
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink);
  padding: 8px 15px; border-radius: 999px; font-size: .9rem; font-weight: 500; transition: background .15s, border-color .15s;
}
.pill-list li:hover { background: var(--green-soft); border-color: var(--green); }
.section--soft .pill-list li { background: #fff; }

/* ==========================================================================
   Special services (feature list dark)
   ========================================================================== */
.special-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.special-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 32px 30px; transition: transform .2s, background .2s;
}
.special-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }
.special-card .ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(127,214,162,.15); display: grid; place-items: center; margin-bottom: 18px; }
.special-card .ic svg { width: 27px; height: 27px; color: #7fd6a2; }
.special-card.acc .ic { background: rgba(243,154,31,.18); }
.special-card.acc .ic svg { color: var(--orange); }
.special-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.special-card p { color: #a9c4ba; font-size: .98rem; }

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.member .photo { aspect-ratio: 4/3.4; overflow: hidden; background: var(--green-soft); position: relative; }
.member .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.member:hover .photo img { transform: scale(1.05); }
.member .photo.avatar { display: grid; place-items: center; background: linear-gradient(135deg, var(--green-soft), #d9efe2); }
.member .photo.avatar span { font-family: var(--font-head); font-weight: 700; font-size: 3rem; color: var(--green); }
.member .body { padding: 22px 24px 26px; }
.member h3 { font-size: 1.22rem; margin-bottom: 4px; }
.member .role { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .8rem; color: var(--orange-dark); background: #fdf0dd; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.member .role.g { color: var(--green-dark); background: var(--green-soft); }
.member p { color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery figure { overflow: hidden; border-radius: var(--radius); position: relative; margin: 0; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery .wide { grid-column: span 2; }
.gallery .tall { grid-row: span 2; }

/* ==========================================================================
   Job / CTA banner
   ========================================================================== */
.job {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg); padding: 54px 56px; color: #fff; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.job::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; background: rgba(255,255,255,.08); border-radius: 50%; }
.job::after { content: ""; position: absolute; left: -40px; bottom: -80px; width: 200px; height: 200px; background: rgba(243,154,31,.25); border-radius: 50%; }
.job-content { position: relative; z-index: 2; }
.job .eyebrow { color: #ffe0b0; }
.job .eyebrow::before { background: var(--orange); }
.job h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 14px; }
.job p { color: rgba(255,255,255,.9); }
.job-actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-block { display: grid; gap: 18px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.section--soft .info-item { background: #fff; }
.info-item .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--green-soft); display: grid; place-items: center; flex-shrink: 0; }
.info-item .ic svg { width: 24px; height: 24px; color: var(--green); }
.info-item h4 { font-size: 1.02rem; margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--muted); font-size: .98rem; }
.info-item a:hover { color: var(--green-dark); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .98rem; }
.hours-table td:last-child { text-align: right; font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.hours-table tr:last-child td { border-bottom: 0; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); height: 100%; min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.map-consent { width: 100%; height: 100%; min-height: 420px; display: grid; place-items: center; text-align: center; padding: 30px; background: linear-gradient(135deg, var(--green-soft), #eef6f1); }
.map-consent-inner { max-width: 380px; }
.map-consent svg { width: 46px; height: 46px; color: var(--green); margin-bottom: 14px; }
.map-consent h4 { font-size: 1.15rem; margin-bottom: 8px; }
.map-consent p { color: var(--muted); font-size: .94rem; margin-bottom: 18px; }
.map-consent .btn { margin-bottom: 14px; }
.map-alt-link { display: block; font-size: .86rem; color: var(--green-dark); text-decoration: underline; }
.map-alt-link:hover { color: var(--green); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-h { margin: 0; font: inherit; }
.section--soft .faq-item { background: #fff; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.faq-q .chev { width: 24px; height: 24px; flex-shrink: 0; color: var(--green); transition: transform .25s; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--muted); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--bg-dark); color: #a9c4ba; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 52px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { font-size: .95rem; color: #93b3a7; max-width: 300px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #a9c4ba; font-size: .96rem; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 13px; font-size: .96rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .86rem; color: #7c9a8e; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: #7c9a8e; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Floating call button (mobile) ---------- */
.fab-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none;
  width: 58px; height: 58px; border-radius: 50%; background: var(--green); color: #fff;
  align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(47,158,95,.5);
  animation: pulse 2.4s infinite;
}
.fab-call svg { width: 26px; height: 26px; }
@keyframes pulse { 0%,100% { box-shadow: 0 10px 26px rgba(47,158,95,.5); } 50% { box-shadow: 0 10px 26px rgba(47,158,95,.5), 0 0 0 12px rgba(47,158,95,0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Impressum page
   ========================================================================== */
.legal { padding: 70px 0 90px; }
.legal .container { max-width: 860px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal h3 { font-size: 1.08rem; margin: 24px 0 8px; }
.legal p { color: var(--muted); margin-bottom: 14px; }
.legal a { color: var(--green-dark); text-decoration: underline; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-family: var(--font-head); font-weight: 600; margin-bottom: 30px; }
.legal .back svg { width: 18px; height: 18px; }
.legal h4 { font-family: var(--font-head); font-size: 1rem; margin: 18px 0 6px; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; color: var(--muted); }
.legal ul li { margin-bottom: 7px; }
.legal .note { font-size: .92rem; color: var(--muted); background: #fff7ec; border-left: 3px solid var(--orange); padding: 14px 18px; border-radius: 0 10px 10px 0; margin: 18px 0; }
.legal .note strong { color: var(--orange-dark); }
.legal .toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0 40px; }
.legal .toc strong { font-family: var(--font-head); display: block; margin-bottom: 10px; }
.legal .toc ul { list-style: none; padding: 0; margin: 0; columns: 2; }
.legal .toc a { color: var(--green-dark); }
.legal .meta { font-size: .9rem; color: var(--muted); margin-bottom: 8px; }
.legal address { font-style: normal; margin-bottom: 16px; }
.legal .ph { background: #ffe4c2; color: #8a4b00; padding: 1px 7px; border-radius: 5px; font-size: .88em; font-weight: 600; white-space: nowrap; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 54px 0 70px; }
  .hero-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .svc-grid, .special-grid, .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .job { grid-template-columns: 1fr; padding: 40px 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .feature-strip { margin-top: 40px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .nav-links, .nav-phone-text { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 14px; gap: 4px; box-shadow: var(--shadow); border-top: 1px solid var(--line); align-items: stretch;
  }
  .nav-links.open a { padding: 14px 16px; border-radius: 12px; }
  .nav-toggle { display: block; }
  .topbar .topbar-group.secondary { display: none; }
  .treat-cols { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery .wide, .gallery .tall { grid-column: auto; grid-row: auto; }
  .fab-call { display: flex; }
  .hero-card { left: 8px; bottom: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .fab-call { animation: none; }
}
