/* Emerald Exteriors site styles — combined tokens + components. */
/* ============================================================
   Emerald Exteriors — Colors & Type
   ============================================================
   Brand primitives derived from:
   - "Emerald Exteriors Visual Identity Guidelines" (Sep 2025)
   - "Emerald Marketing Playbook Draft"

   Two brand colors are official:
     Lucky Emerald  #008b48
     Lime Light     #82c341
   Everything else (deeper greens, neutrals, semantics) is derived
   to support a premium, trust-forward UI. Treat additions as
   *system* tokens, not new brand colors.
   ============================================================ */

/* ---------- Fonts ---------- */
/* Cantarell is the official supporting typeface (per guidelines). */
@import url('https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* Roboto Slab is paired as the heritage display face. It echoes
   the heavy serifed terminals of the custom "EMERALD" wordmark. */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700;800;900&display=swap');

:root {
  /* ===== Brand Color Primitives ===== */
  --ee-lucky-emerald: #008b48;   /* Primary brand */
  --ee-lime-light:    #82c341;   /* Secondary brand / accent */
  --ee-true-white:    #ffffff;
  --ee-true-black:    #000000;

  /* ===== Extended Greens (derived) ===== */
  --ee-emerald-950: #002817;
  --ee-emerald-900: #00351e;
  --ee-emerald-800: #004f2c;
  --ee-emerald-700: #006634;
  --ee-emerald-600: #008b48;   /* = Lucky Emerald */
  --ee-emerald-500: #1ba35c;
  --ee-emerald-400: #4cb87a;
  --ee-emerald-300: #82c341;   /* = Lime Light */
  --ee-emerald-200: #b6dd86;
  --ee-emerald-100: #d8ecbc;
  --ee-emerald-50:  #eef6e0;
  --ee-emerald-25:  #f6faec;

  /* ===== Warm Neutrals =====
     Slightly warm grays read more trustworthy and residential than
     pure cool grays. Used for ink, body text, and surfaces. */
  --ee-ink-950: #0e0f0c;
  --ee-ink-900: #1a1b18;
  --ee-ink-800: #262824;
  --ee-ink-700: #3a3c37;
  --ee-ink-600: #55584f;
  --ee-ink-500: #71746b;
  --ee-ink-400: #9a9c93;
  --ee-ink-300: #c2c3bc;
  --ee-ink-200: #dedfd9;
  --ee-ink-100: #ecede8;
  --ee-ink-50:  #f5f5f1;
  --ee-ink-25:  #faf9f5;

  /* ===== Semantic Foreground / Background ===== */
  --ee-fg:        var(--ee-ink-900);
  --ee-fg-muted: var(--ee-ink-600);
  --ee-fg-subtle:var(--ee-ink-500);
  --ee-fg-on-emerald: var(--ee-true-white);
  --ee-fg-inverse: var(--ee-true-white);

  --ee-bg:        var(--ee-true-white);
  --ee-bg-soft:   var(--ee-ink-25);
  --ee-bg-muted:  var(--ee-ink-50);
  --ee-bg-inverse:var(--ee-emerald-900);

  --ee-border:        var(--ee-ink-200);
  --ee-border-strong: var(--ee-ink-300);
  --ee-border-emerald:var(--ee-emerald-600);

  /* ===== Semantic Status =====
     Emerald is also our "success" color — a deliberate reuse.
     Warning + danger are warm and grounded, never cartoonish. */
  --ee-success: var(--ee-emerald-600);
  --ee-success-soft: var(--ee-emerald-50);
  --ee-warning: #c98a18;
  --ee-warning-soft: #fdf5e3;
  --ee-danger:  #b3331b;
  --ee-danger-soft:  #fbece7;
  --ee-info:    #1f5a8c;
  --ee-info-soft:    #e8f0f7;

  /* ===== Focus ring ===== */
  --ee-focus-ring: 0 0 0 3px rgba(0, 139, 72, 0.35);

  /* ===== Typography — Families ===== */
  --ee-font-display: "Roboto Slab", "Roboto Slab Fallback", Georgia, "Times New Roman", serif;
  --ee-font-sans:    "Cantarell", "Cantarell Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --ee-font-mono:    ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  /* ===== Typography — Weights ===== */
  --ee-fw-regular:  400;
  --ee-fw-medium:   500;
  --ee-fw-semibold: 600;
  --ee-fw-bold:     700;
  --ee-fw-black:    900;

  /* ===== Typography — Scale =====
     Tight, premium. No "bouncy" or wildly-large display sizes. */
  --ee-fs-12: 0.75rem;    /* 12 — micro labels, legal */
  --ee-fs-14: 0.875rem;   /* 14 — meta, captions */
  --ee-fs-16: 1rem;       /* 16 — body default */
  --ee-fs-18: 1.125rem;   /* 18 — lede / large body */
  --ee-fs-20: 1.25rem;    /* 20 — sub */
  --ee-fs-24: 1.5rem;     /* 24 — h4 */
  --ee-fs-30: 1.875rem;   /* 30 — h3 */
  --ee-fs-36: 2.25rem;    /* 36 — h2 */
  --ee-fs-48: 3rem;       /* 48 — h1 */
  --ee-fs-60: 3.75rem;    /* 60 — display */
  --ee-fs-72: 4.5rem;     /* 72 — hero display */

  --ee-lh-tight:   1.05;
  --ee-lh-snug:    1.2;
  --ee-lh-normal:  1.5;
  --ee-lh-relaxed: 1.65;

  --ee-tracking-tight:  -0.02em;
  --ee-tracking-normal: 0;
  --ee-tracking-wide:   0.04em;
  --ee-tracking-allcaps:0.12em;  /* Cantarell tracked-out, eyebrow style */

  /* ===== Spacing ===== */
  --ee-space-0:  0;
  --ee-space-1:  4px;
  --ee-space-2:  8px;
  --ee-space-3:  12px;
  --ee-space-4:  16px;
  --ee-space-5:  20px;
  --ee-space-6:  24px;
  --ee-space-8:  32px;
  --ee-space-10: 40px;
  --ee-space-12: 48px;
  --ee-space-16: 64px;
  --ee-space-20: 80px;
  --ee-space-24: 96px;
  --ee-space-32: 128px;

  /* ===== Radii =====
     Crisp and modest. The brand is "heritage, bold, precise" — not
     pill-shaped or softly rounded. */
  --ee-radius-none: 0;
  --ee-radius-xs:   2px;
  --ee-radius-sm:   4px;
  --ee-radius-md:   8px;
  --ee-radius-lg:   12px;
  --ee-radius-xl:   16px;
  --ee-radius-pill: 999px;

  /* ===== Shadows =====
     Low, residential, not flashy. Avoid heavy "Material" elevation. */
  --ee-shadow-xs: 0 1px 2px rgba(14, 15, 12, 0.06);
  --ee-shadow-sm: 0 1px 2px rgba(14, 15, 12, 0.06), 0 1px 3px rgba(14, 15, 12, 0.08);
  --ee-shadow-md: 0 4px 8px -2px rgba(14, 15, 12, 0.08), 0 2px 4px -2px rgba(14, 15, 12, 0.06);
  --ee-shadow-lg: 0 12px 24px -8px rgba(14, 15, 12, 0.12), 0 4px 8px -4px rgba(14, 15, 12, 0.08);
  --ee-shadow-xl: 0 24px 48px -12px rgba(14, 15, 12, 0.18);
  --ee-shadow-emerald: 0 12px 32px -8px rgba(0, 139, 72, 0.35);

  /* ===== Motion ===== */
  --ee-ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ee-ease-inout:  cubic-bezier(0.65, 0, 0.35, 1);
  --ee-dur-fast:    120ms;
  --ee-dur-base:    180ms;
  --ee-dur-slow:    280ms;

  /* ===== Layout ===== */
  --ee-container-max: 1240px;
  --ee-container-tight: 960px;
  --ee-container-prose: 680px;
  --ee-header-height: 72px;
}

/* ============================================================
   Semantic typography classes
   Use these *or* the matching CSS vars. Headings default to
   Roboto Slab; body, UI, and eyebrows use Cantarell.
   ============================================================ */

.ee-display {
  font-family: var(--ee-font-display);
  font-weight: var(--ee-fw-black);
  font-size: clamp(2.75rem, 4.5vw + 1rem, var(--ee-fs-72));
  line-height: var(--ee-lh-tight);
  letter-spacing: var(--ee-tracking-tight);
  color: var(--ee-fg);
  text-wrap: balance;
}

.ee-h1 {
  font-family: var(--ee-font-display);
  font-weight: var(--ee-fw-bold);
  font-size: clamp(2rem, 3vw + 1rem, var(--ee-fs-48));
  line-height: var(--ee-lh-tight);
  letter-spacing: var(--ee-tracking-tight);
  color: var(--ee-fg);
  text-wrap: balance;
}

.ee-h2 {
  font-family: var(--ee-font-display);
  font-weight: var(--ee-fw-bold);
  font-size: clamp(1.625rem, 2vw + 0.75rem, var(--ee-fs-36));
  line-height: var(--ee-lh-snug);
  letter-spacing: var(--ee-tracking-tight);
  color: var(--ee-fg);
  text-wrap: balance;
}

.ee-h3 {
  font-family: var(--ee-font-display);
  font-weight: var(--ee-fw-semibold);
  font-size: var(--ee-fs-24);
  line-height: var(--ee-lh-snug);
  color: var(--ee-fg);
}

.ee-h2--lg { font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem); }
.ee-h3--lg { font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem); }

.ee-h4 {
  font-family: var(--ee-font-display);
  font-weight: var(--ee-fw-semibold);
  font-size: var(--ee-fs-20);
  line-height: var(--ee-lh-snug);
  color: var(--ee-fg);
}

.ee-eyebrow {
  font-family: var(--ee-font-sans);
  font-weight: var(--ee-fw-bold);
  font-size: var(--ee-fs-12);
  line-height: 1;
  letter-spacing: var(--ee-tracking-allcaps);
  text-transform: uppercase;
  color: var(--ee-emerald-600);
}

.ee-lede {
  font-family: var(--ee-font-sans);
  font-weight: var(--ee-fw-regular);
  font-size: var(--ee-fs-18);
  line-height: var(--ee-lh-relaxed);
  color: var(--ee-fg-muted);
  text-wrap: pretty;
}

.ee-body {
  font-family: var(--ee-font-sans);
  font-weight: var(--ee-fw-regular);
  font-size: var(--ee-fs-16);
  line-height: var(--ee-lh-relaxed);
  color: var(--ee-fg);
  text-wrap: pretty;
}

.ee-small {
  font-family: var(--ee-font-sans);
  font-size: var(--ee-fs-14);
  line-height: var(--ee-lh-normal);
  color: var(--ee-fg-muted);
}

.ee-meta {
  font-family: var(--ee-font-sans);
  font-size: var(--ee-fs-12);
  line-height: var(--ee-lh-normal);
  color: var(--ee-fg-subtle);
}

/* All-caps label used for buttons, tabs, badges */
.ee-label {
  font-family: var(--ee-font-sans);
  font-weight: var(--ee-fw-bold);
  font-size: var(--ee-fs-14);
  letter-spacing: var(--ee-tracking-allcaps);
  text-transform: uppercase;
  line-height: 1;
}

/* Wordmark-style headline. Used sparingly — feels like the logo. */
.ee-wordmark {
  font-family: var(--ee-font-display);
  font-weight: var(--ee-fw-black);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

/* Quote / pull-quote */
.ee-quote {
  font-family: var(--ee-font-display);
  font-weight: var(--ee-fw-medium);
  font-style: italic;
  font-size: var(--ee-fs-24);
  line-height: var(--ee-lh-snug);
  color: var(--ee-fg);
}

/* Underline-on-hover link, ink color */
.ee-link {
  color: var(--ee-emerald-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--ee-dur-fast) var(--ee-ease-out);
}
.ee-link:hover { color: var(--ee-emerald-800); }

/* ============================================================
   Components (ported from ui_kits/marketing_site/styles.css)
   ============================================================ */
/* Marketing site styles. Inherits tokens from /colors_and_type.css */
* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--ee-font-sans);
  color: var(--ee-fg);
  background: var(--ee-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

/* ---------- Containers ---------- */
.ee-container { max-width: var(--ee-container-max); margin: 0 auto; padding: 0 24px; }
.ee-container-tight { max-width: var(--ee-container-tight); margin: 0 auto; padding: 0 24px; }

/* ---------- Section rhythm ---------- */
.ee-section { padding: 96px 0; }
@media (max-width: 768px) { .ee-section { padding: 56px 0; } }

/* ---------- Buttons ---------- */
.ee-btn {
  font-family: var(--ee-font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 180ms var(--ee-ease-out);
  white-space: nowrap;
}
.ee-btn-primary { background: var(--ee-emerald-600); color: #fff; }
.ee-btn-primary:hover { background: var(--ee-emerald-700); transform: translateY(-1px); box-shadow: 0 6px 12px -4px rgba(0,139,72,0.35); }
.ee-btn-primary:active { background: var(--ee-emerald-800); transform: translateY(0); }
.ee-btn-secondary {
  background: #fff;
  color: var(--ee-emerald-700);
  border-color: var(--ee-emerald-600);
}
.ee-btn-secondary:hover { background: var(--ee-emerald-50); }
.ee-btn-ghost {
  background: transparent;
  color: var(--ee-ink-900);
  border-color: var(--ee-ink-200);
}
.ee-btn-ghost:hover { background: var(--ee-ink-50); border-color: var(--ee-ink-300); }
.ee-btn-on-dark {
  background: #fff;
  color: var(--ee-emerald-800);
}
.ee-btn-on-dark:hover { background: var(--ee-emerald-50); }
.ee-btn-sm { height: 36px; padding: 0 14px; font-size: 12px; }
.ee-btn-lg { height: 56px; padding: 0 28px; font-size: 15px; }

.ee-btn-link {
  background: none; border: 0;
  color: var(--ee-emerald-700);
  padding: 0; height: auto;
  text-transform: none; letter-spacing: 0;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.ee-btn-link:hover { color: var(--ee-emerald-800); }
.ee-btn-link .ee-arrow { transition: transform 180ms var(--ee-ease-out); }
.ee-btn-link:hover .ee-arrow { transform: translateX(3px); }

/* ---------- Form fields ---------- */
.ee-input, .ee-select {
  width: 100%;
  font-family: var(--ee-font-sans);
  font-size: 15px;
  color: var(--ee-fg);
  height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--ee-border);
  background: #fff;
  outline: none;
  transition: all 150ms var(--ee-ease-out);
}
.ee-input:focus, .ee-select:focus {
  border-color: var(--ee-emerald-600);
  box-shadow: 0 0 0 3px rgba(0,139,72,0.18);
}
.ee-input.ee-error { border-color: var(--ee-danger); }
.ee-input.ee-error:focus { box-shadow: 0 0 0 3px rgba(179,51,27,0.18); }
.ee-label-text {
  font-family: var(--ee-font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--ee-fg);
  display: block;
  margin-bottom: 6px;
}
.ee-hint { font-size: 12px; color: var(--ee-fg-muted); margin-top: 6px; }
.ee-error-text { font-size: 12px; color: var(--ee-danger); margin-top: 6px; font-weight: 600; }

/* ---------- Cards ---------- */
.ee-card {
  background: #fff;
  border: 1px solid var(--ee-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--ee-shadow-sm);
  transition: all 180ms var(--ee-ease-out);
}

/* ---------- Icon box ---------- */
.ee-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--ee-emerald-50);
  color: var(--ee-emerald-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ee-icon-box-dark {
  background: rgba(255,255,255,0.1);
  color: var(--ee-emerald-300);
}

/* ---------- Eyebrow + accent rule ---------- */
.ee-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ee-font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ee-emerald-700);
  margin-bottom: 16px;
}
.ee-eyebrow-row::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--ee-emerald-600);
}
.ee-eyebrow-row.on-dark { color: var(--ee-emerald-300); }
.ee-eyebrow-row.on-dark::before { background: var(--ee-emerald-300); }

/* ---------- Photo placeholder ---------- */
.ee-photo {
  position: relative;
  background-color: var(--ee-emerald-100);
  background-image:
    linear-gradient(135deg, rgba(0,139,72,0.10) 0%, rgba(0,139,72,0.18) 50%, rgba(0,51,28,0.25) 100%),
    linear-gradient(0deg, rgba(0,51,28,0.35) 0%, transparent 35%);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.ee-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 60% at 20% 20%, rgba(255,255,255,0.5) 0%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(0,51,28,0.06) 0, rgba(0,51,28,0.06) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(0,51,28,0.06) 0, rgba(0,51,28,0.06) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.ee-photo-label {
  position: relative;
  z-index: 1;
  font-family: var(--ee-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ee-emerald-900);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 4px;
  margin: 12px;
}
.ee-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ee-photo--has-image { background-image: none; }
.ee-photo--has-image::after { content: none; }

/* ---------- Misc ---------- */
.ee-divider { border: 0; border-top: 1px solid var(--ee-border); margin: 0; }
.ee-divider-dark { border: 0; border-top: 1px solid rgba(255,255,255,0.12); margin: 0; }

/* ============================================================
   Jekyll site — structural BEM classes
   (replaces inline styles used by the React kit)
   ============================================================ */

/* ---------- Site header ---------- */
.ee-site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: background 200ms var(--ee-ease-out), border-color 200ms var(--ee-ease-out), backdrop-filter 200ms var(--ee-ease-out);
}
.ee-site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--ee-border);
}
.ee-site-header__inner {
  height: var(--ee-header-height);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ee-site-header__brand { display: inline-flex; }
.ee-site-header__brand img { height: 36px; width: auto; }
.ee-site-header__right { display: flex; gap: 12px; align-items: center; }
.ee-site-header__phone {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--ee-font-sans); font-weight: 700; font-size: 14px;
  color: var(--ee-ink-900);
}
.ee-site-header__menu-btn {
  display: none;
  background: none; border: 0; padding: 8px; margin: 0;
  color: var(--ee-ink-900); cursor: pointer; border-radius: 6px;
  align-items: center; justify-content: center;
}
.ee-site-header__menu-btn:hover { background: var(--ee-ink-50); }

/* ---------- Mobile nav panel ---------- */
.ee-mobile-nav {
  display: none;
  position: fixed; top: var(--ee-header-height); left: 0; right: 0;
  max-height: calc(100dvh - var(--ee-header-height)); overflow-y: auto;
  background: #fff;
  border-bottom: 1px solid var(--ee-border);
  box-shadow: var(--ee-shadow-md);
  z-index: 49;
}
.ee-mobile-nav.is-open { display: block; }
.ee-mobile-nav__inner {
  display: flex; flex-direction: column;
  padding: 8px 16px;
}
.ee-mobile-nav__link {
  display: block; padding: 14px 8px;
  font-family: var(--ee-font-sans); font-weight: 700; font-size: 16px;
  color: var(--ee-ink-900);
  border-bottom: 1px solid var(--ee-border);
}
.ee-mobile-nav__link--active { color: var(--ee-emerald-700); }
.ee-mobile-nav__children {
  display: flex; flex-direction: column;
  padding-left: 16px;
  border-bottom: 1px solid var(--ee-border);
}
.ee-mobile-nav__children + .ee-mobile-nav__link { border-top: 0; }
/* The parent "Services" row sits directly above the children; drop its bottom border so they read as one block. */
.ee-mobile-nav__link:has(+ .ee-mobile-nav__children) { border-bottom: 0; }
.ee-mobile-nav__child {
  display: block; padding: 12px 8px;
  font-family: var(--ee-font-sans); font-weight: 500; font-size: 15px;
  color: var(--ee-ink-700);
}
.ee-mobile-nav__child + .ee-mobile-nav__child { border-top: 1px solid var(--ee-border); }
.ee-mobile-nav__child--active { color: var(--ee-emerald-700); font-weight: 700; }
.ee-mobile-nav__footer {
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--ee-border);
  background: var(--ee-bg-soft);
}
.ee-mobile-nav__phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ee-font-sans); font-weight: 700; font-size: 15px;
  color: var(--ee-ink-900);
  padding: 12px;
}

/* ---------- Site nav ---------- */
.ee-site-nav { display: flex; gap: 4px; align-items: center; }
.ee-site-nav__group { position: relative; }
.ee-site-nav__link {
  font-family: var(--ee-font-sans); font-size: 14px; font-weight: 600;
  color: var(--ee-ink-800);
  padding: 8px 14px; border-radius: 6px;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
  transition: all 150ms var(--ee-ease-out);
  background: transparent; border: 0; cursor: pointer;
  text-decoration: none;
}
.ee-site-nav__link:hover,
.ee-site-nav__group:hover .ee-site-nav__link,
.ee-site-nav__group:focus-within .ee-site-nav__link,
.ee-site-nav__group.is-open .ee-site-nav__link { background: var(--ee-ink-50); }
.ee-site-nav__link--active {
  color: var(--ee-emerald-700);
  background: var(--ee-emerald-50);
}
.ee-site-nav__link--active:hover,
.ee-site-nav__group:hover .ee-site-nav__link--active,
.ee-site-nav__group:focus-within .ee-site-nav__link--active,
.ee-site-nav__group.is-open .ee-site-nav__link--active { background: var(--ee-emerald-50); }
.ee-site-nav__link svg { transition: transform 150ms var(--ee-ease-out); }
.ee-site-nav__group:hover .ee-site-nav__link svg,
.ee-site-nav__group:focus-within .ee-site-nav__link svg,
.ee-site-nav__group.is-open .ee-site-nav__link svg { transform: rotate(180deg); }
.ee-site-nav__menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff; border: 1px solid var(--ee-border); border-radius: 12px;
  box-shadow: var(--ee-shadow-lg);
  padding: 12px; min-width: 360px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity 150ms var(--ee-ease-out), transform 150ms var(--ee-ease-out);
}
/* Invisible bridge fills the 8px gap so hover stays continuous when the
   cursor moves from the trigger down into the menu. */
.ee-site-nav__menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 100%; height: 8px;
}
.ee-site-nav__group.is-open .ee-site-nav__menu,
.ee-site-nav__group:hover .ee-site-nav__menu,
.ee-site-nav__group:focus-within .ee-site-nav__menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.ee-site-nav__menu-item {
  padding: 12px; border-radius: 8px;
  display: flex; flex-direction: column; gap: 2px;
  transition: background 120ms var(--ee-ease-out);
}
.ee-site-nav__menu-item:hover { background: var(--ee-emerald-50); }
.ee-site-nav__menu-label {
  font-family: var(--ee-font-sans); font-weight: 700; font-size: 14px;
  color: var(--ee-fg);
}
.ee-site-nav__menu-blurb {
  font-family: var(--ee-font-sans); font-size: 12px; color: var(--ee-fg-muted);
}

/* ---------- Page hero ---------- */
.ee-page-hero { padding: 72px 0; border-bottom: 1px solid var(--ee-border); }
.ee-page-hero--light { background: var(--ee-bg-soft); color: var(--ee-fg); }
.ee-page-hero__inner { max-width: 820px; }
.ee-page-hero__title {
  font-family: var(--ee-font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  line-height: 1.1;
  letter-spacing: var(--ee-tracking-tight);
  margin: 0;
  text-wrap: balance;
}
.ee-page-hero__lede {
  font-family: var(--ee-font-sans); font-size: var(--ee-fs-18);
  line-height: var(--ee-lh-relaxed); max-width: 640px;
  margin: 24px 0 0; text-wrap: pretty;
  color: var(--ee-fg-muted);
}
.ee-page-hero__ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.ee-footer {
  background: var(--ee-emerald-900); color: #fff;
  padding: 64px 0 32px;
}
.ee-footer__grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr); gap: 48px; margin-bottom: 48px;
}
.ee-footer__brand img { height: 40px; width: auto; margin-bottom: 20px; }
.ee-footer__brand p {
  font-family: var(--ee-font-sans); font-size: 14px;
  color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; max-width: 320px;
}
.ee-footer__phone {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ee-font-sans); font-weight: 700; font-size: 16px;
  color: #fff;
}
.ee-footer__heading {
  font-family: var(--ee-font-sans); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ee-emerald-300); margin-bottom: 16px;
}
.ee-footer__col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ee-footer__col a {
  font-family: var(--ee-font-sans); font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 120ms var(--ee-ease-out);
}
.ee-footer__col a:hover { color: #fff; }
.ee-footer__legal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; flex-wrap: wrap; gap: 16px;
  font-family: var(--ee-font-sans); font-size: 12px; color: rgba(255,255,255,0.5);
}
.ee-footer__legal-links { display: flex; gap: 24px; }
.ee-footer__legal a { color: inherit; }

/* ---------- Star rating row ---------- */
.ee-stars { display: inline-flex; gap: 2px; color: var(--ee-warning); }
.ee-stars--empty { color: var(--ee-ink-200); }

/* ---------- Misc small ---------- */
.ee-photo--flat { border-radius: 0; }
@media (max-width: 1024px) {
  .ee-site-nav { display: none; }
  .ee-site-header__menu-btn { display: inline-flex; }
  .ee-site-header__phone { display: none; }
  /* Schedule CTA in the header is redundant with the hamburger panel and pushes the header past 375px. */
  .ee-site-header__cta { display: none; }
  .ee-footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; }
}

/* ============================================================
   Section-level layouts for the Jekyll site
   ============================================================ */

.ee-section--white { background: #fff; }

/* Generic 2-column form grid */
.ee-grid-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }

/* Badge — same look as the React kit's <EEBadge> */
.ee-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ee-font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px; border: 1px solid transparent;
}
.ee-badge--soft    { background: var(--ee-emerald-50); color: var(--ee-emerald-800); border-color: var(--ee-emerald-100); }

/* ---------- Hero (home) ---------- */
.ee-hero { background: #fff; padding: 64px 0 96px; position: relative; overflow: hidden; }
.ee-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px; align-items: center;
}
.ee-hero__title {
  font-family: var(--ee-font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 4.5vw + 1rem, 4.25rem);
  line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 28px; max-width: 680px; text-wrap: balance;
}
.ee-hero__lede {
  font-family: var(--ee-font-sans);
  font-size: var(--ee-fs-18); line-height: 1.65;
  color: var(--ee-fg-muted);
  margin: 0 0 32px; max-width: 560px;
}
.ee-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.ee-hero__proof-row { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.ee-hero__proof {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ee-ink-800);
  font-family: var(--ee-font-sans); font-weight: 600; font-size: 14px;
}
.ee-hero__proof-icon { color: var(--ee-emerald-600); display: inline-flex; }
.ee-hero__photo-wrap { position: relative; }
.ee-hero__quote-card {
  position: absolute; bottom: 24px; left: -32px; width: 280px;
  background: #fff; border-radius: 12px; padding: 16px;
  box-shadow: var(--ee-shadow-lg); border: 1px solid var(--ee-border);
  display: flex; flex-direction: column; gap: 8px;
}
.ee-hero__quote {
  font-family: var(--ee-font-display); font-style: italic;
  font-weight: 500; font-size: 15px; line-height: 1.4;
  color: var(--ee-ink-900);
}
.ee-hero__quote-attrib {
  font-family: var(--ee-font-sans); font-size: 12px; color: var(--ee-fg-muted);
}

/* ---------- Trust strip ---------- */
.ee-trust-strip {
  background: var(--ee-bg-soft);
  border-top: 1px solid var(--ee-border);
  border-bottom: 1px solid var(--ee-border);
  padding: 32px 0;
}
.ee-trust-strip__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; align-items: center;
}
.ee-trust-strip__item { display: flex; align-items: flex-start; gap: 14px; }
.ee-trust-strip__icon { width: 40px; height: 40px; }
.ee-trust-strip__title {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 16px;
  color: var(--ee-fg); line-height: 1.2;
}
.ee-trust-strip__body {
  font-family: var(--ee-font-sans); font-size: 13px; color: var(--ee-fg-muted);
  margin-top: 4px; line-height: 1.4;
}

/* ---------- Badges strip (rotating certifications) ---------- */
.ee-badges-strip {
  background: var(--ee-emerald-900);
  padding: 20px 0;
}
.ee-badges-strip__viewport { overflow: hidden; }
.ee-badges-strip__track {
  --badges-visible: 7;
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.ee-badges-strip__item {
  flex: 0 0 calc(100% / var(--badges-visible));
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px; box-sizing: border-box;
}
.ee-badges-strip__item img {
  max-height: 64px; max-width: 100%; width: auto; height: auto;
  display: block; object-fit: contain;
}
@media (max-width: 1024px) {
  .ee-badges-strip__track { --badges-visible: 4; }
}
@media (max-width: 640px) {
  .ee-badges-strip__track { --badges-visible: 3; }
  .ee-badges-strip__item { padding: 0 12px; }
  .ee-badges-strip__item img { max-height: 52px; }
}
@media (max-width: 480px) {
  .ee-badges-strip__track { --badges-visible: 2; }
}
@media (prefers-reduced-motion: reduce) {
  .ee-badges-strip__track { transition: none; }
}

/* ---------- Service grid (home) ---------- */
.ee-service-grid__head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px;
  align-items: center; margin-bottom: 48px;
}
.ee-service-grid__tabs {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 32px;
}
.ee-service-tab {
  cursor: pointer; text-align: left; padding: 20px;
  border: 1px solid var(--ee-border); background: #fff;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 180ms var(--ee-ease-out);
  font: inherit; color: inherit;
}
.ee-service-tab:hover { box-shadow: var(--ee-shadow-md); transform: translateY(-1px); }
.ee-service-tab.is-active {
  background: var(--ee-emerald-50);
  border-color: var(--ee-emerald-200);
  outline: 1px solid var(--ee-emerald-600);
  outline-offset: -1px;
}
.ee-service-tab__name {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 22px; color: var(--ee-fg);
}
.ee-service-tab__blurb {
  font-family: var(--ee-font-sans); font-size: 14px; color: var(--ee-fg-muted); line-height: 1.5;
}
.ee-service-grid__detail {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 32px; align-items: stretch;
  background: var(--ee-bg-soft); border-radius: 16px; padding: 32px;
  border: 1px solid var(--ee-border);
}
.ee-service-grid__detail.is-hidden { display: none; }
.ee-service-grid__detail-copy {
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.ee-service-grid__bullets {
  margin: 8px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.ee-service-grid__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ee-font-sans); font-size: 15px; color: var(--ee-ink-800);
}
.ee-service-grid__check { color: var(--ee-emerald-600); }
.is-hidden { display: none !important; }

/* ---------- Emerald way ---------- */
.ee-emerald-way { background: var(--ee-emerald-900); color: #fff; }
.ee-emerald-way__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 64px; align-items: flex-start;
}
.ee-emerald-way__title { margin: 0; color: #fff; font-size: 2.5rem; }
.ee-emerald-way__lede { margin: 20px 0 0; color: rgba(255,255,255,0.78); max-width: 460px; }
.ee-emerald-way__stats {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.ee-stat__value {
  font-family: var(--ee-font-display); font-weight: 800;
  font-size: 42px; line-height: 1; color: #fff; letter-spacing: -0.02em;
}
.ee-stat__label {
  font-family: var(--ee-font-sans); font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px;
}
.ee-emerald-way__values {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px;
}
.ee-emerald-way__values--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ee-emerald-way__value {
  background: var(--ee-emerald-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 22px;
}
.ee-emerald-way__value-title {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 18px; margin: 14px 0 6px;
}
.ee-emerald-way__value-body {
  font-family: var(--ee-font-sans); font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.55;
}

/* ---------- Before/after slider ---------- */
.ee-before-after {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 56px; align-items: center;
}
.ee-ba-slider {
  position: relative; width: 100%; aspect-ratio: 16 / 10;
  border-radius: 12px; overflow: hidden;
  user-select: none; cursor: ew-resize;
  box-shadow: var(--ee-shadow-lg);
}
.ee-ba-slider__before, .ee-ba-slider__after { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ee-ba-slider__before {
  background-image: url("/assets/images/home-before.webp");
  filter: brightness(0.85) saturate(0.8);
}
.ee-ba-slider__after {
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
  background-image: url("/assets/images/home-after.webp");
  filter: brightness(1.1) saturate(1.2);
}
.ee-ba-slider__label {
  position: absolute; top: 16px;
  font-family: var(--ee-font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 4px;
  z-index: 2;
  transition: opacity 0.18s ease;
}
.ee-ba-slider__label--before {
  right: 16px; background: rgba(255,255,255,0.85); color: var(--ee-ink-900);
}
.ee-ba-slider__label--after  {
  left: 16px; background: var(--ee-emerald-600); color: #fff;
}
.ee-ba-slider[data-ba-edge="after-hidden"] .ee-ba-slider__label--after { opacity: 0; }
.ee-ba-slider[data-ba-edge="before-hidden"] .ee-ba-slider__label--before { opacity: 0; }
.ee-ba-slider__divider {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos);
  width: 2px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  z-index: 3;
}
.ee-ba-slider__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--ee-emerald-700);
}

/* ---------- Testimonial (home) ---------- */
.ee-testimonial__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.ee-testimonial__score {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ee-font-sans);
}
.ee-testimonial__score-val { font-weight: 700; color: var(--ee-fg); }
.ee-testimonial__score-count { color: var(--ee-fg-muted); }
.ee-testimonial__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ee-testimonial__card { padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.ee-testimonial__quote-icon { color: var(--ee-emerald-600); }
.ee-testimonial__quote { font-size: 18px; line-height: 1.45; color: var(--ee-ink-900); }
.ee-testimonial__attrib {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--ee-border);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.ee-testimonial__person { display: flex; align-items: center; gap: 12px; min-width: 0; }
.ee-testimonial__name {
  font-family: var(--ee-font-sans); font-weight: 700; font-size: 14px; color: var(--ee-fg);
}
.ee-testimonial__where {
  font-family: var(--ee-font-sans); font-size: 12px; color: var(--ee-fg-muted);
}
.ee-avatar {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%; object-fit: cover;
  background: var(--ee-bg-soft);
  box-shadow: 0 0 0 1px var(--ee-border);
}

/* ---------- Inspection form ---------- */
.ee-inspection {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 64px; align-items: flex-start;
}
.ee-inspection__bullets {
  margin-top: 20px; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.ee-inspection__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ee-font-sans); font-size: 14px; color: var(--ee-ink-800);
}
.ee-inspection__check { color: var(--ee-emerald-600); }
.ee-inspection__form { padding: 32px; box-shadow: var(--ee-shadow-md); }
.ee-inspection__stepper {
  display: flex; gap: 8px; margin-bottom: 24px;
}
.ee-inspection__step {
  flex: 1; display: flex; flex-direction: column; gap: 6px;
}
.ee-inspection__step-bar {
  height: 4px; border-radius: 2px;
  background: var(--ee-ink-100);
  transition: background 200ms var(--ee-ease-out);
}
.ee-inspection__step.is-reached .ee-inspection__step-bar {
  background: var(--ee-emerald-600);
}
.ee-inspection__step-label {
  font-family: var(--ee-font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ee-fg-muted);
  transition: color 200ms var(--ee-ease-out);
}
.ee-inspection__step.is-active .ee-inspection__step-label {
  color: var(--ee-emerald-700);
}
.ee-inspection__panel.is-hidden { display: none; }
.ee-inspection__service-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px;
  margin-top: 6px; margin-bottom: 6px;
}
.ee-service-radio {
  cursor: pointer; padding: 14px 10px; border-radius: 8px;
  border: 1.5px solid var(--ee-border); background: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--ee-font-sans); font-size: 12px; font-weight: 700;
  color: var(--ee-fg); text-transform: capitalize;
  transition: all 150ms var(--ee-ease-out);
}
.ee-service-radio input { position: absolute; opacity: 0; pointer-events: none; }
.ee-service-radio.is-checked {
  background: var(--ee-emerald-50);
  border-color: var(--ee-emerald-600);
  color: var(--ee-emerald-800);
}
.ee-pill-radios { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.ee-pill {
  cursor: pointer; padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--ee-border); background: #fff;
  color: var(--ee-fg);
  font-family: var(--ee-font-sans); font-size: 13px; font-weight: 600;
  transition: all 150ms var(--ee-ease-out);
}
.ee-pill input { position: absolute; opacity: 0; pointer-events: none; }
.ee-pill.is-checked {
  background: var(--ee-emerald-50);
  border-color: var(--ee-emerald-600);
  color: var(--ee-emerald-800);
}
.ee-inspection__success {
  padding: 32px 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
.ee-inspection__actions {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--ee-border);
}

/* ---------- Service page sections ---------- */
.ee-svc-truststrip {
  background: #fff; border-bottom: 1px solid var(--ee-border); padding: 20px 0;
}
.ee-svc-truststrip__inner {
  display: flex; gap: 40px; align-items: center; flex-wrap: wrap; justify-content: center;
}
.ee-svc-truststrip__item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ee-font-sans); font-weight: 600; font-size: 14px; color: var(--ee-fg);
}
.ee-svc-truststrip__icon { color: var(--ee-emerald-600); display: inline-flex; }
.ee-svc-materials__head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 64px;
  margin-bottom: 32px; align-items: flex-end;
}
.ee-svc-materials__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ee-svc-material { display: flex; flex-direction: column; gap: 10px; padding: 22px; }
.ee-svc-material__name {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 17px; color: var(--ee-fg);
}
.ee-svc-material__detail {
  font-family: var(--ee-font-sans); font-size: 13px; color: var(--ee-fg-muted); line-height: 1.5;
}
.ee-svc-material__life {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--ee-border);
  font-family: var(--ee-font-sans); font-size: 12px; font-weight: 700; color: var(--ee-emerald-700);
}
.ee-svc-process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.ee-svc-process__step { display: flex; flex-direction: column; gap: 10px; }
.ee-svc-process__n {
  font-family: var(--ee-font-display); font-weight: 800; font-size: 38px; line-height: 1;
  color: var(--ee-emerald-300); letter-spacing: -0.02em;
}
.ee-svc-process__title {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 19px; color: var(--ee-fg);
}
.ee-svc-process__body {
  font-family: var(--ee-font-sans); font-size: 14px; color: var(--ee-fg-muted); line-height: 1.55;
}
.ee-svc-projects { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ee-svc-project {
  background: var(--ee-emerald-800); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.ee-svc-project__body { padding: 20px; }
.ee-svc-project__where { font-family: var(--ee-font-display); font-weight: 700; font-size: 18px; }
.ee-svc-project__meta {
  display: flex; justify-content: space-between; margin-top: 6px;
  font-family: var(--ee-font-sans); font-size: 13px; color: rgba(255,255,255,0.7);
}
.ee-svc-faqs { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 64px; }
.ee-svc-faqs__list { display: flex; flex-direction: column; gap: 8px; }
.ee-faq {
  border: 1px solid var(--ee-border); border-radius: 12px; background: #fff;
  transition: all 150ms var(--ee-ease-out);
}
.ee-faq[open] {
  background: var(--ee-emerald-50); border-color: var(--ee-emerald-200);
}
.ee-faq summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.ee-faq summary::-webkit-details-marker { display: none; }
.ee-faq__q {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 17px; color: var(--ee-fg);
}
.ee-faq__chev { color: var(--ee-emerald-700); transition: transform 200ms var(--ee-ease-out); display: inline-flex; }
.ee-faq[open] .ee-faq__chev { transform: rotate(180deg); }
.ee-faq__a {
  padding: 0 22px 18px;
  font-family: var(--ee-font-sans); font-size: 15px; color: var(--ee-ink-700); line-height: 1.6;
}
.ee-cta-strip {
  background: var(--ee-bg-soft); padding: 64px 0; border-top: 1px solid var(--ee-border);
}
.ee-cta-strip__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.ee-cta-strip__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Process page ---------- */
.ee-process-list { display: flex; flex-direction: column; gap: 48px; }
.ee-process-step {
  display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 32px;
  padding-bottom: 48px; border-bottom: 1px solid var(--ee-border);
}
.ee-process-step:last-child { border-bottom: none; padding-bottom: 0; }
.ee-process-step__n {
  font-family: var(--ee-font-display); font-weight: 800; font-size: 60px;
  line-height: 1; color: var(--ee-emerald-300); letter-spacing: -0.02em;
}
.ee-process-step__deliverables {
  margin-top: 20px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
}
.ee-process-step__deliverable {
  background: var(--ee-bg-soft); border-radius: 8px; padding: 12px 14px;
  font-family: var(--ee-font-sans); font-size: 13px; color: var(--ee-ink-800);
  display: flex; align-items: flex-start; gap: 8px; border: 1px solid var(--ee-border);
}
.ee-process-step__check { color: var(--ee-emerald-600); flex-shrink: 0; margin-top: 1px; display: inline-flex; }

/* ---------- Chip filter rows ---------- */
.ee-chip-row { display: flex; gap: 6px; flex-wrap: wrap; }
.ee-chip {
  cursor: pointer; padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--ee-border); background: #fff; color: var(--ee-fg);
  font-family: var(--ee-font-sans); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 150ms var(--ee-ease-out);
}
.ee-chip:hover { border-color: var(--ee-border-strong); }
.ee-chip.is-active { background: var(--ee-emerald-600); border-color: var(--ee-emerald-600); color: #fff; }
.ee-chip__count { opacity: 0.7; font-weight: 600; }
.ee-chip.is-active .ee-chip__count { opacity: 0.85; }

/* ---------- Reviews page ---------- */
.ee-rev-summary {
  display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap;
}
.ee-rev-summary__score { text-align: center; }
.ee-rev-summary__score-val {
  font-family: var(--ee-font-display); font-weight: 800; font-size: 80px;
  line-height: 1; color: var(--ee-emerald-700); letter-spacing: -0.02em;
}
.ee-rev-summary__score-count {
  font-family: var(--ee-font-sans); font-size: 13px; color: var(--ee-fg-muted); margin-top: 6px;
}
.ee-rev-summary__badge { height: 120px; width: auto; }
.ee-rev-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}
.ee-rev-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }

/* ---------- About page ---------- */
.ee-about-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 64px; align-items: center; }
.ee-about-story__body {
  margin-top: 18px; color: var(--ee-fg-muted);
  font-family: var(--ee-font-sans); font-size: 16px; line-height: 1.65;
  display: flex; flex-direction: column; gap: 14px;
}
.ee-about-story__body p { margin: 0; }
.ee-team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.ee-team-person__body { margin-top: 14px; }
.ee-team-person__name {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 18px; color: var(--ee-fg);
}
.ee-team-person__role {
  font-family: var(--ee-font-sans); font-size: 13px; color: var(--ee-fg-muted); margin-top: 2px;
}
.ee-team-person__tenure {
  font-family: var(--ee-font-sans); font-size: 12px; color: var(--ee-emerald-700);
  margin-top: 4px; font-weight: 600;
}
.ee-area-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.ee-area-list {
  margin-top: 28px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 8px;
}
.ee-area-list__item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ee-font-sans); font-size: 14px; color: var(--ee-fg);
}
.ee-area-list__check { color: var(--ee-emerald-600); display: inline-flex; }
.ee-map-placeholder {
  position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
  background: var(--ee-emerald-50); border: 1px solid var(--ee-emerald-100);
}
.ee-map-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0,139,72,0.08) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(0,139,72,0.08) 0 1px, transparent 1px 36px);
}
.ee-map-placeholder__blob {
  position: absolute; top: 20%; left: 15%; width: 70%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(0,139,72,0.25) 0%, rgba(0,139,72,0.12) 60%, transparent 100%);
  border-radius: 50%;
}
.ee-map-pin { position: absolute; color: var(--ee-emerald-700); }

/* ---------- Contact methods ---------- */
.ee-contact-methods { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.ee-contact-method { display: flex; flex-direction: column; gap: 10px; }
.ee-contact-method__title {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 18px;
}
.ee-contact-method__value {
  font-family: var(--ee-font-sans); font-size: 16px; color: var(--ee-emerald-300);
}
.ee-contact-method__detail {
  font-family: var(--ee-font-sans); font-size: 13px; color: rgba(255,255,255,0.7);
}

/* ---------- Responsive shrink ---------- */
@media (max-width: 1024px) {
  .ee-hero__grid,
  .ee-service-grid__head,
  .ee-service-grid__detail,
  .ee-svc-materials__head,
  .ee-svc-faqs,
  .ee-emerald-way__grid,
  .ee-before-after,
  .ee-inspection,
  .ee-about-story,
  .ee-area-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .ee-service-grid__tabs,
  .ee-svc-materials__grid,
  .ee-svc-process,
  .ee-svc-projects,
  .ee-team-grid,
  .ee-contact-methods,
  .ee-testimonial__grid,
  .ee-trust-strip__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .ee-rev-grid { grid-template-columns: minmax(0, 1fr); }
  .ee-emerald-way__values { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .ee-hero__quote-card { display: none; }
  .ee-process-step { grid-template-columns: 80px minmax(0, 1fr); gap: 16px; }
  .ee-process-step__deliverables { grid-template-columns: minmax(0, 1fr); }
  /* Stack the CTA strip below desktop: the nowrap ee-btn-lg label is ~500px, so
     side-by-side with the heading it sits right at the container edge and can
     overflow by a few px. Stacking gives each its own full-width row. */
  .ee-cta-strip__inner { flex-direction: column; align-items: flex-start; }
  /* Long CTA labels (e.g. "Schedule your Emerald Eye inspection") make a nowrap
     ee-btn-lg ~500px wide — too wide for a constrained grid cell (e.g. the 2-col
     inspect grid at 901-1024px) or the 375px viewport floor. Below the desktop
     breakpoint, let button text wrap and cap width to its container; min-height
     replaces the fixed height so a two-line label isn't clipped. */
  .ee-btn { white-space: normal; text-align: center; max-width: 100%; height: auto; min-height: 48px; line-height: 1.2; }
  .ee-btn-sm { height: auto; min-height: 36px; }
  .ee-btn-lg { height: auto; min-height: 56px; }
}
@media (max-width: 640px) {
  .ee-service-grid__tabs,
  .ee-svc-materials__grid,
  .ee-svc-process,
  .ee-svc-projects,
  .ee-team-grid,
  .ee-contact-methods,
  .ee-testimonial__grid,
  .ee-trust-strip__grid,
  .ee-emerald-way__values { grid-template-columns: minmax(0, 1fr); }
  .ee-inspection__service-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .ee-grid-2 { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .ee-container, .ee-container-tight { padding: 0 16px; }
  .ee-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .ee-inspection__stepper { gap: 6px; }
  .ee-inspection__step-label { white-space: normal; line-height: 1.25; }
  .ee-emerald-way__stats { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

/* ============================================================
   Campaign landing pages
   ============================================================ */

.ee-lp-body { background: #fff; }

/* ---------- Minimal LP header ---------- */
.ee-lp-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--ee-border);
}
.ee-lp-header__inner {
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ee-lp-header__brand img { height: 32px; width: auto; }
.ee-lp-header__right { display: flex; align-items: center; gap: 20px; }
.ee-lp-header__trust {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ee-font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ee-emerald-700);
  cursor: default;
}
.ee-lp-header__check { color: var(--ee-emerald-600); display: inline-flex; }
.ee-lp-header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ee-font-sans); font-weight: 700; font-size: 15px;
  color: var(--ee-ink-900);
  white-space: nowrap;
  padding: 8px 14px; border-radius: 6px;
  transition: background 150ms var(--ee-ease-out);
}
.ee-lp-header__phone:hover { background: var(--ee-emerald-50); color: var(--ee-emerald-800); }

/* ---------- LP hero ---------- */
.ee-lp-hero {
  background: var(--ee-bg-soft);
  border-bottom: 1px solid var(--ee-border);
  padding: 72px 0 88px;
  position: relative;
}
.ee-lp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px; align-items: center;
}
.ee-lp-hero__title {
  font-family: var(--ee-font-display); font-weight: 800;
  font-size: clamp(2.25rem, 3.5vw + 1rem, 3.75rem);
  line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 20px; max-width: 600px;
  text-wrap: balance;
}
.ee-lp-hero__sub {
  font-family: var(--ee-font-sans); font-size: var(--ee-fs-18);
  line-height: 1.6; color: var(--ee-fg-muted);
  margin: 0 0 32px; max-width: 540px; text-wrap: pretty;
}
.ee-lp-hero__ctas {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-bottom: 32px;
}
.ee-lp-hero__phone-link {
  display: inline-flex; flex-direction: column; gap: 2px; line-height: 1.2;
  font-family: var(--ee-font-sans);
}
.ee-lp-hero__or {
  font-size: 12px; color: var(--ee-fg-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ee-lp-hero__phone-num {
  font-weight: 700; font-size: 18px; color: var(--ee-emerald-700);
}
.ee-lp-hero__phone-link:hover .ee-lp-hero__phone-num { color: var(--ee-emerald-800); }
.ee-lp-hero__stat {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; margin: 0 0 28px;
  background: var(--ee-bg-soft);
  border: 1px solid var(--ee-border);
  border-left: 4px solid var(--ee-emerald-600);
  border-radius: var(--ee-radius-md);
  max-width: 480px;
}
.ee-lp-hero__stat-value {
  font-family: var(--ee-font-display); font-weight: 800;
  font-size: clamp(2.5rem, 4vw + 0.5rem, 3.5rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--ee-emerald-700);
  flex: 0 0 auto;
}
.ee-lp-hero__stat-label {
  font-family: var(--ee-font-sans); font-size: 14px; font-weight: 600;
  line-height: 1.45; color: var(--ee-ink-800);
}
.ee-lp-hero__inline-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  padding-top: 24px; border-top: 1px solid var(--ee-border);
}
.ee-lp-hero__inline-trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ee-font-sans); font-size: 14px; font-weight: 600;
  color: var(--ee-ink-800);
}
.ee-lp-hero__inline-trust-icon { color: var(--ee-emerald-600); display: inline-flex; }
.ee-lp-hero__photo-wrap { position: relative; }
.ee-lp-hero__badge {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--ee-font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ee-emerald-600); color: #fff;
  padding: 8px 12px; border-radius: 4px;
  box-shadow: var(--ee-shadow-sm);
}

/* Segment-specific hero accents — subtle, never loud */
.ee-lp-hero--fix-it { background: #fff; }

/* ---------- LP proof rail ---------- */
.ee-lp-proof {
  background: var(--ee-emerald-900); color: #fff;
  padding: 32px 0;
}
.ee-lp-proof__row {
  display: grid; grid-template-columns: repeat(2, max-content);
  column-gap: 56px; row-gap: 16px;
  justify-content: center;
}
.ee-lp-proof__item {
  display: grid; grid-template-columns: 24px minmax(0, 1fr);
  align-items: center; gap: 12px;
  font-family: var(--ee-font-sans); font-weight: 600; font-size: 15px;
  color: #fff;
}
.ee-lp-proof__icon { color: var(--ee-emerald-300); display: inline-flex; justify-content: center; }
@media (max-width: 640px) {
  .ee-lp-proof__row { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- LP offer (what you get) ---------- */
.ee-lp-offer { background: var(--ee-bg-soft); }
.ee-lp-offer__head { max-width: 720px; margin-bottom: 40px; }
.ee-lp-offer__head h2 { margin: 0; }
.ee-lp-offer__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
}
.ee-lp-offer__item {
  background: #fff; border: 1px solid var(--ee-border); border-radius: 12px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.ee-lp-offer__num {
  font-family: var(--ee-font-display); font-weight: 800; font-size: 28px;
  color: var(--ee-emerald-600); letter-spacing: -0.02em;
  line-height: 1;
}
.ee-lp-offer__title {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 20px; color: var(--ee-fg);
  line-height: 1.2; margin-top: 4px;
}
.ee-lp-offer__body {
  font-family: var(--ee-font-sans); font-size: 14px; line-height: 1.6;
  color: var(--ee-fg-muted);
}

/* ---------- LP testimonial (single, large) ---------- */
.ee-lp-testimonial { background: #fff; padding: 56px 0 64px; }
.ee-lp-testimonial__card {
  max-width: 760px; margin: 0 auto;
  background: var(--ee-emerald-50);
  border: 1px solid var(--ee-emerald-100);
  border-radius: 16px;
  padding: 40px 44px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.ee-lp-testimonial__quote-icon {
  position: absolute; top: 24px; right: 28px;
  color: var(--ee-emerald-200);
}
.ee-lp-testimonial__quote {
  font-family: var(--ee-font-display); font-weight: 500; font-style: italic;
  font-size: 24px; line-height: 1.4; color: var(--ee-ink-900);
  margin: 0; text-wrap: pretty;
  position: relative; z-index: 1;
}
.ee-lp-testimonial__attrib {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 16px; border-top: 1px solid var(--ee-emerald-100);
  margin-top: 8px;
}
.ee-lp-testimonial__name {
  font-family: var(--ee-font-sans); font-weight: 700; font-size: 15px; color: var(--ee-fg);
}
.ee-lp-testimonial__where {
  font-family: var(--ee-font-sans); font-size: 13px; color: var(--ee-fg-muted); margin-top: 2px;
}

/* ---------- LP FAQs ---------- */
.ee-lp-faqs__list { display: flex; flex-direction: column; gap: 8px; }

/* ---------- LP closing ---------- */
.ee-lp-closing {
  background: var(--ee-emerald-900); color: #fff;
  padding: 72px 0 80px;
}
.ee-lp-closing__inner { text-align: center; max-width: 680px; margin: 0 auto; }
.ee-lp-closing__title {
  font-family: var(--ee-font-display); font-weight: 800;
  font-size: clamp(1.875rem, 2.5vw + 1rem, 2.75rem);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 12px 0 16px; color: #fff;
}
.ee-lp-closing__sub {
  font-family: var(--ee-font-sans); font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.78); margin: 0 0 32px;
}
.ee-lp-closing__ctas {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* ---------- LP problem (advisory section) ---------- */
.ee-lp-problem { background: var(--ee-bg-soft); }
.ee-lp-problem__head { max-width: 720px; margin: 0 0 40px; }
.ee-lp-problem__title { margin: 12px 0 0; }
.ee-lp-problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.ee-lp-problem__paragraph {
  color: var(--ee-fg-muted);
  margin: 0 0 16px;
  max-width: 62ch;
}
.ee-lp-problem__paragraph:last-child { margin-bottom: 0; }
.ee-lp-problem__bullets {
  list-style: none;
  margin: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-lg);
  display: flex; flex-direction: column;
  gap: 14px;
}
.ee-lp-problem__bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--ee-font-sans);
  font-size: 15px; line-height: 1.55;
  color: var(--ee-fg);
}
.ee-lp-problem__bullet-icon {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ee-emerald-50);
  color: var(--ee-emerald-700);
  margin-top: 1px;
}

/* ---------- LP authority (prose context section) ---------- */
.ee-lp-authority { background: #fff; }
.ee-lp-authority__inner { max-width: 720px; }
.ee-lp-authority__title { margin: 12px 0 20px; }
.ee-lp-authority__paragraph {
  color: var(--ee-fg-muted);
  margin: 0 0 16px;
}
.ee-lp-authority__paragraph:last-child { margin-bottom: 0; }
.ee-lp-authority__quote {
  margin: 32px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--ee-emerald-600);
  background: var(--ee-bg-soft);
  border-radius: 0 var(--ee-radius-md) var(--ee-radius-md) 0;
}
.ee-lp-authority__quote blockquote {
  margin: 0;
  font-family: var(--ee-font-display); font-style: italic; font-weight: 500;
  font-size: 20px; line-height: 1.45;
  color: var(--ee-ink-900);
  text-wrap: pretty;
}
.ee-lp-authority__quote figcaption {
  margin-top: 12px;
  font-family: var(--ee-font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ee-emerald-700);
}

/* Authority with embedded form: two-column layout */
.ee-lp-authority--with-form .ee-lp-authority__inner {
  max-width: var(--ee-container-max);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.ee-lp-authority--with-form .ee-lp-authority__copy { max-width: 60ch; }
.ee-lp-authority__form-col { position: relative; }
.ee-lp-authority__form-col .ee-inspection__form {
  padding: 28px;
  box-shadow: var(--ee-shadow-lg);
  border: 1px solid var(--ee-border);
}

/* ---------- LP minimal footer ---------- */
.ee-lp-footer {
  background: var(--ee-ink-50); border-top: 1px solid var(--ee-border);
  padding: 24px 0;
}
.ee-lp-footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--ee-font-sans); font-size: 12px; color: var(--ee-fg-muted);
}
.ee-lp-footer__left { display: inline-flex; align-items: center; gap: 12px; }
.ee-lp-footer__left img { height: 28px; width: auto; }
.ee-lp-footer__right { display: flex; gap: 20px; }
.ee-lp-footer__right a { color: var(--ee-fg-muted); }
.ee-lp-footer__right a:hover { color: var(--ee-fg); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ee-lp-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .ee-lp-offer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .ee-lp-problem__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .ee-lp-authority--with-form .ee-lp-authority__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .ee-lp-header__trust { display: none; }
}
@media (max-width: 640px) {
  .ee-lp-offer__grid { grid-template-columns: minmax(0, 1fr); }
  .ee-lp-hero { padding: 48px 0 56px; }
  .ee-lp-testimonial__card { padding: 28px 24px; }
  .ee-lp-testimonial__quote { font-size: 19px; }
}

/* ---------- LP neighborhood verify card ---------- */
.ee-lp-verify { padding: 20px 0 0; }
.ee-lp-verify__card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--ee-emerald-50);
  border: 1px solid var(--ee-emerald-100);
  border-radius: var(--ee-radius-md);
}
.ee-lp-verify__icon {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--ee-emerald-700);
}
.ee-lp-verify__body { min-width: 0; }
.ee-lp-verify__lead {
  font-family: var(--ee-font-sans); font-size: 15px; line-height: 1.5;
  color: var(--ee-fg);
}
.ee-lp-verify__meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
  font-family: var(--ee-font-sans); font-size: 13px; line-height: 1.5;
  color: var(--ee-fg-muted);
}
.ee-lp-verify__sep { color: var(--ee-emerald-300); }

/* ---------- LP neighborhood materials grid ---------- */
.ee-lp-materials { background: var(--ee-bg-soft); }
.ee-lp-materials__head { max-width: 720px; margin: 0 0 32px; }
.ee-lp-materials__title { margin: 12px 0 12px; }
.ee-lp-materials__lead { color: var(--ee-fg-muted); margin: 0; }
.ee-lp-materials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  list-style: none; margin: 0; padding: 0;
}
.ee-lp-materials__item {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--ee-border);
  border-radius: 12px;
  opacity: 0.55;
  filter: grayscale(0.4);
}
.ee-lp-materials__item.is-approved {
  opacity: 1;
  filter: none;
  border-color: var(--ee-emerald-100);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.ee-lp-materials__status {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--ee-ink-50); color: var(--ee-fg-muted);
  font-family: var(--ee-font-sans); font-weight: 700;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px;
}
.ee-lp-materials__item.is-approved .ee-lp-materials__status {
  background: var(--ee-emerald-50); color: var(--ee-emerald-700);
}
.ee-lp-materials__name {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 18px;
  color: var(--ee-fg); margin: 0; line-height: 1.2;
}
.ee-lp-materials__note {
  font-family: var(--ee-font-sans); font-size: 13px; line-height: 1.55;
  color: var(--ee-fg-muted); margin: 0;
}
.ee-lp-materials__footnote {
  margin: 32px 0 0;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--ee-border);
  border-left: 4px solid var(--ee-emerald-600);
  border-radius: 0 var(--ee-radius-md) var(--ee-radius-md) 0;
  font-family: var(--ee-font-sans); font-size: 14px; line-height: 1.6;
  color: var(--ee-fg);
}
.ee-lp-materials__link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: 8px;
  color: var(--ee-emerald-700); font-weight: 700;
}
.ee-lp-materials__link:hover { color: var(--ee-emerald-800); }

/* ---------- LP neighborhood covenant explainer ---------- */
.ee-lp-covenant { padding: 64px 0; }
.ee-lp-covenant__inner { max-width: var(--ee-container-prose); margin: 0 auto; }
.ee-lp-covenant__title { margin: 12px 0 20px; }
.ee-lp-covenant__body p { margin: 0; color: var(--ee-fg-muted); }

@media (max-width: 640px) {
  .ee-lp-verify__card { flex-direction: row; padding: 14px 16px; gap: 12px; }
  .ee-lp-verify__icon { width: 36px; height: 36px; }
  .ee-lp-verify__meta { flex-direction: column; gap: 2px; }
  .ee-lp-verify__sep { display: none; }
  .ee-lp-materials__footnote { padding: 16px 18px; }
  .ee-lp-materials__link { display: block; margin-left: 0; margin-top: 8px; }
}
/* ============================================================
   Emerald — Form-forward LP variant
   ============================================================
   Append this block to assets/css/styles.css. Everything here is
   namespaced under the existing .ee-lp-* family so it doesn't
   collide with any of the existing landing-page styles.

   Sections (in render order on /lp/warranty/):
     1. Form-embedded hero      .ee-lp-hero--form
     2. Stat banner             .ee-lp-stat-banner
     3. Quick trust strip       .ee-lp-quick-trust
     4. Evidence row            .ee-lp-evidence
     5. Process strip           .ee-lp-process-strip
     6. Sticky mobile CTA       .ee-lp-mobile-cta
   ============================================================ */

/* ---- 1. Form-embedded hero ------------------------------------- */
.ee-lp-hero--form {
  padding: 56px 0 64px;
  background:
    radial-gradient(1100px 480px at 90% -10%, rgba(0,139,72,0.06), transparent 60%),
    var(--ee-bg);
}
.ee-lp-hero--form .ee-lp-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 56px;
}
.ee-lp-hero--form .ee-lp-hero__title {
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
}
.ee-lp-hero--form .ee-lp-hero__sub { max-width: 56ch; }

.ee-lp-hero__form-card {
  background: #fff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-xl);
  box-shadow: var(--ee-shadow-lg);
  padding: 28px;
  position: relative;
}
.ee-lp-hero__form-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: var(--ee-emerald-50); color: var(--ee-emerald-700);
  border-radius: 999px;
  font-family: var(--ee-font-sans); font-weight: 700;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.ee-lp-hero__form-title {
  font-family: var(--ee-font-display); font-weight: 700;
  font-size: 22px; line-height: 1.25;
  margin: 12px 0 6px;
}
.ee-lp-hero__form-sub {
  margin: 0 0 18px;
  color: var(--ee-fg-muted); font-size: 14px;
}
.ee-lp-hero__form-bullets {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--ee-fg-muted);
}
.ee-lp-hero__form-bullets li {
  display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; align-items: center;
}
.ee-lp-hero__form-bullets svg { color: var(--ee-emerald-600); }

/* The compact form sheds the multi-step chrome since it lives inside a card. */
.ee-inspection__form--compact {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: 0;
}
.ee-inspection__form--compact .ee-inspection__stepper { display: none; }

/* ---- 2. Stat banner -------------------------------------------- */
.ee-lp-stat-banner {
  background: var(--ee-emerald-900);
  color: #fff;
  padding: 56px 0;
}
.ee-lp-stat-banner__inner {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.ee-lp-stat-banner__big {
  font-family: var(--ee-font-display); font-weight: 900;
  font-size: clamp(120px, 18vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ee-lime-light);
}
.ee-lp-stat-banner__copy {
  font-family: var(--ee-font-display); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  color: #fff;
}
.ee-lp-stat-banner__copy span { color: var(--ee-lime-light); }
.ee-lp-stat-banner__meta {
  margin-top: 14px;
  font-family: var(--ee-font-sans); font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* ---- 3. Quick trust strip -------------------------------------- */
.ee-lp-quick-trust {
  background: #fff;
  border-top: 1px solid var(--ee-border);
  border-bottom: 1px solid var(--ee-border);
}
.ee-lp-quick-trust__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.ee-lp-quick-trust__item {
  padding: 22px 28px;
  display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 14px; align-items: center;
  border-right: 1px solid var(--ee-border);
}
.ee-lp-quick-trust__item:last-child { border-right: 0; }
.ee-lp-quick-trust__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ee-emerald-50); color: var(--ee-emerald-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.ee-lp-quick-trust__title {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 15px;
  color: var(--ee-fg);
}
.ee-lp-quick-trust__body {
  font-family: var(--ee-font-sans); font-size: 13px; color: var(--ee-fg-muted);
  line-height: 1.45; margin-top: 2px;
}

/* ---- 4. Evidence row ------------------------------------------- */
.ee-lp-evidence__head { max-width: 720px; margin: 0 0 32px; }
.ee-lp-evidence__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.ee-lp-evidence__grid--2up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ee-lp-evidence__card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-lg);
  overflow: hidden;
}
.ee-lp-evidence__photo {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg, var(--ee-ink-100) 0 18px, var(--ee-ink-50) 18px 36px);
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--ee-fg-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ee-font-sans); font-size: 13px;
}
.ee-lp-evidence__photo--has-image { color: transparent; }
.ee-lp-evidence__pin {
  position: absolute;
  width: 36px; height: 36px;
  border: 2px solid var(--ee-danger);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.18);
  transform: translate(-50%, -50%);
}
.ee-lp-evidence__body { padding: 18px 20px 22px; }
.ee-lp-evidence__tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  background: var(--ee-danger-soft); color: var(--ee-danger);
  border-radius: 999px;
  font-family: var(--ee-font-sans); font-weight: 700;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.ee-lp-evidence__title {
  font-family: var(--ee-font-display); font-weight: 700;
  font-size: 18px; line-height: 1.3;
  margin: 10px 0 6px;
}
.ee-lp-evidence__body p {
  margin: 0; color: var(--ee-fg-muted);
  font-size: 14px; line-height: 1.55;
}

/* ---- 5. Process strip ------------------------------------------ */
.ee-lp-process-strip { background: var(--ee-bg-soft); }
.ee-lp-process-strip__head { max-width: 720px; margin: 0 0 28px; }
.ee-lp-process-strip__head .ee-h2 { margin: 12px 0 0; }
.ee-lp-process-strip__lead {
  margin: 12px 0 0;
  color: var(--ee-fg-muted);
  max-width: 56ch;
}
.ee-lp-process-strip__track {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}
.ee-lp-process-strip__step {
  position: relative;
  background: #fff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-md);
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.ee-lp-process-strip__step--us {
  border-color: var(--ee-emerald-300);
  background: linear-gradient(180deg, #fff, var(--ee-emerald-25));
}
.ee-lp-process-strip__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ee-ink-50); color: var(--ee-fg);
  font-family: var(--ee-font-display); font-weight: 700; font-size: 13px;
}
.ee-lp-process-strip__step--us .ee-lp-process-strip__n {
  background: var(--ee-emerald-600); color: #fff;
}
.ee-lp-process-strip__step .ee-lp-process-strip__title {
  font-family: var(--ee-font-display); font-weight: 700;
  font-size: 13px; line-height: 1.3;
  color: var(--ee-fg);
  margin: 0;
}
.ee-lp-process-strip__dur {
  margin-top: auto;
  font-family: var(--ee-font-sans); font-weight: 700;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ee-fg-muted);
}
.ee-lp-process-strip__legend {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin: 24px 0 0;
  font-family: var(--ee-font-sans); font-size: 13px;
  color: var(--ee-fg-muted);
}
.ee-lp-process-strip__legend-dot {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ee-ink-200);
  border: 1px solid var(--ee-border);
  margin-right: 8px;
  vertical-align: middle;
}
.ee-lp-process-strip__legend-dot--us {
  background: var(--ee-emerald-600);
  border-color: var(--ee-emerald-600);
}

/* ---- 6. Sticky mobile CTA -------------------------------------- */
.ee-lp-mobile-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 50;
}
.ee-lp-mobile-cta .ee-btn {
  width: 100%;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ---- Responsive ------------------------------------------------ */
@media (max-width: 1100px) {
  .ee-lp-process-strip__track { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .ee-lp-hero--form .ee-lp-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .ee-lp-stat-banner__inner { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .ee-lp-stat-banner__big { font-size: 140px; }
  .ee-lp-evidence__grid { grid-template-columns: minmax(0, 1fr); }
  .ee-lp-quick-trust__row { grid-template-columns: minmax(0, 1fr); }
  .ee-lp-quick-trust__item { border-right: 0; border-bottom: 1px solid var(--ee-border); }
  .ee-lp-quick-trust__item:last-child { border-bottom: 0; }
}
@media (max-width: 720px) {
  .ee-lp-mobile-cta { display: block; }
}
@media (max-width: 640px) {
  .ee-lp-process-strip__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* =============================================================================
   Visualizer page — additions to assets/css/styles.css
   ----------------------------------------------------------------------------
   Append this whole block to the END of assets/css/styles.css. It is purely
   additive — no existing rules are modified.

   The slider rules at the top intentionally re-declare
   .ee-ba-slider__before and .ee-ba-slider__after so that each slider can
   set its own image URLs via CSS custom properties (--ba-before, --ba-after).
   Source order means these later declarations win for any slider that sets
   the custom properties; the home-page slider (which doesn't set them) keeps
   working unchanged via the fallback URLs.
   ============================================================================= */

/* ---- Multi-slider support (override of styles.css default rules) ---- */
.ee-ba-slider__before { background-image: var(--ba-before, url("/assets/images/home-before.webp")); }
.ee-ba-slider__after  { background-image: var(--ba-after,  url("/assets/images/home-after.webp"));  }
.ee-ba-slider--compact { aspect-ratio: 4/3; }

/* Placeholder mode — render the generic emerald photo-placeholder gradient
   on both panes instead of real photos. The existing brightness/saturate
   filters on __before vs __after keep the two halves visually distinct. */
.ee-ba-slider.ee-ba-slider--placeholder .ee-ba-slider__before,
.ee-ba-slider.ee-ba-slider--placeholder .ee-ba-slider__after {
  background-color: var(--ee-emerald-100);
  background-image:
    radial-gradient(120% 60% at 20% 20%, rgba(255,255,255,0.5) 0%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(0,51,28,0.06) 0, rgba(0,51,28,0.06) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(0,51,28,0.06) 0, rgba(0,51,28,0.06) 1px, transparent 1px, transparent 40px),
    linear-gradient(135deg, rgba(0,139,72,0.10) 0%, rgba(0,139,72,0.18) 50%, rgba(0,51,28,0.25) 100%),
    linear-gradient(0deg, rgba(0,51,28,0.35) 0%, transparent 35%);
  background-size: auto, auto, auto, cover, cover;
  background-position: center;
}

/* ---- Visualizer-page additions ---- */
  
  /* Concierge offer card */
  .viz-offer { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 56px; align-items: stretch; }
  .viz-offer__card { background: #fff; border-radius: 16px; padding: 36px; border: 1px solid var(--ee-border); box-shadow: var(--ee-shadow-lg); display: flex; flex-direction: column; gap: 20px; }
  .viz-offer__steps { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
  .viz-offer__step  { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 16px; align-items: flex-start; }
  .viz-offer__step-n { width: 44px; height: 44px; border-radius: 50%; background: var(--ee-emerald-50); color: var(--ee-emerald-700); display: inline-flex; align-items: center; justify-content: center; font-family: var(--ee-font-display); font-weight: 800; font-size: 18px; border: 1px solid var(--ee-emerald-200); }
  .viz-offer__step-title { font-family: var(--ee-font-display); font-weight: 700; font-size: 18px; color: var(--ee-fg); margin-bottom: 4px; }
  .viz-offer__step-body  { font-family: var(--ee-font-sans); font-size: 14px; color: var(--ee-fg-muted); line-height: 1.55; }

  /* Path cards */
  .viz-paths { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 24px; align-items: stretch; }
  .viz-path { position: relative; background: #fff; border-radius: 16px; border: 1px solid var(--ee-border); padding: 36px; display: flex; flex-direction: column; gap: 18px; box-shadow: var(--ee-shadow-sm); transition: box-shadow 180ms var(--ee-ease-out), transform 180ms var(--ee-ease-out); }
  .viz-path:hover { box-shadow: var(--ee-shadow-md); transform: translateY(-1px); }
  .viz-path--featured { background: var(--ee-emerald-50); border-color: var(--ee-emerald-200); box-shadow: var(--ee-shadow-md); }
  .viz-path__chip { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; padding: 4px 10px; border-radius: 999px; background: var(--ee-emerald-600); color: #fff; font-family: var(--ee-font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
  .viz-path__icon { width: 56px; height: 56px; border-radius: 12px; background: var(--ee-emerald-50); color: var(--ee-emerald-700); display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ee-emerald-200); }
  .viz-path__title { font-family: var(--ee-font-display); font-weight: 800; font-size: 28px; color: var(--ee-fg); margin: 0; letter-spacing: -0.01em; }
  .viz-path__lede  { font-family: var(--ee-font-sans); font-size: 16px; color: var(--ee-fg-muted); line-height: 1.55; margin: 0; }
  .viz-path__bullets { margin: 4px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .viz-path__bullets li { display: flex; align-items: flex-start; gap: 10px; font-family: var(--ee-font-sans); font-size: 14px; color: var(--ee-ink-800); line-height: 1.5; }
  .viz-path__bullets svg { color: var(--ee-emerald-600); flex-shrink: 0; margin-top: 3px; }
  .viz-path__cta { margin-top: auto; padding-top: 8px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
  .viz-path__meta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ee-font-sans); font-size: 12px; color: var(--ee-fg-muted); font-weight: 600; }
  .viz-path__meta svg { color: var(--ee-emerald-600); }

  /* Slider gallery */
  .viz-gallery--2x2 { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 24px; }
  .viz-gallery--row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
  .viz-gallery__item { display: flex; flex-direction: column; gap: 12px; }
  .viz-gallery__caption { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-family: var(--ee-font-sans); font-size: 13px; }
  .viz-gallery__caption-where { color: var(--ee-fg); font-weight: 700; }
  .viz-gallery__caption-detail { color: var(--ee-fg-muted); }
  .viz-gallery__chips { display: flex; gap: 6px; flex-wrap: wrap; }
  .viz-gallery__chip { padding: 3px 8px; border-radius: 4px; background: var(--ee-emerald-50); color: var(--ee-emerald-800); font-family: var(--ee-font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--ee-emerald-100); }

  /* Hero slider (Alt C) */
  .viz-hero-slider { position: relative; background: var(--ee-emerald-900); color: #fff; overflow: hidden; }
  .viz-hero-slider__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr); gap: 56px; align-items: center; padding: 64px 0 80px; }
  .viz-hero-slider__copy { position: relative; z-index: 2; }
  .viz-hero-slider .ee-ba-slider { aspect-ratio: 5/4; box-shadow: 0 20px 60px -20px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06); }
  .viz-hero-slider__caption { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--ee-font-sans); font-size: 12px; color: rgba(255,255,255,0.7); }
  .viz-hero-slider .ee-page-hero__title { color: #fff; }
  .viz-hero-slider .ee-page-hero__lede  { color: rgba(255,255,255,0.78); }

  /* Renoworks call-out */
  .viz-renoworks { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.4fr); gap: 56px; align-items: center; background: #fff; border: 1px solid var(--ee-border); border-radius: 16px; padding: 40px; box-shadow: var(--ee-shadow-sm); }
  .viz-renoworks__brand { font-family: var(--ee-font-display); font-weight: 800; font-size: 22px; color: var(--ee-emerald-800); letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 10px; }
  .viz-renoworks__brand::before { content: ""; width: 8px; height: 24px; border-radius: 2px; background: linear-gradient(180deg, var(--ee-emerald-600) 0%, var(--ee-emerald-300) 100%); }

  .viz-account-note { display: flex; gap: 14px; align-items: flex-start; padding: 16px 20px; border-radius: 12px; background: var(--ee-success-soft); border: 1px solid rgba(0,139,72,0.18); font-family: var(--ee-font-sans); font-size: 14px; color: var(--ee-ink-800); line-height: 1.55; }
  .viz-account-note__icon { color: var(--ee-success); flex-shrink: 0; margin-top: 2px; }
  .viz-account-note strong { color: var(--ee-ink-900); }

  /* Step list with big numerals */
  .viz-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
  .viz-step { display: flex; flex-direction: column; gap: 10px; }
  .viz-step__n { font-family: var(--ee-font-display); font-weight: 800; font-size: 56px; line-height: 1; color: var(--ee-emerald-300); letter-spacing: -0.02em; }
  .viz-step__title { font-family: var(--ee-font-display); font-weight: 700; font-size: 19px; color: var(--ee-fg); }
  .viz-step__body { font-family: var(--ee-font-sans); font-size: 14px; color: var(--ee-fg-muted); line-height: 1.55; }

  /* Video tile */
  .viz-video { position: relative; aspect-ratio: 16/10; border-radius: 12px; overflow: hidden; background: var(--ee-ink-900); display: flex; align-items: center; justify-content: center; box-shadow: var(--ee-shadow-md); cursor: pointer; }
  .viz-video__play { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.96); display: inline-flex; align-items: center; justify-content: center; color: var(--ee-emerald-700); box-shadow: 0 12px 36px -8px rgba(0,0,0,0.5); transition: transform 180ms var(--ee-ease-out); }
  .viz-video:hover .viz-video__play { transform: scale(1.06); }
  .viz-video__label { position: absolute; left: 16px; bottom: 16px; font-family: var(--ee-font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.6); padding: 6px 10px; border-radius: 4px; }
  .viz-video--embed { cursor: default; }
  .viz-video--embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .viz-video-tile { display: flex; flex-direction: column; gap: 10px; }
  .viz-video-tile__title { font-family: var(--ee-font-display); font-weight: 700; font-size: 16px; color: var(--ee-fg); }
  .viz-video-tile__meta { font-family: var(--ee-font-sans); font-size: 13px; color: var(--ee-fg-muted); }
  .viz-video-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }

  /* Explainer two-up */
  .viz-explainer { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.15fr); gap: 56px; align-items: center; }

  /* Free pill */
  .viz-free-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); color: #fff; padding: 6px 12px; border-radius: 999px; font-family: var(--ee-font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.16); }

  /* What-photos check list */
  .viz-checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 10px 24px; }
  .viz-checklist li { display: flex; gap: 10px; align-items: flex-start; font-family: var(--ee-font-sans); font-size: 14px; color: var(--ee-ink-800); }
  .viz-checklist svg { color: var(--ee-emerald-600); flex-shrink: 0; margin-top: 3px; }

  /* Tabbed compare bar */
  .viz-compare { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 0; border: 1px solid var(--ee-border); border-radius: 16px; overflow: hidden; background: #fff; }
  .viz-compare__col { padding: 28px 32px; display: flex; flex-direction: column; gap: 12px; }
  .viz-compare__col + .viz-compare__col { border-left: 1px solid var(--ee-border); }
  .viz-compare__col--featured { background: var(--ee-emerald-50); }
  .viz-compare__head { display: flex; align-items: center; gap: 12px; }
  .viz-compare__head-title { font-family: var(--ee-font-display); font-weight: 800; font-size: 22px; color: var(--ee-fg); }
  .viz-compare__head-time { margin-left: auto; font-family: var(--ee-font-sans); font-size: 12px; color: var(--ee-fg-muted); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
  .viz-compare__row { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 16px; font-family: var(--ee-font-sans); font-size: 13px; line-height: 1.45; padding: 10px 0; border-top: 1px solid var(--ee-border); }
  .viz-compare__row-k { color: var(--ee-fg-muted); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; padding-top: 1px; }
  .viz-compare__col--featured .viz-compare__row { border-top-color: rgba(0,139,72,0.18); }

  @media (max-width: 1024px) {
    .viz-offer, .viz-explainer, .viz-renoworks, .viz-hero-slider__inner { grid-template-columns: minmax(0,1fr); gap: 32px; }
    .viz-paths { grid-template-columns: minmax(0,1fr); }
    .viz-gallery--2x2, .viz-gallery--row, .viz-video-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
    .viz-steps { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
    .viz-compare { grid-template-columns: minmax(0,1fr); }
    .viz-compare__col + .viz-compare__col { border-left: 0; border-top: 1px solid var(--ee-border); }
    .viz-checklist { grid-template-columns: minmax(0,1fr); }
  }
  @media (max-width: 640px) {
    .viz-gallery--2x2, .viz-gallery--row, .viz-video-grid, .viz-steps { grid-template-columns: minmax(0,1fr); }
    .viz-offer__card { padding: 24px; }
    .viz-renoworks, .viz-path { padding: 24px; }
  }

.viz-embed {
    border: 1px solid var(--ee-border);
    border-radius: 14px;
    background: var(--ee-emerald-900);
    overflow: hidden;
    box-shadow: var(--ee-shadow-lg);
    position: relative;
  }
  .viz-embed__chrome {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 12px 18px;
    background: var(--ee-emerald-950, #001b0e);
    color: rgba(255,255,255,0.78);
    font-family: var(--ee-font-sans); font-size: 12px;
  }
  .viz-embed__chrome-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
  .viz-embed__chrome-dot  { width: 12px; height: 12px; border-radius: 50%; opacity: 0.85; }
  .viz-embed__chrome-url  {
    margin-left: 8px; padding: 4px 12px;
    background: rgba(255,255,255,0.06); border-radius: 999px;
    font-family: var(--ee-font-mono, ui-monospace); font-size: 11px;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 320px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .viz-embed__chrome-brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 10px; }
  .viz-embed__frame {
    display: block; width: 100%;
    height: clamp(560px, calc(100vh - 320px), 820px);
    border: 0; background: #fff;
  }
  .viz-embed__placeholder {
    position: absolute;
    inset: 48px 0 0 0;  /* sits under the chrome bar */
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
    padding: 32px;
    background:
      radial-gradient(80% 60% at 50% 30%, rgba(255,255,255,0.06) 0%, transparent 60%),
      repeating-linear-gradient(45deg, transparent 0 16px, rgba(255,255,255,0.03) 16px 17px),
      var(--ee-emerald-900);
    color: #fff;
  }
  .viz-embed__placeholder-inner {
    max-width: 480px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
  }
  .viz-embed__placeholder-icon {
    width: 88px; height: 88px; border-radius: 20px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .viz-embed__placeholder-title {
    font-family: var(--ee-font-display); font-weight: 700; font-size: 22px;
    color: #fff;
  }
  .viz-embed__placeholder-body {
    font-family: var(--ee-font-sans); font-size: 14px; color: rgba(255,255,255,0.7);
    line-height: 1.55;
  }
  .viz-embed__placeholder-body code {
    font-family: var(--ee-font-mono, ui-monospace, monospace);
    font-size: 12px;
    background: rgba(255,255,255,0.1); padding: 1px 6px; border-radius: 4px;
    color: rgba(255,255,255,0.95);
  }
  .viz-embed__placeholder-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(201,138,24,0.18); color: var(--ee-warning, #c98a18);
    border: 1px solid rgba(201,138,24,0.36);
    font-family: var(--ee-font-sans); font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .viz-embed-info {
    display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); gap: 48px;
    margin-top: 40px; align-items: flex-start;
  }
  @media (max-width: 1024px) {
    .viz-embed-info { grid-template-columns: minmax(0,1fr); gap: 28px; }
    .viz-embed__chrome-url { max-width: 160px; }
  }

/* ============================================================
   Service detail pages (service_detailed layout)
   New section types layered on top of the tokens above. Used by
   _layouts/service_detailed.html and its _includes/service/* sections.
   ============================================================ */

/* ---------- Stat band (light) ---------- */
.ee-statband { background: #fff; border-bottom: 1px solid var(--ee-border); }
.ee-statband__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ee-statband__item {
  padding: 36px 28px; text-align: center;
  border-left: 1px solid var(--ee-border);
}
.ee-statband__item:first-child { border-left: 0; }
.ee-statband__value {
  font-family: var(--ee-font-display); font-weight: var(--ee-fw-black);
  font-size: clamp(2rem, 1.4vw + 1.4rem, 2.6rem); line-height: 1;
  color: var(--ee-emerald-700); letter-spacing: -0.02em;
}
.ee-statband__label {
  font-family: var(--ee-font-sans); font-size: 13px; font-weight: 600;
  color: var(--ee-fg-muted); margin-top: 10px; line-height: 1.35;
  letter-spacing: 0.01em;
}

/* ---------- Feature split (alternating media + copy) ---------- */
.ee-feature { padding: 88px 0; }
.ee-feature--soft { background: var(--ee-bg-soft); }
.ee-feature__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center;
}
.ee-feature--rev .ee-feature__media { order: 2; }
.ee-feature--rev .ee-feature__body { order: 1; }
.ee-feature__body { max-width: 560px; }
.ee-feature__lead {
  font-family: var(--ee-font-sans); font-size: var(--ee-fs-18);
  line-height: var(--ee-lh-relaxed); color: var(--ee-fg); margin: 0 0 22px;
  text-wrap: pretty;
}
.ee-feature__note {
  font-family: var(--ee-font-sans); font-size: 15px;
  line-height: var(--ee-lh-relaxed); color: var(--ee-fg-muted);
  margin: -6px 0 22px; padding-left: 16px;
  border-left: 3px solid var(--ee-emerald-200); text-wrap: pretty;
}
.ee-feature__close {
  font-family: var(--ee-font-sans); font-size: 15px;
  line-height: var(--ee-lh-relaxed); color: var(--ee-fg-muted);
  margin: 22px 0 0; text-wrap: pretty;
}
.ee-feature__cta { margin-top: 28px; }

/* ---------- Tick list (check-bulleted benefits) ---------- */
.ee-ticklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ee-ticklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--ee-font-sans); font-size: 15px; line-height: 1.5;
  color: var(--ee-fg);
}
.ee-ticklist li svg { flex-shrink: 0; margin-top: 2px; color: var(--ee-emerald-600); }
.ee-ticklist li b { font-weight: 700; color: var(--ee-fg); }

/* ---------- Two-up advocacy cards ---------- */
.ee-twoup { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; }
.ee-twoup__card {
  background: #fff; border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-lg); padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.ee-twoup__card--emerald {
  background: var(--ee-emerald-900); border-color: transparent; color: #fff;
}
.ee-twoup__title {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 22px;
  margin: 0; color: var(--ee-fg); line-height: 1.2;
}
.ee-twoup__card--emerald .ee-twoup__title { color: #fff; }
.ee-twoup__text {
  font-family: var(--ee-font-sans); font-size: 15px; line-height: 1.6;
  color: var(--ee-fg-muted); margin: 0;
}
.ee-twoup__card--emerald .ee-twoup__text { color: rgba(255,255,255,0.78); }
.ee-twoup__card--emerald .ee-ticklist li { color: rgba(255,255,255,0.9); }
.ee-twoup__card--emerald .ee-ticklist li svg { color: var(--ee-emerald-300); }
.ee-twoup__symbol { width: 40px; height: 40px; opacity: 0.9; }

/* ---------- Emerald Process (5 steps, dark) ---------- */
.ee-procflow { background: var(--ee-emerald-950); color: #fff; }
.ee-procflow__grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px;
}
.ee-procstep {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ee-radius-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.ee-procstep__n {
  font-family: var(--ee-font-display); font-weight: 800; font-size: 28px;
  line-height: 1; color: var(--ee-emerald-300); letter-spacing: -0.02em;
}
.ee-procstep__title {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 17px;
  color: #fff; line-height: 1.2; min-height: 2.4em;
}
.ee-procstep__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ee-procstep__list li {
  font-family: var(--ee-font-sans); font-size: 13px; line-height: 1.45;
  color: rgba(255,255,255,0.7); padding-left: 14px; position: relative;
}
.ee-procstep__list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--ee-emerald-300);
}

/* ---------- Inspection checklist (light, media + list) ---------- */
.ee-inspect__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 64px; align-items: center;
}
.ee-inspect__list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.ee-inspect__list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 18px; border-bottom: 1px solid var(--ee-border);
}
.ee-inspect__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.ee-inspect__num {
  font-family: var(--ee-font-display); font-weight: 800; font-size: 15px;
  color: var(--ee-emerald-600); flex-shrink: 0; width: 24px; padding-top: 1px;
}
.ee-inspect__copy {
  font-family: var(--ee-font-sans); font-size: 15px; line-height: 1.55; color: var(--ee-fg);
}

/* ---------- Section intro helper ---------- */
.ee-sec-intro { max-width: 640px; margin-bottom: 44px; }
.ee-sec-intro--center { margin-left: auto; margin-right: auto; text-align: center; }
.ee-sec-intro--center .ee-eyebrow-row { justify-content: center; }
.ee-sec-intro__sub {
  font-family: var(--ee-font-sans); font-size: var(--ee-fs-18);
  line-height: var(--ee-lh-relaxed); color: var(--ee-fg-muted); margin: 16px 0 0;
  text-wrap: pretty;
}

/* ---------- Service-detail responsive ---------- */
@media (max-width: 1024px) {
  .ee-procflow__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ee-statband__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ee-statband__item:nth-child(3) { border-left: 0; }
  .ee-statband__item:nth-child(odd) { border-left: 0; }
  .ee-statband__item { border-top: 1px solid var(--ee-border); }
  .ee-statband__item:nth-child(1), .ee-statband__item:nth-child(2) { border-top: 0; }
}
@media (max-width: 900px) {
  .ee-feature__grid,
  .ee-inspect__grid,
  .ee-twoup { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .ee-feature--rev .ee-feature__media { order: 0; }
  .ee-feature--rev .ee-feature__body { order: 0; }
  .ee-feature { padding: 56px 0; }
}
@media (max-width: 640px) {
  .ee-procflow__grid { grid-template-columns: minmax(0, 1fr); }
  .ee-statband__grid { grid-template-columns: minmax(0, 1fr); }
  .ee-procstep__title { min-height: 0; }
}

/* ============================================================
   Storm Damage page (/storm-damage/). Page-only sections:
   hero stat card, numbered process, fit/not-fit cards, dark
   closing CTA. (Lifted out of the page's old inline <style>.)
   ============================================================ */
.ee-storm-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: 48px; align-items: center;
}
.ee-storm-hero__ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.ee-storm-statcard {
  background: var(--ee-emerald-900); color: #fff;
  border-radius: var(--ee-radius-lg, 16px); padding: 34px;
}
.ee-storm-statcard__big {
  font-family: var(--ee-font-display); font-weight: 800; font-size: 56px;
  line-height: 1; color: var(--ee-emerald-300); letter-spacing: -0.02em;
}
.ee-storm-statcard__lead {
  margin: 8px 0 0; font-family: var(--ee-font-sans); font-size: 16px;
  line-height: 1.5; color: rgba(255,255,255,0.8);
}
.ee-storm-statcard__rule { height: 1px; background: rgba(255,255,255,0.14); margin: 24px 0; }
.ee-storm-statcard__row { display: flex; gap: 28px; }
.ee-storm-statcard__value {
  font-family: var(--ee-font-display); font-weight: 800; font-size: 30px;
  line-height: 1; color: #fff;
}
.ee-storm-statcard__label {
  margin-top: 6px; font-family: var(--ee-font-sans); font-size: 14px;
  line-height: 1.4; color: rgba(255,255,255,0.7);
}

.ee-storm-process { display: flex; flex-direction: column; }
.ee-storm-process__row {
  display: flex; gap: 24px; padding: 22px 0; border-top: 1px solid var(--ee-border);
  align-items: baseline;
}
.ee-storm-process__row:last-child { border-bottom: 1px solid var(--ee-border); }
.ee-storm-process__number {
  font-family: var(--ee-font-display); font-weight: 800; font-size: 24px;
  color: var(--ee-emerald-300); width: 48px; flex-shrink: 0;
}
.ee-storm-process__title {
  font-family: var(--ee-font-display); font-weight: 700; font-size: 18px;
  color: var(--ee-fg); width: 280px; flex-shrink: 0;
}
.ee-storm-process__body {
  font-family: var(--ee-font-sans); font-size: 16px; line-height: 1.55;
  color: var(--ee-fg-muted);
}

.ee-storm-fit { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; }
.ee-storm-fit__card { padding: 30px; }
.ee-storm-fit__card--good { border-color: var(--ee-emerald-200); }
.ee-storm-fit__head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-family: var(--ee-font-display); font-weight: 700; font-size: 20px;
  color: var(--ee-emerald-700);
}
.ee-storm-fit__head--muted { color: var(--ee-fg-subtle); }
.ee-storm-fit__badge {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ee-emerald-50); color: var(--ee-emerald-700);
}
.ee-storm-fit__badge--muted { background: var(--ee-ink-50); color: var(--ee-ink-400); }
.ee-storm-fit__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ee-storm-fit__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--ee-font-sans); font-size: 15px; line-height: 1.5;
  color: var(--ee-fg-subtle);
}
.ee-storm-fit__list li svg { flex-shrink: 0; margin-top: 2px; color: var(--ee-ink-400); }

.ee-storm-closing { background: var(--ee-emerald-950); color: #fff; padding: 88px 0; text-align: center; }
.ee-storm-closing__symbol { height: 48px; width: auto; opacity: 0.9; margin: 0 auto 22px; display: block; }
.ee-storm-closing__sub {
  margin: 18px auto 0; max-width: 540px; font-family: var(--ee-font-sans);
  font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.78);
}
.ee-storm-closing__cta {
  margin-top: 30px; background: var(--ee-lime-light); color: var(--ee-emerald-950);
}
.ee-storm-closing__cta:hover { background: var(--ee-emerald-200); }

/* Hero licensed/insured trust line */
.ee-storm-hero__trust {
  display: flex; align-items: center; gap: 8px; margin: 20px 0 0;
  font-family: var(--ee-font-sans); font-size: 14px; font-weight: 600;
  color: var(--ee-fg-muted);
}
.ee-storm-hero__trust svg { color: var(--ee-emerald-500); flex-shrink: 0; }

/* Single verbatim review quote */
.ee-storm-quote {
  max-width: 760px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.ee-storm-quote__icon { color: var(--ee-emerald-200); margin: 14px 0 4px; }
.ee-storm-quote__text {
  font-family: var(--ee-font-display); font-weight: var(--ee-fw-medium);
  font-style: italic; font-size: var(--ee-fs-24);
  line-height: var(--ee-lh-snug); color: var(--ee-fg); margin: 0;
  text-wrap: pretty;
}
.ee-storm-quote__attrib {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-top: 22px;
  font-family: var(--ee-font-sans); font-size: 15px;
}
.ee-storm-quote__name { font-weight: 700; color: var(--ee-fg); }
.ee-storm-quote__where { color: var(--ee-fg-muted); }

@media (max-width: 860px) {
  .ee-storm-hero__grid,
  .ee-storm-fit { grid-template-columns: minmax(0, 1fr); }
  .ee-storm-process__row { flex-wrap: wrap; gap: 6px 16px; }
  .ee-storm-process__title { width: auto; }
}
