/* ============================================================================
   DallasRoofGuard — shared design system
   Premium & modern roofing site. Themeable via [data-theme] / [data-font]
   on <html>. All business-neutral; content lives in the HTML.
   ========================================================================== */

/* ----------------------------- RESET --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.55; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.08; font-weight: 600; letter-spacing: -0.02em;
  font-family: var(--font-heading); text-wrap: balance; }
p { text-wrap: pretty; }

/* ----------------------------- TOKENS -------------------------------------- */
:root {
  /* fonts (overridden by [data-font]) */
  --font-heading: "Roboto", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;

  /* radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  /* spacing rhythm */
  --section-y: clamp(64px, 9vw, 128px);

  /* shadows */
  --sh-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .05);
  --sh: 0 6px 20px -6px rgba(15, 23, 42, .14), 0 2px 6px rgba(15, 23, 42, .06);
  --sh-lg: 0 28px 60px -20px rgba(15, 23, 42, .28), 0 10px 24px -12px rgba(15, 23, 42, .14);

  /* defaults overridden per theme */
  --bg: #ffffff;
  --surface: #f7f8fa;
  --surface-2: #eef1f5;
  --foreground: #10151f;
  --muted: #5a6678;
  --border: #e4e8ee;
  --primary: #c2410c;
  --primary-dark: #9a3412;
  --primary-fg: #ffffff;
  --accent: #b88746;
  --ring: color-mix(in oklch, var(--primary) 35%, transparent);
}

/* --------------------------- COLOR THEMES ---------------------------------- */
/* 1 — Ember (warm slate + burnt orange) */
[data-theme="ember"] {
  --bg: #ffffff;          --surface: #f8f6f3;     --surface-2: #efece7;
  --foreground: #1b1816;  --muted: #6b6258;       --border: #e8e2da;
  --primary: #c2410c;     --primary-dark: #9a3412; --primary-fg: #fff;
  --accent: #b88746;
}
/* 2 — Indigo (cool ink + deep indigo, sand accent) */
[data-theme="indigo"] {
  --bg: #ffffff;          --surface: #f4f6fa;     --surface-2: #e9edf4;
  --foreground: #121726;  --muted: #5b6478;       --border: #e1e6ef;
  --primary: #2f3e8c;     --primary-dark: #232f6e; --primary-fg: #fff;
  --accent: #c08a3e;
}
/* 3 — Ironclad (charcoal + brick red, steel accent) */
[data-theme="ironclad"] {
  --bg: #ffffff;          --surface: #f5f5f6;     --surface-2: #e9e9eb;
  --foreground: #17181b;  --muted: #62656d;       --border: #e3e3e6;
  --primary: #b5302b;     --primary-dark: #8f2420; --primary-fg: #fff;
  --accent: #4f6172;
}
/* 4 — Pine (warm stone + deep pine, terracotta accent) */
[data-theme="pine"] {
  --bg: #fffefb;          --surface: #f5f4ee;     --surface-2: #eae8df;
  --foreground: #18201b;  --muted: #5f6a60;       --border: #e4e3d8;
  --primary: #1f6047;     --primary-dark: #174a37; --primary-fg: #fff;
  --accent: #bd6a44;
}

/* ---------------------------- FONT PAIRINGS -------------------------------- */
[data-font="grotesk"] {
  --font-heading: "Roboto", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;
}
[data-font="geometric"] {
  --font-heading: "Roboto", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;
}
[data-font="mono-mix"] {
  --font-heading: "Roboto", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;
}

/* ------------------------------ BASE --------------------------------------- */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--foreground);
  font-size: 17px;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter); }
.wrap-wide { max-width: 1340px; }

section { position: relative; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }

.eyebrow { font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
  display: inline-flex; align-items: center; gap: .6em; }
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--primary);
  display: inline-block; }
.eyebrow--center { justify-content: center; }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--muted);
  line-height: 1.6; }

h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); letter-spacing: -0.01em; }

.section-head { max-width: 660px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* ----------------------------- BUTTONS ------------------------------------- */
.btn { --btn-r: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-heading); font-weight: 600; font-size: .98rem;
  letter-spacing: -0.01em; line-height: 1; padding: 16px 26px;
  border-radius: var(--btn-r); border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease,
    border-color .2s ease, color .2s ease; white-space: nowrap; }
.btn svg { width: 1.05em; height: 1.05em; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--primary); color: var(--primary-fg);
  box-shadow: 0 8px 22px -8px color-mix(in oklch, var(--primary) 60%, transparent); }
.btn-primary:hover { background: var(--primary-dark);
  box-shadow: 0 12px 28px -8px color-mix(in oklch, var(--primary) 65%, transparent); }

.btn-outline { background: transparent; color: var(--foreground);
  border-color: var(--border); }
.btn-outline:hover { border-color: var(--foreground);
  background: color-mix(in oklch, var(--foreground) 4%, transparent); }

.btn-ghost { background: color-mix(in oklch, var(--foreground) 5%, transparent);
  color: var(--foreground); }
.btn-ghost:hover { background: color-mix(in oklch, var(--foreground) 9%, transparent); }

.btn-light { background: #fff; color: #1b1816; }
.btn-light:hover { background: #f1efec; }

.btn-on-dark { border-color: rgba(255,255,255,.3); color: #fff; }
.btn-on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-lg { padding: 19px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* CTA-style tweak: pill vs sharp */
[data-cta="pill"] .btn { --btn-r: var(--r-pill); }
[data-cta="sharp"] .btn { --btn-r: 4px; }

/* ----------------------------- TOPBAR -------------------------------------- */
.topbar { background: var(--foreground); color: rgba(255,255,255,.82);
  font-size: .82rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 42px; }
.topbar a { color: #fff; }
.topbar-meta { display: flex; align-items: center; gap: 22px; }
.topbar-meta span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-meta .dot { color: var(--accent); }
.topbar-social { display: flex; align-items: center; gap: 4px; }
.topbar-social a { width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: var(--r-xs); opacity: .8; transition: opacity .2s, background .2s; }
.topbar-social a:hover { opacity: 1; background: rgba(255,255,255,.12); }
.topbar-social svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .topbar-meta span.hide-sm { display: none; }
  .topbar-social { display: none; } }

/* ----------------------------- HEADER -------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { box-shadow: var(--sh); }
.nav { display: flex; align-items: center; gap: 32px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading);
  font-weight: 700; font-size: 1.28rem; letter-spacing: -0.025em; color: var(--foreground); }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; display: grid;
  place-items: center; background: var(--primary); color: var(--primary-fg); flex: none;
  box-shadow: 0 4px 12px -4px color-mix(in oklch, var(--primary) 60%, transparent); }
.brand-mark svg { width: 22px; height: 22px; }
.brand b { font-weight: 700; }
.brand .brand-sub { color: var(--primary); }
.brand-logo { height: 44px; width: auto; display: block; }
.footer-brand .brand-logo { height: 50px; background: #fff; padding: 8px 12px;
  border-radius: 10px; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a { padding: 10px 14px; border-radius: var(--r-xs); font-weight: 500;
  font-size: .98rem; color: var(--foreground); transition: background .18s, color .18s;
  position: relative; white-space: nowrap; }
.nav-links a:hover { background: var(--surface); }
.nav-links a.active { color: var(--primary); }
.nav-links .has-menu { position: relative; display: inline-flex; align-items: center; }
.nav-links .has-menu > a::after { content: ""; display: inline-block; width: 6px;
  height: 6px; margin-left: 7px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg);
  opacity: .5; }
.submenu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 280px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--sh-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: .18s ease; }
.has-menu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: flex; gap: 12px; padding: 11px 12px; border-radius: var(--r-sm); }
.submenu a:hover { background: var(--surface); }
.submenu .si { width: 34px; height: 34px; border-radius: 8px; flex: none;
  display: grid; place-items: center; background: var(--surface-2); color: var(--primary); }
.submenu .si svg { width: 18px; height: 18px; }
.submenu .st { font-weight: 600; font-size: .95rem; }
.submenu .sd { font-size: .82rem; color: var(--muted); line-height: 1.35; }

.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-heading);
  font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; }
.nav-phone .ph-ic { width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--surface-2); color: var(--primary); }
.nav-phone .ph-ic svg { width: 17px; height: 17px; }
.nav-phone small { display: block; font-family: var(--font-body); font-weight: 500;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  border-radius: var(--r-sm); background: var(--bg); cursor: pointer; align-items: center;
  justify-content: center; margin-left: auto; }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1000px) {
  .nav-links, .nav-cta .btn, .nav-phone small { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { margin-left: 0; }
}

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(10,12,18,.5);
  opacity: 0; transition: opacity .25s; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: var(--bg); box-shadow: var(--sh-lg); transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1); padding: 22px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 6px; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; }
.drawer-panel a.dlink { padding: 14px 12px; border-radius: var(--r-sm); font-weight: 600;
  font-size: 1.1rem; font-family: var(--font-heading); border-bottom: 1px solid var(--border); }
.drawer-panel a.dlink:hover { background: var(--surface); }
.drawer-foot { margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--border);
  border-radius: var(--r-sm); background: var(--bg); cursor: pointer; display: grid;
  place-items: center; }
.drawer-close svg { width: 20px; height: 20px; }

/* ----------------------------- HERO ---------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-block: clamp(56px, 7vw, 104px); }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 500; color: var(--foreground); margin-bottom: 26px; }
.hero-kicker .stars { color: var(--accent); letter-spacing: 1px; }
.hero-kicker b { font-weight: 700; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .hl { color: var(--primary); }
.hero-sub { font-size: clamp(1.08rem, 1.5vw, 1.32rem); color: var(--muted);
  max-width: 38ch; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 26px; }
.hero-trust .ht { display: flex; align-items: center; gap: 10px; font-size: .92rem;
  color: var(--foreground); font-weight: 500; }
.hero-trust .ht svg { width: 20px; height: 20px; color: var(--primary); flex: none; }
.hero-trust .sep { width: 1px; height: 22px; background: var(--border); }

.hero-media { position: relative; }
.hero-media .ph { aspect-ratio: 4 / 4.6; border-radius: var(--r-lg); }

/* full-width background banner hero (home) */
.hero--banner { background:
    linear-gradient(180deg, rgba(10,12,18,.55) 0%, rgba(10,12,18,.4) 40%, rgba(10,12,18,.78) 100%),
    url("../public/images/hero/dallas-roofers-background-banner-image.webp") center / cover no-repeat; }
.hero--banner .hero-grid { grid-template-columns: 1fr; min-height: 600px; align-items: center; }
.hero--banner .hero-copy { max-width: 720px; color: #fff; }
.hero--banner h1, .hero--banner .hero-sub { color: #fff; }
.hero--banner .hero-sub { max-width: 48ch; }
.hero--banner h1 .hl { color: #fff; text-decoration: underline;
  text-decoration-color: var(--accent); text-underline-offset: 8px; text-decoration-thickness: 4px; }
.hero--banner .hero-kicker { background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28); color: #fff; }
.hero--banner .hero-trust .ht { color: rgba(255,255,255,.92); }
.hero--banner .hero-trust .ht svg { color: #fff; }
.hero--banner .hero-trust .sep { background: rgba(255,255,255,.3); }
.hero--banner .hero-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.hero--banner .hero-actions .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.hero-badge { position: absolute; left: -22px; bottom: 38px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--sh-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px; max-width: 250px; }
.hero-badge .hb-ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid;
  place-items: center; background: var(--primary); color: var(--primary-fg); }
.hero-badge .hb-ic svg { width: 24px; height: 24px; }
.hero-badge .hb-n { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem;
  line-height: 1; }
.hero-badge .hb-l { font-size: .8rem; color: var(--muted); margin-top: 3px; }

/* hero layout variants (tweak) */
[data-hero="overlay"] .hero-grid { grid-template-columns: 1fr; min-height: 600px;
  align-items: end; }
[data-hero="overlay"] .hero-media { position: absolute; inset: 0; z-index: 0; }
[data-hero="overlay"] .hero-media .ph { width: 100%; height: 100%; aspect-ratio: auto;
  border-radius: 0; border: 0; align-items: end; padding-bottom: 18px;
  background: repeating-linear-gradient(135deg, #1c2230 0 16px, #252c3c 16px 32px); }
[data-hero="overlay"] .hero-media .ph .ph-label { background: rgba(0,0,0,.4);
  color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.18); }
[data-hero="overlay"] .hero-media .ph::after { background: linear-gradient(180deg,
  rgba(10,12,18,.55) 0%, rgba(10,12,18,.35) 38%, rgba(10,12,18,.82) 100%); }
[data-hero="overlay"] .hero-media .hero-badge { display: none; }
[data-hero="overlay"] .hero-copy { position: relative; z-index: 1; color: #fff;
  max-width: 720px; padding-bottom: 22px; }
[data-hero="overlay"] .hero-copy h1, [data-hero="overlay"] .hero-copy .hero-sub { color: #fff; }
[data-hero="overlay"] .hero-copy h1 .hl { color: #fff; text-decoration: underline;
  text-decoration-color: var(--accent); text-underline-offset: 8px; text-decoration-thickness: 4px; }
[data-hero="overlay"] .hero-kicker { background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28); color: #fff; }
[data-hero="overlay"] .hero-trust .ht { color: rgba(255,255,255,.92); }
[data-hero="overlay"] .hero-trust .ht svg { color: #fff; }
[data-hero="overlay"] .hero-trust .sep { background: rgba(255,255,255,.3); }
[data-hero="overlay"] .hero-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
[data-hero="overlay"] .hero-actions .btn-outline:hover { border-color: #fff;
  background: rgba(255,255,255,.1); }

[data-hero="centered"] .hero-grid { grid-template-columns: 1fr; text-align: center;
  justify-items: center; gap: 44px; padding-bottom: 0; }
[data-hero="centered"] .hero-sub { max-width: 56ch; margin-inline: auto; }
[data-hero="centered"] .hero-actions, [data-hero="centered"] .hero-trust { justify-content: center; }
[data-hero="centered"] .hero-kicker { margin-inline: auto; }
[data-hero="centered"] .hero-media { width: 100%; }
[data-hero="centered"] .hero-media .ph { aspect-ratio: 16 / 7; }
[data-hero="centered"] .hero-badge { display: none; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media .ph { aspect-ratio: 16 / 10; }
  .hero-badge { left: 16px; }
  [data-hero="overlay"] .hero-grid { min-height: 540px; }
}

/* --------------------------- PLACEHOLDER ----------------------------------- */
.ph { position: relative; overflow: hidden; background:
    repeating-linear-gradient(135deg, var(--surface) 0 14px, var(--surface-2) 14px 28px);
  border: 1px solid var(--border); display: grid; place-items: center; }
.ph::after { content: ""; position: absolute; inset: 0; }
.ph .ph-label { position: relative; z-index: 1; font-family: ui-monospace, "SFMono-Regular",
  Menlo, monospace; font-size: .76rem; letter-spacing: .04em; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border); padding: 7px 12px;
  border-radius: var(--r-pill); box-shadow: var(--sh-sm); text-align: center; }
.ph.dark { background: repeating-linear-gradient(135deg, #1e2330 0 14px, #262c3b 14px 28px); }
.ph.dark .ph-label { background: rgba(0,0,0,.35); color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.16); }
.ph > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------------------------- TRUST BAR ------------------------------------ */
.trustbar { background: var(--surface); border-block: 1px solid var(--border); }
.trustbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  padding-block: 34px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ti-ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid;
  place-items: center; background: var(--bg); border: 1px solid var(--border); color: var(--primary); }
.trust-item .ti-ic svg { width: 23px; height: 23px; }
.trust-item .tt { font-family: var(--font-heading); font-weight: 700; font-size: 1.04rem;
  letter-spacing: -0.01em; }
.trust-item .td { font-size: .85rem; color: var(--muted); }
@media (max-width: 900px) { .trustbar .wrap { grid-template-columns: repeat(2, 1fr);
  gap: 22px 24px; } }
@media (max-width: 480px) { .trustbar .wrap { grid-template-columns: 1fr; } }

/* --------------------------- SERVICE CARDS --------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.svc-card { position: relative; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg);
  border-color: color-mix(in oklch, var(--primary) 40%, var(--border)); }
.svc-card .svc-media { aspect-ratio: 16 / 10; }
.svc-card .svc-body { padding: 24px 24px 26px; display: flex; flex-direction: column;
  gap: 12px; flex: 1; }
.svc-ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--surface); color: var(--primary); border: 1px solid var(--border); }
.svc-ic svg { width: 26px; height: 26px; }
.svc-card.icon-float .svc-body { position: relative; }
.svc-card.icon-float .svc-ic { position: absolute; top: 0; left: 24px;
  transform: translateY(-50%); background: var(--bg); box-shadow: var(--sh); }
.svc-card h3 { margin-top: 4px; }
.svc-card p { color: var(--muted); font-size: .96rem; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading);
  font-weight: 600; font-size: .95rem; color: var(--primary); margin-top: 2px; }
.svc-link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
@media (max-width: 900px) { .svc-grid, .svc-grid.cols-2 { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }

/* ----------------------------- SPLIT FEATURE ------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px);
  align-items: center; }
.feature.flip .feature-media { order: -1; }
.feature-media .ph { aspect-ratio: 5 / 4.4; border-radius: var(--r-lg); }
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.feature-list li { display: flex; gap: 16px; }
.feature-list .fl-ic { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid;
  place-items: center; background: var(--surface); color: var(--primary); border: 1px solid var(--border); }
.feature-list .fl-ic svg { width: 21px; height: 21px; }
.feature-list .ft { font-family: var(--font-heading); font-weight: 600; font-size: 1.08rem; }
.feature-list .fd { color: var(--muted); font-size: .95rem; margin-top: 3px; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature.flip .feature-media { order: 0; } }

/* ----------------------------- PROCESS ------------------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  counter-reset: step; }
.process-step { position: relative; padding: 30px 24px 28px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r); }
.process-step::before { counter-increment: step; content: "0" counter(step);
  font-family: var(--font-heading); font-weight: 700; font-size: 2.4rem; line-height: 1;
  color: color-mix(in oklch, var(--primary) 22%, transparent); display: block; margin-bottom: 16px; }
.process-step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: .92rem; }
.process-step .pin { position: absolute; top: 30px; right: 24px; width: 38px; height: 38px;
  border-radius: 10px; display: grid; place-items: center; background: var(--surface);
  color: var(--primary); }
.process-step .pin svg { width: 20px; height: 20px; }
@media (max-width: 940px) { .process { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* --------------------------- TESTIMONIALS ---------------------------------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; }
.tst-card.feature-q { grid-row: span 1; background: var(--foreground); color: #fff;
  border-color: var(--foreground); }
.tst-stars { display: flex; gap: 3px; color: var(--accent); }
.tst-stars svg { width: 18px; height: 18px; }
.tst-quote { font-size: 1.08rem; line-height: 1.55; font-family: var(--font-heading);
  font-weight: 500; letter-spacing: -0.01em; flex: 1; }
.tst-card.feature-q .tst-quote { font-size: 1.35rem; }
.tst-who { display: flex; align-items: center; gap: 13px; }
.tst-av { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid;
  place-items: center; font-family: var(--font-heading); font-weight: 700;
  background: var(--surface-2); color: var(--foreground); }
.tst-card.feature-q .tst-av { background: rgba(255,255,255,.16); color: #fff; }
.tst-name { font-weight: 600; }
.tst-loc { font-size: .85rem; color: var(--muted); }
.tst-card.feature-q .tst-loc { color: rgba(255,255,255,.6); }
.tst-svc { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--primary); margin-top: auto; }
.tst-card.feature-q .tst-svc { color: var(--accent); }
@media (max-width: 940px) { .tst-grid { grid-template-columns: 1fr; } }
@media (min-width: 620px) and (max-width: 940px) { .tst-grid { grid-template-columns: repeat(2,1fr); }
  .tst-card.feature-q { grid-column: span 2; } }

/* --------------------------- SERVICE AREA ---------------------------------- */
.area { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 72px);
  align-items: center; }
.area-map .ph { aspect-ratio: 4 / 3; border-radius: var(--r-lg); }
.area-chips { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.area-chip { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-pill);
  font-weight: 500; font-size: .95rem; }
.area-chip svg { width: 15px; height: 15px; color: var(--primary); }
@media (max-width: 900px) { .area { grid-template-columns: 1fr; } }

/* ------------------------------ CTA BAND ----------------------------------- */
.ctaband { position: relative; overflow: hidden; background: var(--foreground); color: #fff; }
.ctaband .ph { position: absolute; inset: 0; opacity: .16; border: 0; }
.ctaband .wrap { position: relative; z-index: 1; display: grid;
  grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center;
  padding-block: clamp(56px, 7vw, 92px); }
.ctaband h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.ctaband p { color: rgba(255,255,255,.72); margin-top: 16px; font-size: 1.12rem; max-width: 46ch; }
.ctaband-actions { display: flex; flex-direction: column; gap: 14px; }
.ctaband-actions .btn { width: 100%; }
.ctaband-phone { text-align: center; margin-top: 4px; }
.ctaband-phone a { font-family: var(--font-heading); font-weight: 700; font-size: 1.7rem;
  letter-spacing: -0.01em; }
.ctaband-phone small { display: block; color: rgba(255,255,255,.6); font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
@media (max-width: 860px) { .ctaband .wrap { grid-template-columns: 1fr; gap: 30px; } }

/* ------------------------------ FOOTER ------------------------------------- */
.site-footer { background: var(--foreground); color: rgba(255,255,255,.66);
  font-size: .94rem; padding-top: clamp(56px, 7vw, 84px); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand p { max-width: 34ch; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.footer-contact a, .footer-contact span { display: flex; gap: 11px; align-items: flex-start;
  color: rgba(255,255,255,.8); }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 600; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a:hover { color: #fff; }
.footer-hours { display: flex; flex-direction: column; gap: 9px; }
.footer-hours .fh { display: flex; justify-content: space-between; gap: 18px;
  padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-hours .fh b { color: #fff; font-weight: 500; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding-block: 26px; flex-wrap: wrap; font-size: .86rem;
  color: rgba(255,255,255,.5); }
.footer-bottom .fb-links { display: flex; gap: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; display: grid;
  place-items: center; background: rgba(255,255,255,.08); transition: background .2s; }
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
@media (max-width: 940px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ----------------------------- PAGE HEADER --------------------------------- */
.pagehead { background: var(--surface); border-bottom: 1px solid var(--border);
  padding-block: clamp(40px, 5vw, 64px); }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: .88rem;
  color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.pagehead h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
.pagehead p { margin-top: 16px; max-width: 60ch; }

/* ------------------------------ FAQ ---------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em;
  color: var(--foreground); }
.faq-q .faq-ic { width: 32px; height: 32px; border-radius: 50%; flex: none; display: grid;
  place-items: center; border: 1px solid var(--border); transition: .25s; position: relative; }
.faq-q .faq-ic::before, .faq-q .faq-ic::after { content: ""; position: absolute;
  background: var(--foreground); border-radius: 2px; }
.faq-q .faq-ic::before { width: 13px; height: 2px; }
.faq-q .faq-ic::after { width: 2px; height: 13px; transition: transform .25s; }
.faq-item.open .faq-q .faq-ic { background: var(--primary); border-color: var(--primary); }
.faq-item.open .faq-q .faq-ic::before, .faq-item.open .faq-q .faq-ic::after { background: #fff; }
.faq-item.open .faq-q .faq-ic::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding-bottom: 26px; color: var(--muted); font-size: 1.02rem; max-width: 68ch; }

/* ------------------------------ FORMS -------------------------------------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .9rem; font-weight: 600; font-family: var(--font-heading); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px;
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 1rem; transition: border-color .18s, box-shadow .18s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none;
  border-color: var(--primary); box-shadow: 0 0 0 4px var(--ring); }
.field textarea { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .span-2 { grid-column: span 2; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; } }

/* ------------------------------ MISC --------------------------------------- */
.bg-surface { background: var(--surface); }
.divider { height: 1px; background: var(--border); border: 0; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 64px);
  align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 30px 30px 32px; }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: 0; }
.info-row .ir-ic { width: 44px; height: 44px; border-radius: 11px; flex: none; display: grid;
  place-items: center; background: var(--bg); border: 1px solid var(--border); color: var(--primary); }
.info-row .ir-ic svg { width: 21px; height: 21px; }
.info-row .il { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; }
.info-row .iv { font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem;
  margin-top: 2px; }
.info-row .iv a:hover { color: var(--primary); }
