/* ============================================================
   Gartendesign Grün — Modern Design System
   ============================================================ */
/* Lokal gehostete Schrift (DSGVO: keine Verbindung zu Google-Servern) */
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/jakarta-var.woff2") format("woff2");
}

:root {
  --green-950: #0e2a1f;
  --green-900: #14342b;
  --green-800: #1b4a36;
  --green-700: #226044;
  --green-600: #2e7d4f;
  --green-500: #3a9963;
  --accent: #a8c84b;
  --accent-soft: #e8f0d2;
  --cream: #f6f5ef;
  --white: #ffffff;
  --ink: #1c2420;
  --ink-soft: #51605a;
  --line: #e4e6df;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(20, 52, 43, .07);
  --shadow-md: 0 10px 30px rgba(20, 52, 43, .12);
  --shadow-lg: 0 24px 60px rgba(14, 42, 31, .22);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--green-950); color: #eef2ea; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: var(--green-600); margin-bottom: 16px;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.section--dark .kicker { color: var(--accent); }
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.section-lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 640px; }
.section--dark .section-lead { color: #b9c8bb; }
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin: 0 auto; }
.section-head--center .kicker { justify-content: center; }
.section-head--center .kicker::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: .98rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  will-change: transform;
}
.btn svg { flex-shrink: 0; }
.btn--primary { background: var(--accent); color: var(--green-950); box-shadow: 0 6px 20px rgba(168, 200, 75, .35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(168, 200, 75, .45); }
.btn--dark { background: var(--green-800); color: #fff; }
.btn--dark:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid rgba(255, 255, 255, .35); color: #fff; backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.btn--whatsapp { background: #25d366; color: #06281a; }
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37, 211, 102, .4); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
  background: linear-gradient(rgba(14, 42, 31, .55), transparent);
}
.header.is-scrolled { background: rgba(14, 42, 31, .92); backdrop-filter: blur(14px); box-shadow: 0 4px 24px rgba(0, 0, 0, .18); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.header__logo img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; padding: 10px 16px; color: #e9f0e7; font-weight: 600; font-size: .95rem;
  border-radius: 10px; transition: color .2s, background .2s;
}
.nav__link:hover, .nav__link.is-active { color: #fff; background: rgba(255, 255, 255, .1); }
.nav__item--dropdown { position: relative; }
.nav__dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 12px; width: 540px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; transition: all .25s ease;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px;
  color: var(--ink); font-weight: 600; font-size: .9rem; transition: background .15s;
}
.nav__dropdown a:hover { background: var(--accent-soft); color: var(--green-800); }
.nav__dropdown a img { width: 30px; height: 30px; object-fit: contain; }
.header__cta { display: inline-flex; align-items: center; gap: 9px; background: var(--accent); color: var(--green-950); font-weight: 800; font-size: .92rem; padding: 11px 22px; border-radius: 999px; transition: transform .2s, box-shadow .2s; }
.header__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(168, 200, 75, .4); }

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed; inset: 0; background: var(--green-950);
    flex-direction: column; justify-content: center; gap: 4px;
    opacity: 0; visibility: hidden; transition: opacity .3s;
    overflow-y: auto; padding: 90px 24px 40px;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__link { font-size: 1.2rem; padding: 12px 20px; }
  .nav__dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: transparent; box-shadow: none; width: 100%; max-width: 420px;
    display: none; grid-template-columns: 1fr;
  }
  .nav__item--dropdown.is-open .nav__dropdown { display: grid; }
  .nav__dropdown a { color: #cfdccd; }
  .nav__dropdown a:hover { background: rgba(255,255,255,.08); color: #fff; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; padding: 140px 0 90px;
}
.hero .container { width: 100%; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 32, 23, .88) 18%, rgba(13, 40, 29, .62) 50%, rgba(13, 40, 29, .28) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 640px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px); border-radius: 999px; padding: 8px 18px;
  font-size: .85rem; font-weight: 600; margin-bottom: 26px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(168, 200, 75, .25); }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lead { font-size: 1.12rem; color: #d5e0d2; max-width: 520px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 36px; }
.hero__stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--accent); }
.hero__stat span { font-size: .88rem; color: #c2d0c0; }

/* sub-page hero */
.page-hero {
  position: relative; padding: 170px 0 80px; color: #fff; overflow: hidden;
  background: linear-gradient(115deg, var(--green-950), var(--green-800));
}
.page-hero::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 480px; height: 480px;
  border-radius: 50%; background: radial-gradient(circle, rgba(168, 200, 75, .22), transparent 65%);
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { max-width: 800px; }
.page-hero .breadcrumbs { font-size: .85rem; color: #a9bca7; margin-bottom: 18px; font-weight: 600; }
.page-hero .breadcrumbs a:hover { color: var(--accent); }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 16px; }
.page-hero p { color: #cdd9c9; font-size: 1.1rem; max-width: 600px; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1020px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 24px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.service-card__icon {
  width: 62px; height: 62px; border-radius: 16px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon img { width: 40px; height: 40px; object-fit: contain; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; }
.service-card p { font-size: .88rem; color: var(--ink-soft); flex: 1; }
.service-card__link { font-size: .88rem; font-weight: 700; color: var(--green-600); display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .service-card__link { color: var(--green-800); gap: 10px; }
.service-card__link svg { transition: transform .2s; }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 860px) { .process { grid-template-columns: 1fr; } }
.process__step {
  position: relative; background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius);
  padding: 40px 30px 34px;
}
.process__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent); color: var(--green-950); font-weight: 800; font-size: 1.25rem;
  margin-bottom: 20px;
}
.process__step h3 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.process__step p { color: #b9c8bb; font-size: .95rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 920px) { .about { grid-template-columns: 1fr; gap: 40px; } }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.about__card {
  position: absolute; bottom: -24px; right: -16px;
  background: var(--green-800); color: #fff; border-radius: var(--radius-sm);
  padding: 22px 26px; box-shadow: var(--shadow-lg); max-width: 240px;
}
.about__card strong { font-size: 2rem; color: var(--accent); display: block; line-height: 1; margin-bottom: 6px; }
.about__card span { font-size: .88rem; color: #cdd9c9; }
@media (max-width: 920px) { .about__card { right: 12px; bottom: 12px; } }
.about__body .checklist { margin: 26px 0 32px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: .98rem; }
.checklist li svg { flex-shrink: 0; margin-top: 4px; }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr; } }
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/11; box-shadow: var(--shadow-md);
  user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: #fff; transform: translateX(-50%); pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, .35);
}
.ba__handle::after {
  content: "⇄"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--green-800);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; font-weight: 700;
  box-shadow: var(--shadow-md);
}
.ba__label {
  position: absolute; top: 14px; padding: 6px 14px; border-radius: 999px;
  background: rgba(14, 42, 31, .75); color: #fff; font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(6px); z-index: 2; pointer-events: none;
}
.ba__label--before { left: 14px; }
.ba__label--after { right: 14px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1020px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery a {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; display: block;
  aspect-ratio: 1/1;
}
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery a:hover img { transform: scale(1.07); }
.gallery a::after {
  content: "+"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(14, 42, 31, .45); color: #fff; font-size: 2.2rem; font-weight: 300;
  opacity: 0; transition: opacity .25s;
}
.gallery a:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(8, 20, 14, .94);
  display: none; align-items: center; justify-content: center; padding: 4vmin;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; color: #fff; background: rgba(255, 255, 255, .1);
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255, 255, 255, .25); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: 26px; overflow: hidden;
  background: linear-gradient(115deg, var(--green-900), var(--green-700));
  padding: 70px 60px; color: #fff;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; left: -80px; bottom: -140px; width: 380px; height: 380px;
  border-radius: 50%; border: 60px solid rgba(168, 200, 75, .18);
}
.cta-band__text { position: relative; max-width: 560px; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 12px; }
.cta-band p { color: #cdd9c9; }
.cta-band__actions { position: relative; display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 720px) { .cta-band { padding: 48px 28px; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 16px; margin-top: 32px; }
.contact-card {
  display: flex; gap: 18px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 22px; transition: transform .2s, box-shadow .2s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card__icon {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
}
.contact-card strong { display: block; font-size: .98rem; }
.contact-card span { font-size: .88rem; color: var(--ink-soft); }
.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 22px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.contact-form label { display: block; font-size: .85rem; font-weight: 700; margin: 14px 0 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; background: var(--cream); transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--green-500); background: #fff;
}
.contact-form button { margin-top: 22px; width: 100%; justify-content: center; }

/* ---------- Service detail page ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
@media (max-width: 920px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body p { color: var(--ink-soft); margin-bottom: 16px; }
.feature-list { display: grid; gap: 12px; margin: 20px 0; }
.feature-list li {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 20px; font-weight: 600; font-size: .96rem;
}
.feature-list li svg { flex-shrink: 0; margin-top: 3px; }
.sidebar { position: sticky; top: 100px; display: grid; gap: 20px; }
.sidebar__card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.sidebar__card--cta { background: linear-gradient(150deg, var(--green-900), var(--green-700)); color: #fff; border: none; }
.sidebar__card--cta p { color: #cdd9c9; font-size: .92rem; margin: 10px 0 20px; }
.sidebar__card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.sidebar__links { display: grid; gap: 4px; }
.sidebar__links a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px;
  font-size: .9rem; font-weight: 600; color: var(--ink-soft); transition: background .15s, color .15s;
}
.sidebar__links a:hover { background: var(--accent-soft); color: var(--green-800); }
.sidebar__links a.is-active { background: var(--accent-soft); color: var(--green-800); }

/* ---------- Footer ---------- */
.footer { background: var(--green-950); color: #aebfac; padding: 72px 0 0; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 52px; }
@media (max-width: 920px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 52px; margin-bottom: 18px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer ul { display: grid; gap: 9px; }
.footer a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .84rem;
}
.footer__bottom a { margin-left: 18px; }
.footer__bottom a:first-child { margin-left: 0; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* photo-based icons (fence/gate) → round like the rest */
img[src*="tore"][width="30"], img[src*="tore"][width="40"], img[src*="tore"][width="22"],
.service-card__icon img[src*="tore"], .nav__dropdown a img[src*="tore"], .sidebar__links a img[src*="tore"] {
  border-radius: 50%; object-fit: cover !important;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; margin: 20px 0; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: .98rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--green-600); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 18px; color: var(--ink-soft); font-size: .94rem; }

/* ---------- Service area / city chips ---------- */
.city-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.city-grid span, .city-grid a {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; font-size: .9rem; font-weight: 600; color: var(--ink-soft);
}
.city-grid a:hover { border-color: var(--accent); color: var(--green-800); }

/* ---------- Legal pages ---------- */
.legal p { max-width: 760px; }
.legal h2 { margin: 36px 0 12px; font-size: 1.3rem; }
.legal p { color: var(--ink-soft); margin-bottom: 12px; }
