/* ==========================================================================
   Schmidt Haustechnik & Facility Service – Stylesheet v2
   Markenfarben: Blau #3b64ad / Rot #cb1517 (Logo-Palette)
   Schriften: Bricolage Grotesque (Display) + Manrope (Body)
   ========================================================================== */

:root {
  /* Markenfarben */
  --c-brand:        #3b64ad;
  --c-brand-light:  #6189cd;
  --c-brand-dark:   #2a4a85;
  --c-accent:       #cb1517;
  --c-accent-light: #ee3c3f;
  --c-accent-dark:  #9a0f11;
  --c-yellow:       #ffcc33;

  /* Neutralfarben */
  --c-bg:        #ffffff;
  --c-bg-soft:   #f5f7fb;
  --c-bg-deep:   #0f1e3d;
  --c-ink:       #0c1320;
  --c-ink-soft:  #2a3450;
  --c-muted:     #5b6478;
  --c-line:      #e2e8f0;
  --c-line-soft: #eef2f7;

  --r-xs: 4px; --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
  --shadow-xs: 0 1px 2px rgba(15,30,61,.04);
  --shadow-sm: 0 1px 3px rgba(15,30,61,.06), 0 4px 12px rgba(15,30,61,.04);
  --shadow-md: 0 4px 12px rgba(15,30,61,.08), 0 12px 32px rgba(15,30,61,.06);
  --shadow-lg: 0 24px 60px -20px rgba(15,30,61,.18);
  --shadow-xl: 0 30px 80px -25px rgba(15,30,61,.25);

  --container: 1240px;
  --container-narrow: 880px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-ink);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); letter-spacing: -0.03em; font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); letter-spacing: -0.025em; font-weight: 600; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; font-family: 'Manrope', sans-serif; letter-spacing: -0.01em; }
p { color: var(--c-ink-soft); }
.lead { font-size: 1.15rem; color: var(--c-ink-soft); line-height: 1.55; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* =========== TOPBAR =========== */
.topbar {
  background: var(--c-bg-deep);
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; gap: 16px; flex-wrap: wrap; min-height: 40px;
}
.topbar a { color: rgba(255,255,255,.92); transition: color .15s; }
.topbar a:hover { color: var(--c-yellow); }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-left span, .topbar-right a { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 14px; height: 14px; }

/* =========== HEADER =========== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 20px rgba(15,30,61,.06);
}
/* Admin-Bar-Kompatibilität (WordPress fügt eingeloggten Admin-Bar oben ein) */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; flex: none; min-width: 0; }
.brand-mark {
  width: 56px; height: 56px; flex: none;
  display: block; overflow: visible;
  position: relative;
}
.brand-mark svg, .brand-mark img {
  width: 100%; height: 100%; display: block;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(15,30,61,.10));
}
.brand-text { line-height: 1.15; }
.brand-text .b1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 19px; letter-spacing: -0.02em;
  color: var(--c-ink);
}
.brand-text .b2 {
  font-size: 11px; color: var(--c-muted);
  letter-spacing: .12em; text-transform: uppercase;
  margin-top: 2px; font-weight: 500;
}

.menu { display: flex; gap: 28px; align-items: center; }
.menu .btn { display: none; }
.menu > a.btn-accent, .menu .menu-cta-mobile { display: none; }
.menu > a, .menu > .has-dropdown > a {
  font-weight: 600; font-size: 15px; color: var(--c-ink-soft); position: relative;
  padding: 6px 0; transition: color .15s;
  letter-spacing: -0.005em;
}
.menu > a::after, .menu > .has-dropdown > a::after {
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0;
  background: var(--c-accent); transition: width .25s ease;
}
.menu > a:hover, .menu > a.active,
.menu > .has-dropdown > a:hover, .menu > .has-dropdown > a.active { color: var(--c-ink); }
.menu > a:hover::after, .menu > a.active::after,
.menu > .has-dropdown > a:hover::after, .menu > .has-dropdown > a.active::after { width: 100%; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 6px);
  min-width: 240px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-md);
  padding: 8px; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 12px); }
.dropdown a {
  display: block; padding: 10px 14px;
  border-radius: var(--r-sm); font-size: 14.5px;
  color: var(--c-ink-soft); font-weight: 500;
}
.dropdown a:hover { background: var(--c-bg-soft); color: var(--c-brand); }

.nav .header-cta {
  flex: none;
  font-size: 14px;
  padding: 12px 22px;
  letter-spacing: 0;
}

.menu-toggle { display:none; background:none; border:none; cursor:pointer; padding:6px; flex: none; }
.menu-toggle span {
  display:block; width:24px; height:2px; background: var(--c-ink); margin:5px 0;
  transition: transform .25s ease, opacity .2s ease; border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700; font-size: 14.5px;
  letter-spacing: -0.005em; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: none; font-family: inherit;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--c-brand); color: #fff; }
.btn-primary:hover { background: var(--c-brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff; }
.btn-accent { background: var(--c-accent); color: #fff; }
.btn-accent:hover { background: var(--c-accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(203,21,23,.25); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--c-ink); border: 1.5px solid var(--c-line);
  padding: 11.5px 20.5px;
}
.btn-ghost:hover { border-color: var(--c-brand); color: var(--c-brand); background: var(--c-bg-soft); }
.btn-light {
  background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.18);
  padding: 11.5px 20.5px;
}
.btn-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.32); color: #fff; }

/* =========== HERO =========== */
.hero {
  position: relative; padding: 80px 0 90px;
  overflow: hidden; background: var(--c-bg);
}
.hero > .container { position: relative; z-index: 1; min-width: 0; }
.hero-grid > .hero-text { min-width: 0; }
.hero-grid > .hero-visual { min-width: 0; }
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(59,100,173,.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 90%, rgba(203,21,23,.04), transparent 70%);
  pointer-events:none; z-index: 0;
}

.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-brand); font-weight: 700;
  padding: 7px 14px; border: 1px solid rgba(59,100,173,.25);
  border-radius: 999px; background: rgba(59,100,173,.07);
  margin-bottom: 24px;
}
.eyebrow::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--c-accent); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent {
  color: var(--c-brand);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.hero h1 .dot-accent {
  color: var(--c-accent);
  font-weight: 700;
  display: inline-block;
  margin-left: -2px;
}
.hero h1 .accent-red { color: var(--c-accent); font-weight: 700; }
.hero-sub { font-size: 18.5px; color: var(--c-ink-soft); max-width: 560px; margin-bottom: 34px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 38px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--c-line);
}
.hero-rating { display:flex; align-items:center; gap: 12px; }
.stars { color: #f5b424; letter-spacing: 2px; font-size: 18px; }
.hero-rating-text { font-size: 14px; }
.hero-rating-text strong { display:block; color: var(--c-ink); font-weight: 700; font-size: 14.5px; }
.hero-rating-text span { color: var(--c-muted); font-size: 13px; }

.hero-visual {
  position: relative; aspect-ratio: 5/6;
  max-height: 620px;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-visual img { width:100%; height:100%; object-fit:cover; }
.hero-card {
  position: absolute; background: var(--c-bg);
  padding: 12px 16px; border-radius: var(--r-md);
  box-shadow: 0 4px 16px rgba(15,30,61,.10), 0 1px 3px rgba(15,30,61,.06);
  border: 1px solid var(--c-line);
  display: flex; gap: 11px; align-items: center;
  font-size: 13px; z-index: 2;
  max-width: 240px;
}
.hero-card.tl { top: 24px; left: 16px; }
.hero-card.br { bottom: 24px; right: 16px; }
.hero-card-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--c-brand); color: #fff;
  display: grid; place-items: center; flex: none;
}
.hero-card-icon svg { width: 17px; height: 17px; }
.hero-card strong { display:block; font-size: 13.5px; color: var(--c-ink); font-weight: 700; line-height: 1.25; }
.hero-card span { color: var(--c-muted); font-size: 12px; line-height: 1.35; display: block; margin-top: 1px; }

/* =========== SUBHERO =========== */
.subhero {
  position: relative; padding: 60px 0 70px;
  background: var(--c-brand); color: #fff;
  overflow: hidden; isolation: isolate;
}
.subhero::before {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.10), transparent 50%),
    radial-gradient(circle at 5% 95%, rgba(203,21,23,.18), transparent 55%);
  pointer-events: none; z-index: -1;
}
.subhero::after {
  content:""; position:absolute; right: -120px; top: -120px;
  width: 480px; height: 480px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%; pointer-events: none; z-index: -1;
}
.subhero .container { position: relative; }
.subhero .eyebrow { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.subhero .eyebrow::before { background: var(--c-yellow); }
.subhero h1 { color: #fff; max-width: 800px; margin-bottom: 18px; }
.subhero h1 em { color: var(--c-yellow); font-style: italic; font-weight: 600; }
.subhero p { color: rgba(255,255,255,.86); max-width: 700px; font-size: 17.5px; line-height: 1.55; }
.subhero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.subhero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 14px; color: rgba(255,255,255,.78);
}
.subhero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.subhero-meta svg { width: 16px; height: 16px; color: var(--c-yellow); }

.breadcrumbs {
  font-size: 13px; color: var(--c-muted);
  margin-bottom: 22px;
  display: flex; gap: 6px; align-items: center;
  flex-wrap: wrap;
}
.subhero .breadcrumbs { color: rgba(255,255,255,.65); }
.subhero .breadcrumbs a { color: rgba(255,255,255,.85); }
.subhero .breadcrumbs a:hover { color: var(--c-yellow); }
.breadcrumbs a:hover { color: var(--c-brand); }
.breadcrumbs .sep { opacity: .5; }
.breadcrumbs .current { color: var(--c-ink); font-weight: 500; }
.subhero .breadcrumbs .current { color: #fff; }

/* =========== TRUST STRIP =========== */
.trust-strip { background: var(--c-bg-soft); padding: 28px 0; border-bottom: 1px solid var(--c-line); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; }
.trust-item {
  display:flex; align-items:center; gap: 14px;
  font-size: 14px; line-height: 1.35;
}
.trust-item .ti-icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: #fff; border: 1px solid var(--c-line);
  display: grid; place-items: center; color: var(--c-brand);
}
.trust-item svg { width: 22px; height: 22px; }
.trust-item strong { color: var(--c-ink); font-weight: 700; display:block; font-size: 14.5px; }
.trust-item span { color: var(--c-muted); font-size: 13px; }

/* =========== SECTIONS =========== */
section { padding: 100px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 17.5px; max-width: 600px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* =========== SERVICES GRID =========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-brand); }
.service-img {
  aspect-ratio: 16/10;
  background: var(--c-bg-soft);
  position: relative; overflow: hidden; display: block;
}
.service-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-num {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.96); color: var(--c-brand);
  padding: 6px 12px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  border-radius: 999px; text-transform: uppercase;
}
.service-body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; }
.service-card .service-body > p { margin-bottom: 16px; color: var(--c-ink-soft); font-size: 14.5px; }
.service-card ul { list-style: none; margin: 0 0 22px; flex: 1; padding: 0; }
.service-card ul li {
  padding: 8px 0 8px 26px; position: relative;
  font-size: 14px; color: var(--c-ink-soft);
  border-bottom: 1px dashed var(--c-line);
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before {
  content:""; position:absolute; left:0; top: 12px;
  width: 14px; height: 14px; background: var(--c-brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--c-brand); margin-top: auto;
  padding-top: 14px; border-top: 1px solid var(--c-line);
  font-size: 14.5px;
}
.service-link svg { transition: transform .2s ease; width: 18px; height: 18px; }
.service-link:hover svg { transform: translateX(4px); }
.service-link:hover { color: var(--c-accent); }

/* =========== WHY =========== */
.why { background: var(--c-bg-soft); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-card {
  background: var(--c-bg); border-radius: var(--r-md);
  padding: 24px 22px; border: 1px solid var(--c-line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--c-brand-light); }
.why-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--c-brand); color: #fff;
  display:grid; place-items:center; margin-bottom: 16px;
}
.why-icon svg { width: 21px; height: 21px; }
.why-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--c-ink); }
.why-card p { font-size: 14px; color: var(--c-muted); line-height: 1.5; }
.why h2 .accent { color: var(--c-brand); }

/* =========== PROCESS =========== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.process-steps::before {
  content:""; position:absolute; top: 35px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-brand-light) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 70px; height: 70px;
  margin: 0 auto 22px; border-radius: 50%;
  background: var(--c-bg); border: 2px solid var(--c-brand);
  color: var(--c-brand);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 26px;
  display: grid; place-items: center;
  transition: background .25s ease, color .25s ease;
}
.step:hover .step-num { background: var(--c-brand); color: #fff; }
.step h4 { font-size: 16.5px; margin-bottom: 8px; color: var(--c-ink); }
.step p { font-size: 14px; color: var(--c-muted); line-height: 1.5; }

/* =========== AREAS =========== */
.areas { background: var(--c-bg-deep); color: #fff; position: relative; overflow: hidden; }
.areas::before {
  content:""; position:absolute;
  right:-200px; bottom:-200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,100,173,.25), transparent 60%);
  pointer-events: none;
}
.areas .container { position: relative; }
.areas h2, .areas h3 { color: #fff; }
.areas p { color: rgba(255,255,255,.75); }
.areas .eyebrow { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.areas .eyebrow::before { background: var(--c-yellow); }
.areas-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.area-tag {
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  background: rgba(255,255,255,.04);
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; transition: background .2s, border-color .2s, transform .2s;
}
.area-tag:hover { background: var(--c-accent); border-color: var(--c-accent); transform: translateY(-2px); }
.area-tag::before {
  content:""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--c-yellow);
  transition: background .2s;
}
.area-tag:hover::before { background: #fff; }
.area-info {
  background: rgba(255,255,255,.04);
  padding: 30px 28px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.08);
}
.area-info h3 { margin-bottom: 18px; font-size: 1.2rem; }
.area-info-row {
  display:flex; justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14.5px;
}
.area-info-row:last-of-type { border-bottom: none; }
.area-info-row span:first-child { color: rgba(255,255,255,.7); }
.area-info-row span:last-child { color: #fff; font-weight: 600; text-align: right; }

/* =========== TESTIMONIALS =========== */
.testimonials-head { text-align: center; margin-bottom: 56px; }
.testimonials-head .eyebrow { margin-bottom: 16px; }
.google-bar {
  display:inline-flex; align-items:center; gap: 12px;
  margin: 18px auto 0;
  background: var(--c-bg);
  padding: 12px 22px; border-radius: 999px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.google-bar .stars { font-size: 16px; }
.google-bar strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 700; }
.google-bar span { font-size: 13px; color: var(--c-muted); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--c-bg);
  padding: 28px 26px; border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content:"\201C";
  position:absolute; top: 4px; right: 22px;
  font-family: 'Bricolage Grotesque', serif; font-size: 80px;
  color: var(--c-brand); opacity:.12; line-height: 1;
}
.t-stars { color: #f5b424; letter-spacing: 2px; font-size: 15px; margin-bottom: 14px; }
.testimonial p {
  font-size: 15.5px; line-height: 1.55;
  color: var(--c-ink); margin-bottom: 22px; flex: 1;
}
.t-author {
  display:flex; align-items:center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--c-line);
}
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-brand); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.t-author strong { font-size: 14.5px; display: block; font-weight: 700; }
.t-author span { font-size: 12.5px; color: var(--c-muted); }

/* =========== FOUNDER =========== */
.founder { background: var(--c-bg-soft); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.founder-img {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-bg);
  position: relative;
}
.founder-img img { width:100%; height:100%; object-fit: cover; }
.founder-content .eyebrow { margin-bottom: 18px; }
.founder-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500; line-height: 1.3;
  color: var(--c-ink); margin-bottom: 28px;
  letter-spacing: -0.015em;
  padding-left: 18px;
  border-left: 3px solid var(--c-accent);
}
.founder-name { font-weight: 700; font-size: 16.5px; }
.founder-role { color: var(--c-muted); font-size: 14px; margin-bottom: 24px; }
.founder-actions { display:flex; gap: 12px; flex-wrap: wrap; }

/* =========== CTA BANNER =========== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-dark) 100%);
  color: #fff; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,204,51,.10), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(203,21,23,.18), transparent 60%);
  pointer-events:none;
}
.cta-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  position: relative;
}
.cta-inner h2 { color: #fff; max-width: 600px; }
.cta-inner h2 em { color: var(--c-yellow); font-style: italic; font-weight: 600; }
.cta-inner p { color: rgba(255,255,255,.85); margin-top: 14px; max-width: 540px; font-size: 16.5px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* =========== CONTACT =========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info {
  background: var(--c-bg-soft);
  padding: 36px 32px; border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
}
.contact-info h3 { margin-bottom: 22px; }
.info-block {
  padding: 16px 0; border-bottom: 1px solid var(--c-line);
  display: flex; gap: 14px; align-items: flex-start;
}
.info-block:last-child { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--c-brand); color: #fff;
  display: grid; place-items: center; flex: none;
}
.info-icon svg { width: 18px; height: 18px; }
.info-block strong { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 4px; font-weight: 700; }
.info-block span, .info-block a { color: var(--c-ink); font-size: 15.5px; font-weight: 500; line-height: 1.4; }
.info-block a:hover { color: var(--c-brand); }

.contact-form {
  background: var(--c-bg);
  padding: 36px 32px; border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form > p { color: var(--c-muted); margin-bottom: 26px; font-size: 14.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; position: relative; }
.field label {
  display: block; font-size: 13px; font-weight: 700;
  margin-bottom: 6px; color: var(--c-ink-soft);
}
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--c-line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 15px;
  background: var(--c-bg-soft); color: var(--c-ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--c-brand); background: #fff;
  box-shadow: 0 0 0 3px rgba(59,100,173,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--c-muted); }
.field-checkbox input { width: auto; margin-top: 2px; }
.field-checkbox label { font-size: 13px; font-weight: 400; color: var(--c-muted); margin-bottom: 0; line-height: 1.5; }
.field-checkbox a { color: var(--c-brand); text-decoration: underline; }

/* =========== FOOTER =========== */
footer.site-footer {
  background: var(--c-bg-deep);
  color: rgba(255,255,255,.7);
  padding: 70px 0 30px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .brand-text .b1 { color: #fff; }
.footer-brand .brand-text .b2 { color: rgba(255,255,255,.55); }
.footer-brand p { margin-top: 18px; max-width: 320px; line-height: 1.6; color: rgba(255,255,255,.65); font-size: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  color: rgba(255,255,255,.75);
}
.footer-social a:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: #fff; font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; color: rgba(255,255,255,.7); }
.footer-col a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col a:hover { color: var(--c-yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: rgba(255,255,255,.5);
}

/* =========== STICKY MOBILE CTA =========== */
.sticky-mobile {
  display: none;
  position: fixed; bottom: 0; left:0; right: 0;
  background: var(--c-bg-deep); padding: 10px 14px;
  z-index: 70; box-shadow: 0 -6px 18px rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,255,255,.08);
}
.sticky-mobile-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sticky-mobile a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 10px; border-radius: 10px;
  font-weight: 700; font-size: 14.5px;
}
.sticky-mobile .sm-call { background: var(--c-accent); color: #fff; }
.sticky-mobile .sm-wa { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.12); }
.sticky-mobile svg { width: 18px; height: 18px; }

/* =========== PROSE =========== */
.prose { max-width: 760px; margin: 0 auto; font-size: 16.5px; line-height: 1.75; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { margin-top: 2.4em; margin-bottom: 0.6em; padding-top: 0.4em; }
.prose h2:first-child { margin-top: 0; padding-top: 0; }
.prose h3 { margin-top: 1.8em; margin-bottom: 0.4em; font-size: 1.25rem; }
.prose p { color: var(--c-ink-soft); }
.prose strong { color: var(--c-ink); font-weight: 700; }
.prose ul { list-style: none; padding-left: 0; display: grid; gap: 8px; }
.prose ul li { padding: 4px 0 4px 30px; position: relative; color: var(--c-ink-soft); }
.prose ul li::before {
  content:""; position:absolute; left: 4px; top: 12px;
  width: 14px; height: 14px; background: var(--c-brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.prose ol { padding-left: 22px; color: var(--c-ink-soft); }
.prose ol li { margin: 6px 0; padding-left: 8px; }
.prose ol li::marker { color: var(--c-brand); font-weight: 700; }
.prose blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 16px 0 16px 22px; margin: 1.6em 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic; font-size: 1.25rem;
  color: var(--c-ink); line-height: 1.4; font-weight: 500;
}

/* =========== SERVICE DETAIL =========== */
.service-detail {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  margin-bottom: 80px;
}
.service-detail:last-child { margin-bottom: 0; }
.service-detail.reverse { grid-template-columns: 1fr 1.1fr; }
.service-detail.reverse .sd-content { order: 2; }
.service-detail.reverse .sd-image { order: 1; }
.sd-image {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-bg-soft);
  box-shadow: var(--shadow-sm);
}
.sd-image img { width:100%; height:100%; object-fit: cover; }
.sd-content .eyebrow { margin-bottom: 14px; }
.sd-content h3 { font-size: 1.6rem; margin-bottom: 16px; }
.sd-content > p { margin-bottom: 14px; font-size: 15.5px; color: var(--c-ink-soft); line-height: 1.6; }
.sd-content ul { list-style: none; padding: 0; margin: 16px 0; }
.sd-content ul li {
  padding: 9px 0 9px 28px; position: relative;
  color: var(--c-ink-soft); border-bottom: 1px dashed var(--c-line);
  font-size: 14.5px;
}
.sd-content ul li:last-child { border-bottom: none; }
.sd-content ul li::before {
  content:""; position:absolute; left:0; top: 14px;
  width: 14px; height: 14px; background: var(--c-brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* =========== REFERENCE GALLERY =========== */
.ref-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ref-item {
  border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4/5; background: var(--c-bg-soft);
  position: relative; display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ref-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.ref-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.ref-item:hover img { transform: scale(1.04); }

/* =========== STATS =========== */
.page-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  margin-bottom: 60px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.stat { text-align: center; padding: 28px 18px; border-right: 1px solid var(--c-line); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.5rem);
  color: var(--c-brand); font-weight: 700;
  line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-num em { color: var(--c-accent); font-style: italic; }
.stat-label { font-size: 12.5px; color: var(--c-muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }

/* =========== CONTACT MINI =========== */
.contact-mini {
  background: var(--c-bg-soft);
  border-radius: var(--r-lg);
  padding: 36px;
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  border: 1px solid var(--c-line);
}
.contact-mini h3 { margin-bottom: 6px; }
.contact-mini p { font-size: 14.5px; color: var(--c-muted); }
.contact-mini-actions { display: flex; gap: 10px; }

/* =========== ANIMATIONS =========== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

/* =========== FAQ =========== */
.faq-section { background: var(--c-bg-soft); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--c-brand-light); box-shadow: var(--shadow-xs); }
.faq-item.open { border-color: var(--c-brand); }
.faq-question {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 16px;
  font-weight: 700; font-size: 15.5px;
  color: var(--c-ink);
  background: none;
  border: none; width: 100%;
  text-align: left;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.faq-question::after {
  content: ""; flex: none;
  width: 24px; height: 24px;
  background: var(--c-brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 5v14M5 12h14' stroke='black' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") center/16px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 5v14M5 12h14' stroke='black' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") center/16px no-repeat;
  border-radius: 50%;
  border: 1.5px solid var(--c-brand);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  background: var(--c-brand);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--c-ink-soft); line-height: 1.65;
  font-size: 15px;
}
.faq-answer-inner strong { color: var(--c-ink); }

/* =========== DISTRICT-TAGS =========== */
.districts-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 18px 0 24px;
}
.district-tag {
  display: inline-flex; align-items: center;
  padding: 7px 14px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--c-ink-soft);
  font-weight: 500;
}
.district-tag::before {
  content: ""; width: 5px; height: 5px;
  background: var(--c-brand);
  border-radius: 50%;
  margin-right: 8px;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 3; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4/3; max-width: 600px; margin: 0 auto; order: -1; }
  .hero-card.tl, .hero-card.br { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-list { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .areas-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-img { max-width: 480px; margin: 0 auto; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  section { padding: 70px 0; }
  .menu-toggle { display: block; }
  .menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-bg);
    flex-direction: column; gap: 0;
    padding: 14px 24px 20px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    align-items: stretch;
  }
  .menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu > a, .menu > .has-dropdown > a { padding: 14px 0; border-bottom: 1px solid var(--c-line); width: 100%; }
  .menu .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 8px 16px; min-width: 0;
    margin-bottom: 0;
  }
  .has-dropdown:hover .dropdown { transform: none; }
  .menu .btn { display: inline-flex; margin-top: 6px; justify-content: center; padding: 14px 22px; }
  .menu > a.btn-accent, .menu .menu-cta-mobile { display: inline-flex; }
  .nav .header-cta { display: none; }
  .sticky-mobile { display: block; }
  body { padding-bottom: 70px; }
  .topbar-left .hide-sm { display: none; }
  .service-detail, .service-detail.reverse {
    grid-template-columns: 1fr; gap: 30px;
  }
  .service-detail.reverse .sd-content { order: 2; }
  .service-detail.reverse .sd-image { order: 1; }
  .ref-gallery { grid-template-columns: 1fr 1fr; }
  .page-stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--c-line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-right: 1px solid var(--c-line); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .contact-mini { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .contact-mini-actions { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 540px) {
  .why-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .topbar-inner { justify-content: center; }
  .topbar-right { display: none; }
  .ref-gallery { grid-template-columns: 1fr; }
  .page-stats { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--c-line); }
  .stat:last-child { border-bottom: none; }
  .brand-text .b2 { display: none; }
  h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 16.5px; }
  .subhero { padding: 50px 0 56px; }
}
