/* =========================================================
   Jackalope Construction — Gutters · Roofing · Solar
   Design system: storm navy + copper, Fraunces + Inter Tight
   ========================================================= */

/* Type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.75rem);
  --text-hero: clamp(2.75rem, 1rem + 6vw, 6.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Storm-navy + bone-white + copper */
  --color-bg: #F4EFE6;             /* warm bone */
  --color-surface: #FBF7EE;        /* card surface */
  --color-surface-2: #ECE5D6;      /* secondary surface */
  --color-ink: #14202E;            /* near-black navy */
  --color-ink-2: #1A2A3B;
  --color-storm: #223247;          /* storm slate */
  --color-text: #14202E;
  --color-text-muted: #50617A;
  --color-text-faint: #93A1B5;
  --color-text-inverse: #F4EFE6;
  --color-border: #D8CFBE;
  --color-divider: #C7BCA8;

  --color-copper: #B5642C;         /* primary accent — copper */
  --color-copper-hover: #964F1F;
  --color-copper-deep: #6E3A14;
  --color-copper-soft: #E8C7A6;

  --color-rain: #3B6582;           /* secondary accent — texas sky/rain */
  --color-rain-deep: #1F4763;

  /* Radii & shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(20, 32, 46, 0.06), 0 1px 1px rgba(20, 32, 46, 0.04);
  --shadow-md: 0 4px 16px rgba(20, 32, 46, 0.08), 0 2px 4px rgba(20, 32, 46, 0.04);
  --shadow-lg: 0 18px 40px rgba(20, 32, 46, 0.14), 0 4px 12px rgba(20, 32, 46, 0.06);

  --container: 1200px;
  --container-narrow: 880px;

  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Inter Tight', 'Inter', -apple-system, system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--color-ink);
  margin: 0 0 var(--space-4);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
h1 { font-size: var(--text-hero); font-weight: 500; }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 600; letter-spacing: -0.005em; }

p { margin: 0 0 var(--space-4); }
.lead { font-size: var(--text-lg); color: var(--color-text-muted); line-height: 1.5; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-copper);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }
.container--narrow { max-width: var(--container-narrow); }

/* Section spacing */
section { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }
section.section-tight { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--color-copper);
  color: #FFF;
  box-shadow: 0 6px 18px rgba(181, 100, 44, 0.32);
}
.btn--primary:hover { background: var(--color-copper-hover); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(181, 100, 44, 0.4); }
.btn--secondary {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}
.btn--secondary:hover { background: var(--color-ink); color: var(--color-text-inverse); }
.btn--ghost {
  background: transparent;
  color: var(--color-text-inverse);
  border-color: rgba(244, 239, 230, 0.4);
}
.btn--ghost:hover { background: rgba(244, 239, 230, 0.12); border-color: var(--color-text-inverse); }
.btn--lg { padding: var(--space-5) var(--space-8); font-size: var(--text-base); }
.btn--block { width: 100%; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--color-border); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-6);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--space-6);
}
.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-logo {
  display: block;
  width: min(225px, 34vw);
  height: auto;
  object-fit: contain;
}
.brand-mark {
  width: 44px;
  height: 46px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  display: block;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  line-height: 1;
}
.brand-tagline {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-text-muted); font-weight: 600;
  margin-top: 2px;
}

.main-nav { display: flex; gap: var(--space-6); align-items: center; flex-wrap: nowrap; }
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-storm);
  transition: color 0.18s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--color-copper); }

.header-cta { display: flex; align-items: center; gap: var(--space-4); flex-shrink: 0; }
.phone-link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-ink);
}
.phone-link svg { width: 16px; height: 16px; color: var(--color-copper); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: var(--space-2);
  color: var(--color-ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32)) clamp(var(--space-16), 8vw, var(--space-24));
  background: linear-gradient(180deg, #14202E 0%, #1A2A3B 100%);
  color: var(--color-text-inverse);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center right;
  opacity: 0.55;
  z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 70%, rgba(181, 100, 44, 0.18), transparent 55%),
    linear-gradient(95deg, rgba(20, 32, 46, 0.88) 0%, rgba(20, 32, 46, 0.65) 55%, rgba(20, 32, 46, 0.35) 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--color-copper-soft);
  margin-bottom: var(--space-6);
}
.hero-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--color-copper); }
.hero h1 {
  color: var(--color-text-inverse);
  font-size: clamp(2.5rem, 1rem + 5.6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  max-width: 16ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-copper-soft);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(244, 239, 230, 0.78);
  max-width: 56ch;
  margin-bottom: var(--space-8);
  line-height: 1.5;
}
.hero-ctas { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.hero-proof {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(244, 239, 230, 0.15);
}
.hero-proof-item { min-width: 0; }
.hero-proof-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-copper-soft);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
  font-variation-settings: 'opsz' 144;
}
.hero-proof-person {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.hero-proof-person img,
.trust-avatar,
.trust-stat-person img {
  display: inline-block;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-proof-person img {
  width: 34px;
  height: 34px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}
.hero-proof-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(244, 239, 230, 0.7);
  letter-spacing: 0.05em;
  line-height: 1.4;
  max-width: 18ch;
}

/* Hero card / right side */
.hero-card {
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  backdrop-filter: blur(8px);
}
.hero-card h3 {
  font-family: var(--font-display);
  color: var(--color-text-inverse);
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
}
.hero-card-logo {
  display: block;
  width: min(178px, 56vw);
  height: auto;
  margin: calc(var(--space-2) * -1) auto var(--space-5);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.24));
}
.hero-card .check-list { list-style: none; padding: 0; margin: 0 0 var(--space-6); }
.hero-card .check-list li {
  display: flex; gap: var(--space-3); align-items: flex-start;
  font-size: var(--text-sm);
  color: rgba(244, 239, 230, 0.88);
  padding-block: var(--space-2);
}
.hero-card .check-list svg {
  width: 18px; height: 18px;
  color: var(--color-copper);
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-card .small-note {
  font-size: var(--text-xs);
  color: rgba(244, 239, 230, 0.6);
  text-align: center;
  margin-top: var(--space-4);
  margin-bottom: 0;
}

/* =========================================================
   Marquee / trust strip
   ========================================================= */
.trust-strip {
  background: var(--color-ink);
  color: var(--color-text-inverse);
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(244, 239, 230, 0.06);
  border-bottom: 1px solid rgba(244, 239, 230, 0.06);
}
.trust-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-6);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.trust-item {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(244, 239, 230, 0.86);
}
.trust-item svg { width: 20px; height: 20px; color: var(--color-copper); flex-shrink: 0; }
.trust-avatar {
  width: 26px;
  height: 26px;
  box-shadow: 0 0 0 1px rgba(244, 239, 230, 0.28);
}
.trust-item strong { color: var(--color-text-inverse); font-weight: 600; }

/* =========================================================
   Section heading
   ========================================================= */
.section-head { max-width: 720px; margin-bottom: clamp(var(--space-10), 5vw, var(--space-16)); }
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(var(--space-6), 5vw, var(--space-14));
  align-items: end;
}
.section-head h2 {
  font-size: var(--text-2xl);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.section-head h2 em {
  font-style: italic; color: var(--color-copper);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.section-head .lead { max-width: 60ch; margin-top: var(--space-4); }

/* =========================================================
   Why-it-matters Section
   ========================================================= */
.why-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(195deg, transparent 40%, rgba(20, 32, 46, 0.4) 100%);
}
.why-image-tag {
  position: absolute; bottom: var(--space-6); left: var(--space-6);
  background: var(--color-bg);
  color: var(--color-ink);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.why-points { list-style: none; padding: 0; margin: var(--space-8) 0 0; }
.why-points {
  list-style: none;
}
.why-points li {
  padding: var(--space-5) 0;
  border-top: 1px solid var(--color-divider);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--space-4);
  align-items: start;
}
.why-points li:last-child { border-bottom: 1px solid var(--color-divider); }
.why-points .num {
  font-family: var(--font-display);
  color: var(--color-copper);
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1;
  padding-top: 4px;
  font-variation-settings: 'opsz' 144;
}
.why-points h4 { margin-bottom: var(--space-2); }
.why-points p { color: var(--color-text-muted); font-size: var(--text-sm); margin: 0; line-height: 1.55; }

/* =========================================================
   Services
   ========================================================= */
.services-section { background: var(--color-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-copper-soft);
}
.service-card-icon {
  width: 48px; height: 48px;
  color: var(--color-copper);
  margin-bottom: var(--space-6);
}
.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-weight: 500;
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}
.service-card ul {
  list-style: none; padding: 0; margin: 0 0 var(--space-6);
  font-size: 0.85rem;
}
.service-card ul li {
  padding: var(--space-2) 0;
  border-top: 1px dashed var(--color-divider);
  color: var(--color-storm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.service-card ul li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-copper);
  display: inline-block;
  flex-shrink: 0;
}
.service-card .card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-copper);
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin-top: auto;
}
.service-card .card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* =========================================================
   Past projects
   ========================================================= */
.projects-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
}
.project-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.project-card--large {
  grid-column: span 2;
  grid-row: span 2;
}
.project-card a {
  display: block;
  overflow: hidden;
  background: var(--color-ink);
}
.project-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card--large img { aspect-ratio: 4 / 3.1; }
.project-card:hover img { transform: scale(1.035); }
.project-card-body {
  padding: var(--space-5);
}
.project-card--large .project-card-body {
  padding: var(--space-7);
}
.project-kicker {
  display: block;
  color: var(--color-copper);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.project-card h3 {
  font-size: var(--text-lg);
  margin: 0;
  font-variation-settings: 'opsz' 72, 'SOFT' 40;
}
.project-card:not(.project-card--large) h3 {
  font-size: var(--text-base);
}
.project-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: var(--space-3) 0 0;
  line-height: 1.55;
}

/* =========================================================
   Installation deep-dive
   ========================================================= */
.installation-section {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.install-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
.install-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
}
.install-image img { width: 100%; height: 100%; object-fit: cover; }

.spec-table {
  margin-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
  gap: var(--space-4);
  font-size: var(--text-sm);
}
.spec-row dt { font-weight: 600; color: var(--color-ink); font-family: var(--font-body); letter-spacing: 0.02em; text-transform: uppercase; font-size: 0.72rem; padding-top: 3px; }
.spec-row dd { margin: 0; color: var(--color-storm); }

/* =========================================================
   Process / Steps
   ========================================================= */
.process-section {
  background: var(--color-ink);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 100%, rgba(181, 100, 44, 0.15), transparent 60%);
  pointer-events: none;
}
.process-section .section-head h2 { color: var(--color-text-inverse); }
.process-section .lead { color: rgba(244, 239, 230, 0.72); }
.process-section .eyebrow { color: var(--color-copper-soft); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
}
.process-step {
  position: relative;
  padding: var(--space-6);
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: var(--radius-lg);
  transition: background 0.25s, border-color 0.25s;
}
.process-step:hover { background: rgba(244, 239, 230, 0.08); border-color: rgba(181, 100, 44, 0.4); }
.step-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-copper-soft);
  line-height: 1;
  margin-bottom: var(--space-5);
  font-variation-settings: 'opsz' 144;
  font-weight: 300;
  font-style: italic;
}
.process-step h4 {
  color: var(--color-text-inverse);
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  font-weight: 600;
}
.process-step p {
  color: rgba(244, 239, 230, 0.7);
  font-size: var(--text-sm);
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   Trust / Reviews
   ========================================================= */
.trust-section { background: var(--color-bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.review-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.review-stars {
  display: flex; gap: 2px;
  color: var(--color-copper);
  margin-bottom: var(--space-5);
}
.review-stars svg { width: 18px; height: 18px; }
.review-quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.4;
  color: var(--color-ink);
  margin: 0 0 var(--space-6);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.review-author { margin-top: auto; }
.review-name { font-weight: 600; color: var(--color-ink); font-size: var(--text-sm); }
.review-meta { font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: 0.04em; }

.trust-row-stats {
  margin-top: clamp(var(--space-10), 6vw, var(--space-16));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.trust-stat { text-align: left; padding-right: var(--space-4); border-right: 1px solid var(--color-divider); }
.trust-stat:last-child { border-right: 0; }
.trust-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-ink);
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
  line-height: 1;
  font-variation-settings: 'opsz' 144;
}
.trust-stat-person {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.trust-stat-person img {
  width: 40px;
  height: 40px;
  box-shadow: 0 6px 16px rgba(20, 32, 46, 0.16);
}
.trust-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}

/* =========================================================
   Service Areas
   ========================================================= */
.areas-section { background: var(--color-surface); border-top: 1px solid var(--color-border); }
.areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}
.areas-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  aspect-ratio: 4/5;
  position: relative;
}
.areas-map-wrap img { width: 100%; height: 100%; object-fit: cover; }
.areas-map-callout {
  position: absolute;
  right: var(--space-5);
  bottom: var(--space-5);
  max-width: 220px;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(20, 32, 46, 0.9);
  color: var(--color-bg);
  font-size: var(--text-sm);
  line-height: 1.25;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.areas-map-callout span {
  display: block;
  color: var(--color-copper-soft);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-1);
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2) var(--space-6);
  margin-top: var(--space-6);
  list-style: none;
  padding: 0;
}
.areas-list li {
  font-size: var(--text-sm);
  color: var(--color-storm);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-divider);
  display: flex; align-items: center; gap: var(--space-3);
}
.areas-list li::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--color-copper);
  flex-shrink: 0;
}
.areas-note { color: var(--color-text-muted); font-size: var(--text-sm); margin-top: var(--space-5); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--color-bg); }
.faq-list { margin-top: var(--space-8); max-width: 880px; }
.faq-item {
  border-top: 1px solid var(--color-divider);
}
.faq-item:last-child { border-bottom: 1px solid var(--color-divider); }
.faq-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: var(--space-6) 0;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  gap: var(--space-4);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--color-copper);
  transition: transform 0.3s ease;
  border: 1px solid var(--color-copper);
  border-radius: 50%;
  padding: 4px;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.is-open .faq-content { max-height: 500px; padding-bottom: var(--space-6); }
.faq-content p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0;
  max-width: 70ch;
}

/* =========================================================
   CTA / Contact
   ========================================================= */
.cta-section {
  background: var(--color-ink);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('../images/cta-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.22; z-index: -2;
}
.cta-section::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 32, 46, 0.7), rgba(20, 32, 46, 0.95));
  z-index: -1;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: start;
}
.cta-section h2 {
  color: var(--color-text-inverse);
  font-size: var(--text-2xl);
  font-weight: 400;
}
.cta-section h2 em { color: var(--color-copper-soft); font-style: italic; }
.cta-section .lead { color: rgba(244, 239, 230, 0.78); margin-bottom: var(--space-8); }

.contact-info { display: grid; gap: var(--space-5); margin-top: var(--space-8); }
.contact-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: var(--space-4);
  align-items: center;
}
.contact-row svg { width: 22px; height: 22px; color: var(--color-copper); }
.contact-row .label { font-size: var(--text-xs); color: rgba(244, 239, 230, 0.6); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 2px; }
.contact-row .value { font-size: var(--text-base); color: var(--color-text-inverse); font-weight: 500; }
.contact-row a.value:hover { color: var(--color-copper-soft); }

/* Estimate form */
.estimate-form {
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.18);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.estimate-form h3 {
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  font-weight: 500;
}
.estimate-form .form-sub {
  color: rgba(244, 239, 230, 0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}
.form-row { margin-bottom: var(--space-4); }
.form-row label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
  margin-bottom: var(--space-2);
  font-weight: 600;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: var(--space-4);
  background: rgba(20, 32, 46, 0.5);
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: var(--radius-md);
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color 0.18s, background 0.18s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-copper);
  background: rgba(20, 32, 46, 0.72);
}
.form-row textarea { resize: vertical; min-height: 96px; }
.form-row select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%23E8C7A6' d='M6 8L0 0h12z'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-disclaimer {
  font-size: var(--text-xs);
  color: rgba(244, 239, 230, 0.55);
  margin-top: var(--space-4);
  line-height: 1.4;
}
.form-success {
  display: none;
  padding: var(--space-5);
  background: rgba(181, 100, 44, 0.18);
  border: 1px solid var(--color-copper);
  color: var(--color-copper-soft);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}
.form-success.is-visible { display: block; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #0E1822;
  color: rgba(244, 239, 230, 0.7);
  padding: var(--space-16) 0 var(--space-8);
  font-size: var(--text-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-brand { max-width: 360px; }
.footer-brand .brand { align-items: flex-start; }
.footer-logo {
  display: block;
  width: min(285px, 100%);
  height: auto;
}
.footer-brand .brand-mark { width: 52px; height: 46px; }
.footer-brand .brand-name { color: var(--color-bg); }
.footer-brand p {
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  line-height: 1.55;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-bg);
  margin: 0 0 var(--space-5);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: var(--space-2) 0; }
.footer-col a:hover { color: var(--color-copper-soft); }
.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(244, 239, 230, 0.5);
}

/* =========================================================
   Mobile Sticky CTA
   ========================================================= */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: var(--space-3) var(--space-4) max(var(--space-3), env(safe-area-inset-bottom));
  background: rgba(20, 32, 46, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  gap: var(--space-3);
}
.mobile-cta .btn { flex: 1; padding: var(--space-4) var(--space-3); font-size: var(--text-sm); }
.mobile-cta .btn--call {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1px solid rgba(244, 239, 230, 0.3);
}

/* =========================================================
   Mobile nav drawer
   ========================================================= */
.mobile-nav {
  position: fixed; inset: 0;
  background: #14202E;
  z-index: 100;
  padding: var(--space-8) var(--space-6);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-12);
}
.mobile-nav-head .brand-name { color: var(--color-bg); }
.mobile-nav-close {
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.3);
  color: var(--color-bg);
  padding: var(--space-3);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
}
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--space-4);
}
.mobile-nav ul a {
  font-family: var(--font-display);
  color: var(--color-bg);
  font-size: var(--text-xl);
  font-weight: 400;
  display: block;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}
.mobile-nav-foot {
  margin-top: auto;
  padding-top: var(--space-8);
}
.mobile-nav-foot .btn { width: 100%; margin-bottom: var(--space-3); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .install-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .section-head--split { grid-template-columns: 1fr; align-items: start; }
  .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-card--large { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .trust-row-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-stat { border-right: 0; }
  .trust-stat:nth-child(odd) { border-right: 1px solid var(--color-divider); }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 720px) {
  .brand-logo { width: 190px; max-width: 58vw; }
  .header-cta .phone-link, .header-cta .btn { display: none; }
  .header-cta { gap: var(--space-3); }
  body { padding-bottom: 76px; }
  .mobile-cta { display: flex; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row-two { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--large { grid-column: span 1; grid-row: span 1; }
  .project-card--large .project-card-body { padding: var(--space-5); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .spec-row { grid-template-columns: 1fr; gap: var(--space-1); }
  .why-image { aspect-ratio: 4/3; }
  .install-image { aspect-ratio: 4/3; }
  .areas-map-wrap { aspect-ratio: 4/3; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Fade-in on load utility — fallback shows content if JS/IO doesn't run */
@media (prefers-reduced-motion: no-preference) {
  .fade-up:not(.is-visible) {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .fade-up.is-visible { opacity: 1; transform: translateY(0); }
}
