/* ============================================================
   Get Pressure Washing Services — Editorial Theme
   Per VIBE.md: Dwell magazine × Texas Monthly aesthetic
   Fraunces display + Outfit body, warm off-white, deep blue sparingly
   ============================================================ */

/* --- Design Tokens (Editorial / Magazine) --- */
:root {
  /* Core Palette — EDITORIAL WARM */
  --bg: #fcfaf6;            /* warm off-white — NOT pure white */
  --bg-alt: #f4ede0;        /* warm sand for alternating sections */
  --bg-card: #fcfaf6;
  --bg-card-hover: #f4ede0;
  --bg-elevated: #fcfaf6;
  --surface: #fcfaf6;
  --accent: #1d4ed8;        /* deep blue — sparingly only for CTAs and key emphasis */
  --accent-dark: #1e40af;
  --accent-light: #1d4ed8;
  --accent-rgb: 29, 78, 216;
  --accent-glow: rgba(29, 78, 216, 0.08);
  --accent-subtle: rgba(29, 78, 216, 0.04);
  --text: #1a1a1a;          /* near-black — NOT slate */
  --text-muted: #4a4a4a;
  --text-dim: #6a6a6a;
  --text-light: #6a6a6a;
  --border: #e7e1d4;
  --border-hover: rgba(29, 78, 216, 0.3);
  --green: #1a1a1a;         /* no success green — keep monochrome */
  --star: #1a1a1a;          /* outlined stars in near-black */
  --red: #dc2626;           /* only for Before labels */

  /* Typography — Editorial */
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --heading-weight: 500;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --space-section: 5rem;

  /* Radius */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --radius-full: 50px;

  /* Shadows — subtle, not heavy */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: var(--space-section) 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--accent-subtle);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-full);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  text-decoration: none;
}
.btn-accent,
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover,
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-white:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
  border-radius: var(--radius);
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* --- Top Bar --- */
.top-bar {
  background: var(--accent);
  color: #fff;
  padding: 10px 0;
  font-size: 0.875rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: #fff; font-weight: 500; transition: opacity var(--transition); }
.top-bar a:hover { opacity: 0.85; }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-left span { color: rgba(255, 255, 255, 0.4); }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
}

/* --- Header --- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  font-size: 0.9375rem;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.header-cta { display: flex; gap: 12px; align-items: center; }
.header-phone {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--accent); }
.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

/* --- Hero (Editorial — before/after slider IS the hero) --- */
.hero {
  position: relative;
  background: var(--bg);
  padding: 72px 0 48px;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-overline {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.015em;
  margin: 0 auto 36px;
  max-width: 760px;
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
}
.hero-content h1 .highlight {
  font-style: italic;
  color: var(--text);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.hero-content p {
  display: none; /* hidden — slider is the proof, not paragraph copy */
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.hero-trust-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 0.8125rem;
  color: rgba(26, 26, 26, 0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-trust-row a { color: var(--text); font-weight: 600; }
.hero-trust-row .sep { color: rgba(26, 26, 26, 0.3); }
.hero-badge { display: none; }

/* The giant before/after hero slider */
.ba-hero {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  max-height: 70vh;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #1a1a1a;
  cursor: ew-resize;
  user-select: none;
}
.ba-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-hero .ba-after {
  clip-path: inset(0 50% 0 0);
}
.ba-hero .ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fcfaf6;
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 3;
}
.ba-hero .ba-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: #fcfaf6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.ba-hero .ba-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #1a1a1a;
  border-right: 2px solid #1a1a1a;
  transform: translate(-2px, -50%) rotate(45deg);
  z-index: 1;
}
.ba-hero .ba-label {
  position: absolute;
  top: 20px;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 4;
  pointer-events: none;
}
.ba-hero .ba-label-before {
  left: 20px;
  background: var(--red);
  color: #fcfaf6;
}
.ba-hero .ba-label-after {
  right: 20px;
  background: var(--accent);
  color: #fcfaf6;
}

/* --- Trust Bar --- */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: relative;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; }
.trust-item .stars { color: var(--star); font-size: 1.125rem; }
.trust-item strong { color: var(--accent); }

/* --- Service Cards (Solid — no glassmorphism) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}
/* Accent top bar slides in on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 3;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body h3 a { color: var(--text); transition: color var(--transition); }
.service-card-body h3 a:hover { color: var(--accent); }
.service-card-body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
}
.service-card-link:hover { gap: 12px; color: var(--accent-dark); }

/* --- Stats Counter (Blue inverted section) --- */
.stats {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 72px 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}
.stat-item {
  padding: 32px 16px;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  font-weight: 500;
}

/* --- Before/After Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}
.ba-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: grab;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.ba-card:hover {
  box-shadow: var(--shadow-lg);
}
.ba-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-card .ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0.05s linear; }
.ba-card .ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--accent);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
}
.ba-card .ba-divider::before {
  content: '\2039\00a0\203A';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 4px;
  z-index: 1;
}
.ba-label {
  position: absolute;
  bottom: 12px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-xs);
  z-index: 5;
  box-shadow: var(--shadow-xs);
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* --- Why Choose Us (Solid cards with accent top bar) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-glow);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: rgba(37, 99, 235, 0.15);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9375rem; margin: 0; line-height: 1.7; }

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  position: relative;
}
.process-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.15);
}
.process-step h3 { margin-bottom: 10px; }
.process-step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Testimonials (Solid cards with left accent border) --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.08);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  color: var(--star);
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 2px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9375rem; color: var(--text); }
.testimonial-role { font-size: 0.8125rem; color: var(--text-muted); }

/* --- Service Area --- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.area-card {
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.area-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.area-card svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.area-card span { font-weight: 600; color: var(--text); }
.area-card small {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.45;
}
.area-grid-featured {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.area-grid-featured .area-card {
  align-items: flex-start;
  flex-direction: column;
  min-height: 132px;
}
.area-card-current {
  background: #fffdf8;
  border-color: rgba(29, 78, 216, 0.34);
  box-shadow: 0 14px 38px -30px rgba(29, 78, 216, 0.8);
}
.area-trust-bar {
  border-bottom: 1px solid var(--border);
}

.area-planner-hero {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(29, 78, 216, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fcfaf6 0%, #f4ede0 100%);
  background-size: 72px 100%, auto;
  border-bottom: 1px solid var(--border);
}
.area-planner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: center;
}
.area-planner-copy {
  min-width: 0;
}
.area-planner-copy h1 {
  margin: 0 0 24px;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.area-planner-copy p {
  max-width: 640px;
  color: #34302a;
  font-size: 1.16rem;
  line-height: 1.7;
}
.area-planner-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border: 1px solid rgba(29, 78, 216, 0.18);
  background: rgba(255, 253, 248, 0.75);
}
.area-planner-strip span {
  padding: 16px 14px;
  border-left: 1px solid rgba(29, 78, 216, 0.14);
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}
.area-planner-strip span:first-child { border-left: 0; }
.area-planner-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
}
.area-planner-visual {
  position: relative;
  min-width: 0;
  margin: 0;
}
.area-planner-visual::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid rgba(168, 79, 47, 0.42);
  z-index: 0;
}
.area-planner-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: var(--radius-sm);
  box-shadow: 0 28px 70px -36px rgba(23, 23, 23, 0.58);
}
.area-planner-visual figcaption {
  position: relative;
  z-index: 2;
  margin: -1px 24px 0;
  padding: 10px 12px;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-top: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}
.area-decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}
.area-decision-layout p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.decision-card-list {
  display: grid;
  gap: 14px;
}
.decision-card {
  display: block;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.decision-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.decision-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}
.decision-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .area-planner-grid,
  .area-decision-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .area-planner-copy h1 {
    font-size: clamp(2.25rem, 7vw, 3.35rem);
  }

  .area-planner-visual {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .area-planner-hero {
    padding: 38px 0 32px;
    background-size: 44px 100%, auto;
  }

  .area-planner-copy h1 {
    font-size: 2.2rem;
    line-height: 1.04;
  }

  .area-planner-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .area-planner-copy .hero-btns {
    flex-direction: column;
  }

  .area-planner-copy .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .area-planner-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .area-planner-strip span {
    border-left: 0;
    border-top: 1px solid rgba(29, 78, 216, 0.14);
  }

  .area-planner-strip span:first-child {
    border-top: 0;
  }

  .area-planner-visual::before {
    inset: 12px 0 -10px 12px;
  }

  .area-planner-visual img {
    aspect-ratio: 4 / 3;
  }

  .area-planner-visual figcaption {
    margin: -1px 12px 0;
  }

  .area-grid-featured {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- CTA Banner (Blue inverted section) --- */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn { margin: 0 8px; }
.cta-banner .btn-accent {
  background: #fff;
  color: var(--accent-dark);
}
.cta-banner .btn-accent:hover {
  background: #f0f9ff;
  box-shadow: var(--shadow-lg);
}
.cta-banner .btn-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.cta-banner .btn-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: none;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; color: var(--text-muted); line-height: 1.8; }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--accent-glow);
  border: 1px solid rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-text strong { display: block; margin-bottom: 4px; color: var(--text); }
.contact-info-text span,
.contact-info-text a { color: var(--text-muted); transition: color var(--transition); }
.contact-info-text a:hover { color: var(--accent); }
.contact-form {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all var(--transition);
  background: #fff;
  color: var(--text);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-alt);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta {
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 500;
}
.blog-card-body h3 { font-size: 1.125rem; margin-bottom: 10px; }
.blog-card-body h3 a { color: var(--text); transition: color var(--transition); }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }

/* --- Footer --- */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; color: #fff; }
.footer-brand .logo span { color: var(--accent-light); }
.footer-brand p { color: #94a3b8; font-size: 0.9375rem; max-width: 320px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  color: #94a3b8;
  font-size: 0.9375rem;
  transition: all var(--transition);
}
.footer-col ul a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: start;
  margin-bottom: 14px;
  color: #94a3b8;
  font-size: 0.9375rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a { color: #94a3b8; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: #64748b; font-size: 0.8125rem; margin: 0; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: #94a3b8;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social a:hover {
  color: var(--accent-light);
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

/* --- Mobile Bottom Bar (Sticky CTA) --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}
.mobile-bottom-bar .container { display: flex; gap: 12px; max-width: 100%; padding: 0; }
.mobile-bottom-bar .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding: 14px; font-size: 0.9375rem; white-space: normal; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(160deg, #ffffff 0%, #eff6ff 50%, #dbeafe 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; position: relative; }
.page-hero p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.875rem;
  position: relative;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-dim); }

/* --- Service Detail Page --- */
.service-detail { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.service-content h2 { font-size: 1.5rem; margin: 32px 0 16px; }
.service-content p { color: var(--text-muted); line-height: 1.8; }
.service-content ul { margin: 16px 0; padding-left: 0; }
.service-content ul li { padding: 10px 0 10px 28px; position: relative; color: var(--text-muted); }
.service-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.service-sidebar { position: sticky; top: 100px; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 36px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}
.sidebar-cta h3 { color: #fff; margin-bottom: 12px; font-size: 1.25rem; position: relative; }
.sidebar-cta p { color: rgba(255,255,255,0.85); margin-bottom: 20px; font-size: 0.9375rem; position: relative; }
.sidebar-cta .btn-accent {
  background: #fff;
  color: var(--accent-dark);
}
.sidebar-cta .btn-accent:hover {
  background: #f0f9ff;
}
.sidebar-services {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.sidebar-services h4 { font-size: 1rem; margin-bottom: 16px; }
.sidebar-services ul li { border-bottom: 1px solid var(--border); }
.sidebar-services ul li:last-child { border-bottom: none; }
.sidebar-services ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: var(--text-muted);
  font-weight: 500;
  transition: all var(--transition);
}
.sidebar-services ul a:hover { color: var(--accent); padding-left: 4px; }
.sidebar-services ul a.active { color: var(--accent); font-weight: 700; }

/* --- Gallery Page --- */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-filters { display: flex; gap: 12px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.gallery-filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all var(--transition);
  background: transparent;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* --- Reviews Page --- */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.reviews-score { text-align: center; min-width: 140px; }
.reviews-score .big-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.reviews-score .stars { color: var(--star); font-size: 1.5rem; margin: 8px 0 4px; }
.reviews-score p { color: var(--text-muted); font-size: 0.875rem; }

/* --- Scroll Reveal Animations (Minimal) --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.38s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.44s; }
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Section Divider --- */
.section-divider {
  height: 1px;
  background: var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 90px 0 48px; }
  .hero-content { width: calc(100vw - 32px); max-width: calc(100vw - 32px); padding: 24px 0; overflow: hidden; }
  .hero-content h1 { max-width: 100%; font-size: clamp(2rem, 8vw, 2.75rem); overflow-wrap: anywhere; }
  .hero-content h1 .highlight { display: block; }
  .hero-btns { width: 100%; flex-direction: column; }
  .hero-btns .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal !important;
    text-align: center;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }
  .hero-trust-row { gap: 8px 14px; line-height: 1.4; }
  .top-bar-right { display: none; }
  .trust-bar .container { gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { padding: 24px 12px; }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, 0.15); }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .services-grid, .testimonials-grid, .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 72px; }
  .reviews-summary { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .cta-banner .btn { display: block; margin: 8px auto; width: 80%; max-width: 320px; text-align: center; justify-content: center; }
  .section-header { margin-bottom: 40px; }
  .page-hero h1,
  .page-hero p {
    max-width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
  }
  .page-hero h1 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr !important; }
  .quote-page-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-btns .btn { padding-left: 18px; padding-right: 18px; font-size: 1rem; }
  .trust-bar .container { flex-direction: column; gap: 14px; }
  .area-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.15); }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

/* --- Mobile Nav Overlay --- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #fff;
  border-left: 1px solid var(--border);
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 24px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
}
.mobile-nav-close:hover {
  background: var(--bg-card-hover);
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-links a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.mobile-nav-links a:hover { color: var(--accent); padding-left: 8px; }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* --- Selection --- */
::selection {
  background: rgba(29, 78, 216, 0.15);
  color: var(--text);
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb {
  background: #bfb6a3;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8c8573;
}

/* ============================================================
   EDITORIAL OVERRIDES (VIBE.md Dwell × Texas Monthly)
   All rules below override earlier generic-template styles
   ============================================================ */

/* Heading family: Fraunces serif for display */
h1, h2, h3, h4, h5, h6, .logo {
  font-family: var(--font-heading) !important;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 400; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 500; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.375rem); font-weight: 500; }

/* Paper grain overlay — gives warm off-white the feel of paper */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
/* FIX 2026-04-08: removed .site-header, .mobile-nav, .mobile-bottom-bar from
   this rule — the unconditional `position: relative` was overriding their
   `position: sticky` / `position: fixed` declarations, breaking the sticky
   header, mobile sticky CTA bar, and full-screen mobile nav overlay site-wide.
   See docs/audits/2026-04-08-mobile-readiness-audit.md Finding 1. */
.cta-banner, main, footer, .top-bar {
  position: relative;
  z-index: 2;
}

/* Section labels — minimalist editorial overline */
.section-label {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  color: rgba(26, 26, 26, 0.55) !important;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

/* Wave ornament above H2 in section headers */
.section-header h2 {
  position: relative;
  padding-top: 28px;
}
.section-header h2::before {
  content: '';
  display: block;
  width: 72px;
  height: 10px;
  margin: 0 auto 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 10'><path d='M1 5 Q 10 1, 18 5 T 36 5 T 54 5 T 71 5' stroke='%231a1a1a' stroke-opacity='0.35' stroke-width='1.3' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
}

/* Buttons — editorial, sharp, shimmer on primary */
.btn {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 2px !important;
  padding: 16px 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-accent, .btn-primary {
  background: var(--accent) !important;
  color: #fcfaf6 !important;
  position: relative;
  overflow: hidden;
}
.btn-accent::before, .btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
.btn-accent:hover, .btn-primary:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -12px rgba(29, 78, 216, 0.4);
}
.btn-white, .btn-outline {
  background: transparent !important;
  color: var(--text) !important;
  border: 1.5px solid var(--text) !important;
  border-radius: 2px !important;
}
.btn-white:hover, .btn-outline:hover {
  background: var(--text) !important;
  color: var(--bg) !important;
  transform: translateY(-1px);
}

/* Pull-quote component — inline in body copy, Dwell-style */
.pull-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  color: var(--text);
  border-left: 2px solid var(--text);
  padding: 12px 0 12px 32px;
  margin: 48px 0 48px 8px;
  max-width: 760px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  transition: border-color 0.4s ease;
}
.pull-quote:hover { border-left-color: var(--accent); }
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font);
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
}

/* Service cards — editorial, square-ish, bordered */
.service-card {
  border-radius: 4px !important;
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -20px rgba(120, 100, 60, 0.25) !important;
  border-color: #d7ceb8 !important;
}
.service-card::before { display: none !important; }
.service-card h3 a { color: var(--text); }
.service-card h3 a:hover { color: var(--accent); }

/* Feature cards */
.feature-card {
  background: var(--bg) !important;
  border-radius: 4px !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
}
.feature-icon {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1.5px solid var(--border) !important;
}

/* Alternating sections use warm sand */
.section-alt { background: var(--bg-alt) !important; }

/* Header & nav — editorial */
.site-header {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border) !important;
}
.logo {
  font-family: var(--font-heading) !important;
  font-weight: 500;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
}
.logo span { color: var(--text); font-style: italic; }
.nav-links a {
  font-family: var(--font);
  color: var(--text) !important;
  font-weight: 500;
}
.nav-links a:hover { color: var(--accent) !important; }
.nav-links a::after { background: var(--accent) !important; }

/* Top bar — editorial dark */
.top-bar {
  background: var(--text) !important;
  color: var(--bg);
  font-family: var(--font);
}
.top-bar a { color: var(--bg) !important; }
.top-bar-badge {
  background: rgba(252, 250, 246, 0.15) !important;
  color: var(--bg);
  border-radius: 2px !important;
}

/* Trust bar */
.trust-bar {
  background: var(--bg) !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
}
.trust-item svg { color: var(--text) !important; }
.trust-item .stars { color: var(--text) !important; }
.trust-item strong { color: var(--text) !important; }

/* Stats */
.stat-number { font-family: var(--font-heading); color: var(--text); font-weight: 400; font-variation-settings: 'opsz' 144; }
.stat-label { font-family: var(--font); color: rgba(26, 26, 26, 0.6); }

/* Testimonials */
.testimonial-card {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
}
.testimonial-stars { color: var(--text) !important; }
.testimonial-avatar {
  background: var(--text) !important;
  color: var(--bg) !important;
  font-family: var(--font-heading);
  font-weight: 400;
  border-radius: 50% !important;
}
.testimonial-name { font-family: var(--font); font-weight: 600; }
.testimonial-role { color: rgba(26, 26, 26, 0.55); }

/* Area cards */
.area-card {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  color: var(--text) !important;
  transition: all 0.3s ease;
}
.area-card:hover {
  background: var(--bg-alt) !important;
  border-color: var(--text) !important;
  transform: translateY(-2px);
}
.area-card svg { color: var(--accent); }

/* Blog cards */
.blog-card {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: #d7ceb8 !important;
  box-shadow: 0 28px 50px -20px rgba(120, 100, 60, 0.25) !important;
}
.blog-card h3 a { color: var(--text); font-family: var(--font-heading); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card-meta {
  font-family: var(--font);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
}

/* CTA banner */
.cta-banner {
  background: var(--text) !important;
  color: var(--bg) !important;
}
.cta-banner h2 { color: var(--bg) !important; }
.cta-banner p { color: rgba(252, 250, 246, 0.78) !important; }
.cta-banner .btn-white {
  background: var(--bg) !important;
  color: var(--text) !important;
  border: 1.5px solid var(--bg) !important;
}
.cta-banner .btn-white:hover {
  background: transparent !important;
  color: var(--bg) !important;
}

/* Footer */
.site-footer {
  background: var(--text) !important;
  color: rgba(252, 250, 246, 0.78);
  border-top: none !important;
}
.site-footer h4 { color: var(--bg); font-family: var(--font-heading); }
.site-footer a { color: rgba(252, 250, 246, 0.78); }
.site-footer a:hover { color: var(--bg); }
.site-footer .logo { color: var(--bg); }
.site-footer .logo span { color: var(--bg); }
.footer-bottom { border-top: 1px solid rgba(252, 250, 246, 0.14); color: rgba(252, 250, 246, 0.55); }

/* Page hero (inner pages) */
.page-hero {
  background: var(--bg-alt);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-heading);
  color: var(--text);
}
.page-hero .text-accent,
.highlight,
.text-accent {
  color: var(--text) !important;
  font-style: italic;
  -webkit-text-fill-color: var(--text) !important;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: rgba(26, 26, 26, 0.6);
}
.breadcrumb a { color: rgba(26, 26, 26, 0.6); }
.breadcrumb a:hover { color: var(--accent); }

/* Service content long-form */
.service-content h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.service-content p, .service-content li {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.75;
  font-size: 1.0625rem;
}
.service-content a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.service-content a:hover { color: var(--accent-dark); }

/* Mobile bottom bar */
.mobile-bottom-bar {
  background: var(--bg) !important;
  border-top: 1px solid var(--border) !important;
}

/* FAQ items */
.faq-item {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}
.faq-question {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text);
}

/* Gallery page grid — real image wiring */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.gallery-item-real {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  aspect-ratio: 4/3;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item-real:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 50px -20px rgba(120, 100, 60, 0.3);
}
.gallery-item-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item-real:hover img { transform: scale(1.03); }
.gallery-item-real .gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(26, 26, 26, 0.82));
  color: #fcfaf6;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Filter buttons */
.gallery-filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.gallery-filter-btn:hover { border-color: var(--text); }
.gallery-filter-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* Quote page */
.quote-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.quote-form-wrap,
.quote-trust-signals {
  min-width: 0;
  max-width: 100%;
}
.quote-form-wrap .contact-form {
  min-width: 0;
  max-width: 100%;
  padding: clamp(24px, 3vw, 36px);
}
.quote-trust-signals {
  display: grid;
  gap: 18px;
  align-content: start;
}
.quote-trust-signals .feature-card {
  min-width: 0;
  margin: 0;
  padding: 28px;
  text-align: left;
  overflow-wrap: anywhere;
}
.quote-trust-signals .feature-icon {
  margin: 0 0 18px;
}
.quote-submit {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  white-space: normal;
}
.quote-form-note {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: center;
}

@media (max-width: 900px) {
  .quote-page-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .quote-trust-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .quote-page-grid {
    gap: 24px;
  }
  .quote-form-wrap .contact-form {
    padding: 24px 20px;
  }
  .quote-trust-signals {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .quote-trust-signals .feature-card {
    padding: 24px 20px;
  }
  .quote-submit {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 768px) {
  body.free-quote-page {
    padding-bottom: 0;
  }
  .free-quote-page .mobile-bottom-bar {
    display: none;
  }
}

/* Mobile adaptations */
@media (max-width: 768px) {
  .hero { padding: 48px 0 32px; }
  .hero-content h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .ba-hero { aspect-ratio: 4/5; max-height: none; }
  .pull-quote {
    border-left-width: 3px;
    padding-left: 20px;
    margin: 32px 0;
    font-size: clamp(1.25rem, 5vw, 1.625rem);
  }
}

/* ============================================================
   Wave 1 GPWS Redesign - Katy/Texas lead-gen pass
   Scoped to homepage hero/surface sections and free quote path.
   ============================================================ */

:root {
  --gpws-ink: #171717;
  --gpws-paper: #fffdf8;
  --gpws-sand: #f2eadb;
  --gpws-clay: #a84f2f;
  --gpws-cypress: #154734;
  --gpws-gulf: #0f6f7f;
  --gpws-blue: #1d4ed8;
}

/* Keep content visible for screenshots, crawlers, and no-JS visitors. */
.reveal,
.fade-in,
.stagger > * {
  opacity: 1 !important;
  transform: none !important;
}

.gpws-hero {
  background:
    linear-gradient(90deg, rgba(21, 71, 52, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, var(--gpws-paper) 0%, #f6efe3 100%);
  background-size: 72px 100%, auto;
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.gpws-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.gpws-hero .hero-content {
  max-width: 680px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.gpws-hero .hero-overline,
.quote-hero .section-label,
.support-label {
  color: var(--gpws-clay) !important;
  letter-spacing: 0.12em;
}

.gpws-hero .hero-content h1 {
  max-width: 660px;
  margin: 0 0 24px;
  color: var(--gpws-ink);
  font-size: 4.15rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.gpws-hero .hero-content p {
  display: block;
  max-width: 610px;
  color: #34302a;
  font-size: 1.16rem;
  line-height: 1.7;
  margin: 0 0 28px;
}

.gpws-hero .hero-btns {
  justify-content: flex-start;
  margin-top: 0;
}

.hero-surface-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-surface-bullets li {
  min-width: 0;
  padding: 12px 14px 12px 18px;
  border-left: 3px solid var(--gpws-gulf);
  background: rgba(255, 253, 248, 0.76);
  color: #3d372f;
  font-size: 0.94rem;
  line-height: 1.45;
  box-shadow: 0 16px 40px -36px rgba(23, 23, 23, 0.7);
}

.hero-surface-bullets strong {
  color: var(--gpws-cypress);
}

.surface-planner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 30px 0 0;
  border: 1px solid rgba(21, 71, 52, 0.25);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 50px -42px rgba(23, 23, 23, 0.8);
}

.surface-planner div {
  min-width: 0;
  padding: 16px 14px;
  border-left: 1px solid rgba(21, 71, 52, 0.18);
}

.surface-planner div:first-child {
  border-left: 0;
}

.surface-planner strong {
  display: block;
  color: var(--gpws-cypress);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
}

.surface-planner span {
  display: block;
  margin-top: 8px;
  color: #3f3a32;
  font-size: 0.88rem;
  line-height: 1.35;
}

.gpws-hero .btn-white {
  background: var(--gpws-paper) !important;
  border-color: rgba(23, 23, 23, 0.5) !important;
}

.gpws-hero .hero-trust-row {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 28px;
  max-width: 640px;
}

.gpws-hero .hero-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(21, 71, 52, 0.18);
  background: rgba(255, 253, 248, 0.78);
  color: #2f352f;
  font-size: 0.8rem;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid rgba(168, 79, 47, 0.55);
  z-index: -1;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px -34px rgba(23, 23, 23, 0.55);
}

.hero-representative-note {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.92);
  color: #56514a;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 12px 30px -24px rgba(23, 23, 23, 0.5);
}

.hero-service-panel {
  position: absolute;
  right: -18px;
  bottom: 76px;
  width: min(310px, calc(100% - 36px));
  padding: 18px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 42px -24px rgba(23, 23, 23, 0.5);
}

.hero-service-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--gpws-cypress);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-service-panel ul {
  display: grid;
  gap: 7px;
  margin: 0;
}

.hero-service-panel li {
  position: relative;
  padding-left: 16px;
  color: #2d2b26;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-service-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--gpws-gulf);
  border-radius: 50%;
}

.hero-link-strip {
  background: var(--gpws-paper);
  border-bottom: 1px solid var(--border);
}

.hero-link-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.hero-link-strip-label {
  color: var(--gpws-clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-link-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(21, 71, 52, 0.17);
  background: rgba(255, 253, 248, 0.72);
  color: #2e332d;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.hero-link-strip a:hover {
  transform: translateY(-1px);
  background: rgba(15, 111, 127, 0.07);
  border-color: rgba(15, 111, 127, 0.34);
  color: var(--gpws-cypress);
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.trust-item {
  justify-content: center;
  min-width: 0;
  padding: 4px 14px;
  color: #302c25;
  text-align: center;
  border-left: 1px solid var(--border);
}

.trust-item:first-child {
  border-left: 0;
}

.gpws-intent-section {
  background:
    linear-gradient(90deg, rgba(15, 111, 127, 0.05) 0 1px, transparent 1px 100%),
    var(--gpws-paper);
  background-size: 76px 100%, auto;
  border-bottom: 1px solid rgba(21, 71, 52, 0.12);
}

.intent-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.intent-copy {
  min-width: 0;
}

.intent-copy h2 {
  max-width: 560px;
  margin: 10px 0 16px;
  color: var(--gpws-ink);
  font-size: 2.45rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.intent-copy p {
  max-width: 620px;
  margin: 0;
  color: #423d36;
  font-size: 1rem;
  line-height: 1.75;
}

.intent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.intent-actions .service-card-link {
  margin-top: 0;
}

.intent-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.intent-card {
  display: grid;
  gap: 9px;
  min-width: 0;
  min-height: 150px;
  align-content: start;
  padding: 22px;
  text-decoration: none;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(21, 71, 52, 0.17);
  border-radius: 8px;
  box-shadow: 0 18px 52px -46px rgba(23, 23, 23, 0.8);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.intent-card:hover {
  transform: translateY(-2px);
  background: #fffdf8;
  border-color: rgba(168, 79, 47, 0.46);
}

.intent-card strong {
  color: var(--gpws-ink);
  font-family: var(--font-heading);
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.intent-card span {
  color: #4f4941;
  font-size: 0.95rem;
  line-height: 1.58;
}

.surface-section {
  background: var(--gpws-paper);
}

.surface-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.surface-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: var(--gpws-paper);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.surface-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.surface-card-featured img {
  aspect-ratio: 5 / 4;
}

.surface-card-body {
  padding: 24px;
}

.surface-card h3 {
  margin-bottom: 10px;
  color: var(--gpws-ink);
  letter-spacing: 0;
}

.surface-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.process-step {
  border-top: 3px solid var(--gpws-gulf);
}

.process-num {
  background: var(--gpws-cypress) !important;
  color: var(--gpws-paper) !important;
}

.quote-hero {
  background:
    linear-gradient(90deg, rgba(15, 111, 127, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fffdf8 0%, var(--gpws-sand) 100%);
  background-size: 76px 100%, auto;
  padding: 76px 0 58px;
}

.quote-hero .container {
  max-width: 900px;
}

.quote-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--gpws-ink);
  font-size: 3.15rem;
  line-height: 1;
  letter-spacing: 0;
}

.quote-hero p {
  max-width: 720px;
  margin: 0;
  color: #34302a;
  font-size: 1.12rem;
  line-height: 1.72;
}

.quote-hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quote-hero-strip span {
  padding: 8px 11px;
  background: rgba(255, 253, 248, 0.75);
  border: 1px solid rgba(21, 71, 52, 0.18);
  color: #2e332d;
  font-size: 0.82rem;
  font-weight: 600;
}

.quote-form-heading {
  margin-bottom: 18px;
  padding: 0 2px;
}

.quote-form-heading h2 {
  margin-bottom: 6px;
  font-size: 1.65rem;
  letter-spacing: 0;
}

.quote-form-heading p {
  color: var(--text-muted);
  margin: 0;
}

.quote-form-wrap .contact-form {
  background: var(--gpws-paper);
  border: 1px solid rgba(23, 23, 23, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 54px -40px rgba(23, 23, 23, 0.45);
}

.quote-trust-signals {
  position: sticky;
  top: 106px;
}

.quote-support-card,
.quote-service-card {
  background: var(--gpws-ink);
  color: rgba(255, 253, 248, 0.78);
  border-radius: 8px;
  padding: 28px;
}

.quote-support-card h2,
.quote-service-card h3 {
  color: var(--gpws-paper);
  margin-bottom: 16px;
  letter-spacing: 0;
}

.quote-support-card h2 {
  font-size: 1.7rem;
  line-height: 1.12;
}

.quote-support-card ul {
  display: grid;
  gap: 12px;
}

.quote-support-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.quote-support-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--gpws-clay);
  border-radius: 50%;
}

.quote-service-card {
  background: var(--gpws-paper);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.quote-service-card h3 {
  color: var(--gpws-ink);
}

.quote-service-card p {
  margin-bottom: 14px;
}

.visual-caption {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.45;
}

.fence-planner-hero .hero-visual {
  align-self: stretch;
}

.fence-planner-hero .hero-visual img {
  aspect-ratio: 4 / 3;
}

.fence-trust-bar .trust-item {
  font-weight: 700;
}

.fence-material-grid .surface-card {
  border-top: 3px solid var(--gpws-cypress);
}

.fence-material-grid .surface-card-featured {
  border-top-color: var(--gpws-clay);
}

.fence-planner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.fence-boundary-note {
  display: grid;
  gap: 6px;
  margin: 30px 0;
  padding: 18px 20px;
  background: rgba(168, 79, 47, 0.08);
  border: 1px solid rgba(168, 79, 47, 0.24);
  border-radius: 8px;
}

.fence-boundary-note strong {
  color: var(--gpws-clay);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fence-boundary-note span {
  color: #35312a;
  line-height: 1.65;
}

.fence-run-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 24px 0 26px;
  border: 1px solid rgba(21, 71, 52, 0.2);
  background:
    linear-gradient(90deg, rgba(21, 71, 52, 0.06) 0 1px, transparent 1px 100%),
    var(--gpws-paper);
  background-size: 46px 100%, auto;
}

.fence-run-map div {
  min-width: 0;
  padding: 18px;
  border-left: 1px solid rgba(21, 71, 52, 0.14);
  border-top: 1px solid rgba(21, 71, 52, 0.14);
}

.fence-run-map div:nth-child(1),
.fence-run-map div:nth-child(2) {
  border-top: 0;
}

.fence-run-map div:nth-child(odd) {
  border-left: 0;
}

.fence-run-map strong {
  display: block;
  color: var(--gpws-cypress);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.fence-run-map span {
  display: block;
  margin-top: 8px;
  color: #3f3a32;
  font-size: 0.92rem;
  line-height: 1.5;
}

.quote-path-panel {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 20px;
  padding: 28px;
  color: rgba(255, 253, 248, 0.82);
  background: var(--gpws-ink);
  border-radius: 8px;
  box-shadow: 0 24px 58px -42px rgba(23, 23, 23, 0.8);
}

.quote-path-panel h2 {
  color: var(--gpws-paper);
  letter-spacing: 0;
}

.quote-path-panel ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-path-panel li {
  display: grid;
  gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

.quote-path-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.quote-path-panel strong {
  color: var(--gpws-paper);
}

.quote-path-panel span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
}

.quote-path-panel .btn {
  justify-content: center;
  width: 100%;
}

.neighborhood-field-hero .hero-grid {
  align-items: stretch;
}

.katy-hero-stack {
  display: grid;
  align-content: start;
  gap: 22px;
}

.field-guide-card {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 32px;
  border: 1px solid rgba(21, 71, 52, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.82)),
    linear-gradient(135deg, rgba(30, 122, 96, 0.16), rgba(181, 94, 62, 0.12));
  box-shadow: 0 22px 60px rgba(21, 71, 52, 0.14);
}

.field-guide-label,
.triage-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(181, 94, 62, 0.28);
  background: rgba(181, 94, 62, 0.1);
  color: var(--gpws-clay);
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-guide-card h2 {
  margin: 0;
  color: var(--gpws-ink);
}

.field-guide-card ol,
.photo-checklist-panel ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.field-guide-card li {
  display: grid;
  gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(21, 71, 52, 0.14);
}

.field-guide-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.field-guide-card strong,
.photo-checklist-panel strong {
  color: var(--gpws-cypress);
}

.field-guide-card span,
.field-guide-card p,
.photo-checklist-panel li {
  color: #3f3a32;
  line-height: 1.55;
}

.field-guide-card p {
  margin: 0;
  font-size: 0.9rem;
}

.triage-matrix {
  display: grid;
  gap: 0;
  border: 1px solid rgba(21, 71, 52, 0.16);
  background: var(--gpws-paper);
}

.triage-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border-top: 1px solid rgba(21, 71, 52, 0.14);
}

.triage-row:first-child {
  border-top: 0;
}

.triage-row h3 {
  margin: 12px 0 0;
  color: var(--gpws-ink);
}

.triage-row p {
  margin: 0;
  color: #3f3a32;
  line-height: 1.7;
}

.field-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 42px;
  align-items: start;
}

.condition-grid,
.local-context-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(21, 71, 52, 0.16);
  background: var(--gpws-paper);
}

.condition-grid div,
.local-context-band a {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 20px;
  border-left: 1px solid rgba(21, 71, 52, 0.14);
  border-top: 1px solid rgba(21, 71, 52, 0.14);
}

.condition-grid div:nth-child(1),
.condition-grid div:nth-child(2),
.local-context-band a:nth-child(1),
.local-context-band a:nth-child(2) {
  border-top: 0;
}

.condition-grid div:nth-child(odd),
.local-context-band a:nth-child(odd) {
  border-left: 0;
}

.condition-grid strong,
.local-context-band strong {
  color: var(--gpws-cypress);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.condition-grid span,
.local-context-band span {
  color: #3f3a32;
  line-height: 1.58;
}

.photo-checklist-panel {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(21, 71, 52, 0.2);
  background: #173f35;
  color: var(--gpws-paper);
}

.photo-checklist-panel h2 {
  margin: 0;
  color: var(--gpws-paper);
}

.photo-checklist-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 253, 248, 0.78);
}

.photo-checklist-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gpws-gulf);
}

.local-context-band a {
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.local-context-band a:hover {
  background: rgba(30, 122, 96, 0.08);
  transform: translateY(-1px);
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 6px;
}

@media (max-width: 980px) {
  .gpws-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .gpws-hero .hero-content {
    max-width: 760px;
  }

  .gpws-hero .hero-content h1,
  .quote-hero h1 {
    font-size: 2.75rem;
  }

  .hero-visual {
    max-width: 640px;
  }

  .trust-bar .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .surface-planner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .surface-planner div:nth-child(odd) {
    border-left: 0;
  }

  .surface-planner div:nth-child(n + 3) {
    border-top: 1px solid rgba(21, 71, 52, 0.18);
  }

  .trust-item {
    border: 1px solid var(--border);
    background: var(--gpws-paper);
  }

  .surface-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .intent-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .intent-copy h2 {
    max-width: 720px;
    font-size: 2.15rem;
  }

  .surface-card-featured img {
    aspect-ratio: 4 / 3;
  }

  .quote-trust-signals {
    position: static;
  }

  .fence-planner-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-path-panel {
    position: static;
  }

  .field-guide-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .photo-checklist-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .gpws-hero {
    padding: 38px 0 32px;
    background-size: 44px 100%, auto;
  }

  .gpws-hero .container {
    max-width: 100%;
    overflow: visible;
  }

  .gpws-hero .hero-grid {
    gap: 22px;
    max-width: 100%;
    min-width: 0;
  }

  .gpws-hero .hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .gpws-hero .hero-content h1 {
    font-size: clamp(1.95rem, 8.4vw, 2.18rem);
    line-height: 1.04;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .gpws-hero .hero-content p,
  .quote-hero p {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .gpws-hero .hero-btns {
    width: 100%;
  }

  .gpws-hero .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-surface-bullets {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin-top: 22px;
  }

  .hero-link-strip .container {
    align-items: stretch;
    gap: 8px;
  }

  .hero-link-strip-label {
    width: 100%;
  }

  .hero-link-strip a {
    flex: 1 1 150px;
    justify-content: center;
    text-align: center;
  }

  .surface-planner {
    grid-template-columns: minmax(0, 1fr);
  }

  .surface-planner div {
    border-left: 0;
    border-top: 1px solid rgba(21, 71, 52, 0.18);
  }

  .surface-planner div:first-child {
    border-top: 0;
  }

  .gpws-hero .hero-trust-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual::before {
    inset: 12px 0 -10px 12px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 4.4;
  }

  .hero-representative-note {
    position: static;
    margin-top: -1px;
    border-radius: 0;
  }

  .hero-service-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 8px;
    border-radius: 0 0 8px 8px;
  }

  .trust-bar .container {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-item {
    min-height: 42px;
  }

  .intent-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .intent-copy h2 {
    font-size: 1.85rem;
  }

  .intent-actions,
  .intent-actions .btn {
    width: 100%;
  }

  .intent-actions .btn {
    justify-content: center;
  }

  .intent-card {
    min-height: 0;
    padding: 20px;
  }

  .surface-card-body {
    padding: 20px;
  }

  .quote-hero {
    padding: 34px 0 28px;
    background-size: 44px 100%, auto;
  }

  .quote-hero h1 {
    font-size: 2rem;
    line-height: 1.04;
  }

  .quote-hero-strip {
    display: none;
  }

  .free-quote-page .section {
    padding-top: 34px;
  }

  .quote-form-heading h2 {
    font-size: 1.4rem;
  }

  .quote-support-card,
  .quote-service-card,
  .quote-path-panel {
    padding: 22px 20px;
  }

  .field-guide-card,
  .photo-checklist-panel {
    padding: 22px 20px;
  }

  .triage-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .condition-grid,
  .local-context-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .condition-grid div,
  .condition-grid div:nth-child(2),
  .local-context-band a,
  .local-context-band a:nth-child(2) {
    border-left: 0;
    border-top: 1px solid rgba(21, 71, 52, 0.14);
  }

  .condition-grid div:first-child,
  .local-context-band a:first-child {
    border-top: 0;
  }

  .fence-run-map {
    grid-template-columns: minmax(0, 1fr);
  }

  .fence-run-map div,
  .fence-run-map div:nth-child(2) {
    border-left: 0;
    border-top: 1px solid rgba(21, 71, 52, 0.14);
  }

  .fence-run-map div:first-child {
    border-top: 0;
  }

  .mobile-bottom-bar {
    padding: 10px 12px;
  }

  .mobile-bottom-bar .container {
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .mobile-bottom-bar .btn {
    padding: 13px 8px;
    font-size: 0.875rem;
  }
}

/* ============================================================
   GPWS services hub route refresh
   ============================================================ */

.services-hub-page .site-header {
  border-bottom-color: rgba(21, 71, 52, 0.16);
}

.services-hub-hero .hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
}

.services-hub-hero .hero-content h1 {
  max-width: 720px;
}

.services-hub-hero .hero-content p {
  max-width: 650px;
}

.service-equipment-visual img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.service-equipment-visual figcaption {
  margin-top: 10px;
  color: #514c45;
  font-size: 0.82rem;
  line-height: 1.45;
}

.service-route-strip .trust-item span {
  font-weight: 700;
}

.service-route-section {
  border-top: 1px solid rgba(21, 71, 52, 0.12);
}

.service-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-route-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: var(--gpws-paper);
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px -58px rgba(23, 23, 23, 0.78);
}

.service-route-card-featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  grid-template-rows: auto;
  background:
    linear-gradient(135deg, rgba(21, 71, 52, 0.1), transparent 42%),
    var(--gpws-paper);
}

.service-route-card img {
  width: 100%;
  height: 100%;
  min-height: 228px;
  object-fit: cover;
}

.service-route-card:not(.service-route-card-featured) img {
  aspect-ratio: 16 / 10;
}

.service-route-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
}

.service-route-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gpws-clay);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-route-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.service-route-card h3 a {
  color: var(--gpws-ink);
}

.service-route-card p {
  color: #4c463f;
  line-height: 1.72;
  margin: 0 0 18px;
}

.service-route-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
}

.service-route-card li {
  position: relative;
  padding-left: 18px;
  color: #4c463f;
  line-height: 1.5;
}

.service-route-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 7px;
  height: 7px;
  background: var(--gpws-gulf);
  border-radius: 50%;
}

.service-route-card .btn,
.service-route-card .service-card-link {
  margin-top: auto;
  align-self: flex-start;
}

.service-more-routes-section {
  background:
    linear-gradient(90deg, rgba(15, 111, 127, 0.07) 0 1px, transparent 1px 100%),
    #f7f2e8;
  background-size: 76px 100%, auto;
}

.service-more-routes {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 34px;
  align-items: start;
}

.service-more-copy {
  position: sticky;
  top: 108px;
}

.service-more-copy h2 {
  margin: 8px 0 14px;
  font-size: 2.35rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.service-more-copy p {
  color: #423d36;
  line-height: 1.72;
  margin: 0;
}

.services-route-rail {
  display: grid;
  gap: 12px;
}

.services-route-rail a {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
  padding: 18px 20px;
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(21, 71, 52, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 50px -44px rgba(23, 23, 23, 0.8);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.services-route-rail a:hover {
  transform: translateY(-2px);
  background: var(--gpws-paper);
  border-color: rgba(168, 79, 47, 0.44);
}

.services-route-rail strong {
  color: var(--gpws-ink);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.services-route-rail span {
  color: #4f4941;
  line-height: 1.55;
}

.service-triage-section {
  border-top: 1px solid rgba(21, 71, 52, 0.12);
}

.services-hub-page .triage-list {
  display: grid;
  gap: 14px;
}

.services-hub-page .triage-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-width: 0;
  padding: 22px 24px;
  background: var(--gpws-paper);
  border: 1px solid rgba(23, 23, 23, 0.13);
  border-radius: 8px;
}

.services-hub-page .triage-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gpws-ink);
  font-size: 1.04rem;
}

.services-hub-page .triage-row span {
  display: block;
  color: #4f4941;
  line-height: 1.6;
}

.service-cta-split {
  padding: 52px 0;
}

.service-cta-split .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.service-cta-split .section-label {
  color: rgba(255, 255, 255, 0.74) !important;
}

.service-cta-split h2,
.service-cta-split p {
  text-align: left;
}

.service-cta-split h2 {
  max-width: 760px;
}

.service-cta-split p {
  max-width: 740px;
  margin-left: 0;
  margin-right: 0;
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .services-hub-hero .hero-grid,
  .service-more-routes,
  .service-cta-split .container {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-route-card-featured {
    grid-column: 1 / -1;
  }

  .service-more-copy {
    position: static;
  }

  .service-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .service-equipment-visual img {
    aspect-ratio: 4 / 3;
  }

  .service-route-grid,
  .service-route-card-featured,
  .services-route-rail a,
  .services-hub-page .triage-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-route-card-featured {
    grid-column: auto;
  }

  .service-route-card img {
    min-height: 0;
  }

  .service-route-card-body,
  .services-hub-page .triage-row {
    padding: 20px;
  }

  .service-more-copy h2 {
    font-size: 1.85rem;
  }

  .service-cta-actions,
  .service-cta-actions .btn {
    width: 100%;
  }
}

