/*
Theme Name: Big Easy Remediation
Theme URI: https://bigeasymediiation.com
Author: Sonic 777
Author URI: https://sonic777.com
Description: Custom authority site theme for Big Easy Remediation - New Orleans mold, water, fire, and cleaning services. Mobile-first, conversion-optimized, Navy/Teal/Ochre palette.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: big-easy-remediation
Tags: remediation, new-orleans, authority-site, mobile-first
*/

/* =============================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================================= */

:root {
  /* ================================================================
     NOLA BRICK & BRASS PALETTE - 2026 Conversion-Optimized
     ================================================================ */

  /* Primary - Deep Charcoal (headers, footer, dark sections) */
  --color-navy:        #1F1F1F;
  --color-slate:       #2D2D2D;
  --color-white-warm:  #F5EFE6;

  /* Accent - Brick Red (CTAs, urgency badges, highlights) */
  --color-teal:        #B95D3F;
  --color-teal-dark:   #9A4D33;
  --color-orange:      #B95D3F;
  --color-orange-dark: #9A4D33;
  --color-ochre:       #B95D3F; /* Alias for backward compat */
  --color-grey-storm:  #6B6560;

  /* Highlight - Brass Gold (stars, dividers, premium accents) */
  --color-purple:      #B8945F;
  --color-purple-dark: #9A7A4D;
  --color-brass:       #B8945F;
  --color-brass-dark:  #9A7A4D;

  /* Semantic */
  --color-success:     #2D7A4F;
  --color-alert:       #B8945F;
  --color-error:       #B83232;
  --color-info:        #2B5FA6;

  /* Neutrals - Warm Cream family */
  --color-bg:          #F5EFE6;
  --color-bg-section:  #EDE8DF;
  --color-charcoal:    #3A3633;
  --color-border:      #D9D4CB;
  --color-surface-dark:#1F1F1F;
  --color-neutral-mid: #8A8580;
  --color-white:       #FFFCF8;
  --color-input-border:#C4BFB6;

  /* Typography - Warm Gray tones */
  --color-text-body:   #3A3633;
  --color-text-light:  #E8E4DD;
  --color-text-muted:  #A39E96;

  /* Font Families */
  --font-heading:      'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:         'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-accent:       'Barlow', 'Arial', sans-serif;

  /* Type Scale - Desktop */
  --text-h1:    52px;
  --text-h2:    40px;
  --text-h3:    30px;
  --text-h4:    22px;
  --text-h5:    18px;
  --text-h6:    13px;
  --text-body-lg:  18px;
  --text-body:     16px;
  --text-body-sm:  14px;
  --text-caption:  12px;
  --text-btn:      15px;
  --text-nav:      15px;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  56px;
  --space-2xl: 80px;
  --space-3xl: 120px;

  /* Layout */
  --container-max:    1200px;
  --container-narrow: 800px;
  --container-form:   560px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 6px;

  /* Shadows */
  --shadow-card:     0 2px 8px rgba(26, 43, 74, 0.08);
  --shadow-card-hover: 0 6px 20px rgba(26, 43, 74, 0.14);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;

  /* Nav */
  --nav-height: 72px;
  --nav-height-mobile: 60px;
}

/* =============================================================================
   2. RESET & BASE
   ============================================================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-body);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================= */

/* Typography - More contrast and weight for headlines */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  letter-spacing: -0.015em;
}

h4, h5, h6 {
  font-family: var(--font-accent);
  color: var(--color-navy);
}

h1 {
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

/* Bolder H2 with tighter line height */
h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 32px;
  margin-bottom: 12px;
}

/* Accent bar option for section H2s */
h2.section-heading--accent {
  position: relative;
  padding-left: 16px;
}

h2.section-heading--accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  background-color: var(--color-teal);
  border-radius: 2px;
}

h3 {
  font-size: var(--text-h3);
  font-weight: 700; /* Bumped from 600 */
  line-height: 1.15;
  margin-top: 24px;
  margin-bottom: 10px;
}

h4 {
  font-size: var(--text-h4);
  font-weight: 700;
  line-height: 1.25;
}

h5 {
  font-size: var(--text-h5);
  font-weight: 700; /* Bumped from 600 */
  line-height: 1.3;
  letter-spacing: 0.01em;
}

h6,
.label-eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-h6);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
}

p {
  margin-bottom: 1.2em;
  max-width: 72ch;
}

p:last-child {
  margin-bottom: 0;
}

.body-large {
  font-size: var(--text-body-lg);
  line-height: 1.7;
}

.body-small {
  font-size: var(--text-body-sm);
  line-height: 1.6;
}

.caption {
  font-size: var(--text-caption);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Pull Quote */
.pull-quote {
  font-size: var(--text-body-lg);
  font-style: italic;
  color: var(--color-teal);
  border-left: 4px solid var(--color-teal);
  padding-left: 24px;
  margin: var(--space-lg) 0;
}

/* On dark backgrounds */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3 {
  color: var(--color-white-warm);
}

.bg-dark p,
.bg-dark li {
  color: var(--color-text-light);
}

.bg-dark .label-eyebrow {
  color: var(--color-teal);
}

/* =============================================================================
   4. LAYOUT
   ============================================================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--form {
  max-width: var(--container-form);
}

/* Section spacing - 2026 conversion-optimized (60-80px) */
.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section--sm {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section--lg {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* Reduce vertical margin between stacked sections */
.section + .section {
  padding-top: 60px;
}

/* =============================================================================
   SCROLL REVEAL ANIMATIONS - Subtle, purposeful
   ============================================================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Reveal classes - applied via JS IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for grids */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }

/* Tighter heading-to-content spacing */
.section-heading {
  margin-bottom: 12px;
}

.section-sub {
  margin-bottom: 32px;
}

.bg-white   { background-color: var(--color-white); }
.bg-section { background-color: var(--color-bg-section); }
.bg-dark    { background-color: var(--color-surface-dark); }
.bg-navy    { background-color: var(--color-navy); }

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* =============================================================================
   5. BUTTONS
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: var(--text-btn);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  min-height: 44px;
  padding: 14px 32px;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

/* Primary - Enhanced hover */
.btn--primary {
  background-color: var(--color-navy);
  color: var(--color-white-warm);
  border: 2px solid var(--color-navy);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-slate) 0%, var(--color-navy) 100%);
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: -1;
}

.btn--primary:hover {
  background-color: var(--color-slate);
  border-color: var(--color-slate);
  color: var(--color-white-warm);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 43, 74, 0.25);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary:active {
  background-color: var(--color-surface-dark);
  border-color: var(--color-surface-dark);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  transform: translateY(0);
}

/* Secondary */
.btn--secondary {
  background-color: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
  padding: 12px 30px;
}

.btn--secondary:hover {
  background-color: var(--color-navy);
  color: var(--color-white-warm);
  text-decoration: none;
}

/* Ghost (dark backgrounds) */
.btn--ghost {
  background-color: transparent;
  color: var(--color-white-warm);
  border: 2px solid var(--color-white-warm);
  padding: 12px 30px;
}

.btn--ghost:hover {
  background-color: rgba(248, 247, 244, 0.12);
  color: var(--color-white-warm);
  text-decoration: none;
}

/* Accent (WARM ORANGE - Primary CTA, ONE per page for urgency) */
.btn--accent {
  background-color: var(--color-orange);
  color: var(--color-white);
  border: 2px solid var(--color-orange);
  position: relative;
  overflow: hidden;
  font-size: 16px;
  padding: 16px 36px;
  box-shadow: 0 4px 14px rgba(232, 137, 58, 0.3);
}

.btn--accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.btn--accent:hover {
  background-color: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 137, 58, 0.45);
}

.btn--accent:hover::after {
  opacity: 1;
}

.btn--accent:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(232, 137, 58, 0.3);
}

/* Teal button variant for secondary CTAs */
.btn--teal {
  background-color: var(--color-teal);
  color: var(--color-white);
  border: 2px solid var(--color-teal);
}

.btn--teal:hover {
  background-color: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(185, 93, 63, 0.3);
}

/* Compact nav button */
.btn--compact {
  padding: 10px 20px;
  min-height: 38px;
  font-size: 13px;
}

/* Phone button variant */
.btn--phone::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

/* =============================================================================
   6. NAVIGATION
   ============================================================================= */

/* ===== Site Header - Sticky, logo anchored top-left ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  /* Subtle shadow on scroll handled by JS */
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Logo anchored left */
  gap: var(--space-lg);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md); /* 24px padding for breathing room */
}

/* Navigation gets pushed right via flexbox */
.primary-nav {
  margin-left: auto; /* Push nav to the right */
}

/* Header CTA area stays right of nav */
.header-cta {
  flex-shrink: 0;
}

/* Logo - Anchored top-left, proper sizing */
.site-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  /* Ensure logo stays left */
  margin-right: auto;
}

/* WordPress custom logo image styling */
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-logo .custom-logo,
.custom-logo-link img {
  height: 64px; /* Desktop logo height */
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.site-logo__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.site-logo__link:hover {
  text-decoration: none;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.site-logo__sub {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal);
  display: block;
}

/* Primary Nav - positioned right of logo */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  /* margin-left: auto is set in header__inner context */
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav__item {
  position: relative;
}

.primary-nav__link {
  font-family: var(--font-accent);
  font-size: var(--text-nav);
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: block;
  white-space: nowrap;
  transition: color var(--transition-fast),
              background-color var(--transition-fast);
}

.primary-nav__link:hover,
.primary-nav__link:focus {
  color: var(--color-teal);
  background-color: rgba(185, 93, 63, 0.06);
  text-decoration: none;
}

.primary-nav__link.current-menu-item {
  color: var(--color-teal);
}

/* Dropdown */
.primary-nav__item:hover .primary-nav__dropdown,
.primary-nav__item:focus-within .primary-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition-base),
              visibility var(--transition-base),
              transform var(--transition-base);
  z-index: 100;
  list-style: none;
  margin: 0;
}

.primary-nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  text-decoration: none;
  transition: background-color var(--transition-fast),
              color var(--transition-fast);
}

.primary-nav__dropdown li a:hover {
  background-color: var(--color-bg-section);
  color: var(--color-teal);
  text-decoration: none;
}

/* Header CTA area */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.header-phone {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--color-teal);
  text-decoration: none;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition-base),
              opacity var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background-color: var(--color-surface-dark);
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-lg) var(--space-sm);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__link {
  display: block;
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white-warm);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}

.mobile-nav__link:hover {
  color: var(--color-teal);
  text-decoration: none;
}

.mobile-nav__sub-list {
  list-style: none;
  margin: 0;
  padding-left: var(--space-sm);
}

.mobile-nav__sub-link {
  display: block;
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 10px 0;
  text-decoration: none;
}

.mobile-nav__sub-link:hover {
  color: var(--color-teal);
  text-decoration: none;
}

.mobile-nav__phone {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.mobile-nav__phone a {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white-warm);
  text-decoration: none;
}

/* =============================================================================
   7. FOOTER
   ============================================================================= */

/* ===== Footer - 2026 High-Conversion Design ===== */
.site-footer {
  background-color: var(--color-surface-dark);
  border-top: 4px solid var(--color-orange);
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Fleur-de-lis decorative element */
.site-footer__fleur {
  position: absolute;
  top: 40px;
  right: 5%;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.site-footer__main {
  padding: 64px 0 48px;
  position: relative;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand__logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white-warm);
  margin-bottom: 6px;
  display: block;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.footer-brand__logo:hover {
  color: var(--color-white-warm);
  text-decoration: none;
}

.footer-brand__hours {
  font-size: 14px;
  color: rgba(248, 248, 245, 0.8);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.footer-brand__hours strong {
  color: var(--color-white-warm);
}

.footer-brand__tagline {
  font-family: var(--font-accent);
  font-size: 12px;
  color: var(--color-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Fleur-de-lis or local touch */
.footer-brand__tagline::before {
  content: '\269C'; /* Fleur-de-lis unicode */
  font-size: 14px;
  opacity: 0.8;
}

.footer-brand__address {
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-brand__phone {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white-warm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  transition: color var(--transition-fast);
}

.footer-brand__phone::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232A7F7F'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  background-size: contain;
  flex-shrink: 0;
}

.footer-brand__phone:hover {
  color: var(--color-teal);
  text-decoration: none;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.footer-cert-badge__icon {
  color: var(--color-success);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-cert-badge__text {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-light);
}

.footer-col__heading {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(185, 93, 63, 0.2);
}

.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav__item {
  margin-bottom: 8px;
}

.footer-nav__link {
  font-size: 14px;
  color: rgba(184, 196, 207, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer-nav__link:hover {
  color: var(--color-white-warm);
  text-decoration: none;
  padding-left: 4px;
}

/* Active/current page link */
.footer-nav__link--current {
  color: var(--color-teal);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  background-color: rgba(0, 0, 0, 0.15);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: 12px;
  color: rgba(138, 150, 163, 0.7);
  line-height: 1.5;
}

.footer-bottom__links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom__links a {
  font-size: 12px;
  color: rgba(138, 150, 163, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom__links a:hover {
  color: var(--color-white-warm);
  text-decoration: none;
}

/* =============================================================================
   8. HERO SECTIONS
   ============================================================================= */

/* ============================================
   SPLIT HERO - Two column layout (Text | Video)
   ============================================ */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

/* LEFT COLUMN - Transparent background, inherits page bg */
.hero-split__left {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-split__content {
  padding: 80px 60px;
  max-width: 580px;
}

/* Badge */
.hero-split__badge {
  display: inline-block;
  background-color: var(--color-teal);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Eyebrow */
.hero-split__eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
}

/* H1 */
.hero-split__h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.hero-split__h1 strong {
  color: var(--color-teal);
}

/* Sub-headline */
.hero-split__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin-bottom: 24px;
}

/* Checklist */
.hero-split__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.hero-split__checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
}

.hero-split__checklist li svg {
  flex-shrink: 0;
  color: var(--color-teal);
}

/* CTAs */
.hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Outline button for phone */
.btn--outline-dark {
  background: transparent;
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--outline-dark:hover {
  background: var(--color-navy);
  color: #fff;
  text-decoration: none;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* RIGHT COLUMN - Video (no background) */
.hero-split__right {
  position: relative;
  overflow: hidden;
}

.hero-split__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
}

.hero-split__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* TABLET: Adjust proportions */
@media (max-width: 1200px) {
  .hero-split {
    grid-template-columns: 50% 50%;
  }
  .hero-split__content {
    padding: 60px 40px;
  }
  .hero-split__h1 {
    font-size: 44px;
  }
}

/* MOBILE: Stack vertically */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split__left {
    order: 1;
  }
  .hero-split__right {
    order: 2;
    height: 350px;
  }
  .hero-split__content {
    padding: 60px 24px;
  }
  .hero-split__h1 {
    font-size: 36px;
  }
  .hero-split__checklist {
    grid-template-columns: 1fr;
  }
  .hero-split__actions {
    flex-direction: column;
  }
  .hero-split__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* SMALL MOBILE: Hide video */
@media (max-width: 640px) {
  .hero-split__right {
    display: none;
  }
}

/* ============================================
   HERO HOME - Full-Width Video Background
   ============================================ */

.hero-home {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-navy);
}

/* Background Video - Full coverage */
.hero-home__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Static Background Image fallback */
.hero-home__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Charcoal Overlay - 40% opacity to show video better */
.hero-home__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 31, 31, 0.40);
  z-index: 2;
}

/* Content container - legacy class */
.hero-home__content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  margin-left: 0;
  margin-right: auto;
  padding: 120px 0;
  text-align: left;
}

/* NEW Hero Content Container - with gradient overlay */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 60px 40px;
  background: linear-gradient(90deg, rgba(20,20,20,0.55) 0%, rgba(20,20,20,0.25) 70%, transparent 100%);
}

/* FREE ESTIMATE Badge — solid brick-red pill (NOT outline) */
.hero-badge {
  display: inline-block;
  background-color: #C84B31;
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

/* Sub-tagline — warm cream, ALL CAPS */
.hero-eyebrow {
  color: #F5E6D3;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  margin: 0 0 16px;
}

/* Headline — Title Case, white text */
.hero-headline {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* "Restore" word in brick red */
.hero-accent {
  color: #C84B31;
}

/* Sub-headline — warm cream, sentence case */
.hero-subhead {
  color: #F5E6D3;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 32px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* CTA Row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Primary CTA Button — ALL CAPS, brick red */
.hero-cta-primary {
  display: inline-block;
  background-color: #C84B31;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 6px;
  text-transform: uppercase;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta-primary:hover { background-color: #A03A22; }

/* Phone CTA — ONE white icon, outlined button */
.hero-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border: 2px solid #FFFFFF;
  padding: 14px 24px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hero-cta-phone:hover { background-color: rgba(255,255,255,0.1); }
.hero-cta-phone svg { flex-shrink: 0; }

/* Legacy styles (kept for backward compatibility) */
.hero-home__badge {
  display: inline-block;
  background-color: #C84B31;
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.hero-home__eyebrow {
  color: #F5E6D3;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.hero-home__h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white-warm);
  margin-bottom: 24px;
  max-width: 18ch;
}

/* Brick red accent word (for <strong> or <span class="accent">) */
.hero-home__h1 strong,
.hero-home__h1 .accent {
  color: #C84B31;
  font-weight: 700;
}

.hero-home__sub {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.55;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  max-width: 50ch;
}

.hero-home__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Phone CTA in hero — NO ::before icon (removed duplicate) */
.hero-phone {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white-warm);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

/* REMOVED: .hero-phone::before duplicate teal icon - now using inline SVG only */

.hero-phone:hover {
  color: var(--color-teal);
  text-decoration: none;
}

/* Hero Mobile Responsive */
@media (max-width: 768px) {
  .hero-home {
    min-height: 70vh;
  }
  .hero-home__content {
    padding: 80px 0;
  }
  .hero-home__h1 {
    font-size: 40px;
    max-width: none;
  }
  .hero-home__sub {
    font-size: 17px;
  }
  .hero-phone {
    font-size: 24px;
  }
}

/* Urgent badge - optional small tag next to eyebrow */
.hero-home__urgent-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(200, 146, 42, 0.15);
  border: 1px solid var(--color-ochre);
  color: var(--color-ochre);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-left: 12px;
}

/* Service Hero */
.hero-service {
  background-color: var(--color-navy);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-service::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--color-teal);
}

.hero-service__breadcrumb {
  font-family: var(--font-accent);
  font-size: var(--text-body-sm);
  color: var(--color-grey-storm);
  margin-bottom: var(--space-sm);
}

.hero-service__breadcrumb a {
  color: var(--color-grey-storm);
  text-decoration: none;
}

.hero-service__breadcrumb a:hover {
  color: var(--color-teal);
}

.hero-service__breadcrumb span {
  margin: 0 6px;
}

.hero-service__eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-h6);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-xs);
}

.hero-service__h1 {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white-warm);
  margin-bottom: var(--space-sm);
  max-width: 18ch;
}

.hero-service__sub {
  font-size: var(--text-body-lg);
  color: var(--color-text-muted);
  max-width: 58ch;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-service__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-service__phone {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-white-warm);
  text-decoration: none;
}

.hero-service__phone:hover {
  color: var(--color-teal);
  text-decoration: none;
}

/* =============================================================================
   9. CARDS
   ============================================================================= */

/* Service Card - Enhanced hover states */
.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  border-top: 3px solid var(--color-teal);
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 250ms ease;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

/* Subtle accent glow on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(185, 93, 63, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(26, 43, 74, 0.16);
  transform: translateY(-4px);
  border-color: var(--color-teal);
  text-decoration: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
  transition: transform 250ms ease, color 250ms ease;
}

.service-card:hover .service-card__icon {
  transform: scale(1.08);
  color: var(--color-teal-dark);
}

.service-card__heading {
  font-family: var(--font-accent);
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
  transition: color var(--transition-fast);
}

.service-card:hover .service-card__heading {
  color: var(--color-teal-dark);
}

.service-card__body {
  font-size: var(--text-body);
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.service-card__link {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms ease, color var(--transition-fast);
}

.service-card__link::after {
  content: '\2192';
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__link {
  color: var(--color-teal-dark);
  gap: 10px;
}

.service-card:hover .service-card__link::after {
  transform: translateX(4px);
}

/* Service Card WITH IMAGE - Enhanced style */
.service-card--with-image {
  padding: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
}

.service-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1),
              filter 400ms ease;
}

.service-card--with-image:hover .service-card__image {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.service-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-card__content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card--with-image .service-card__heading {
  margin-bottom: 8px;
}

.service-card--with-image .service-card__body {
  flex: 1;
}

.service-card--with-image .service-card__link {
  margin-top: auto;
}

/* Testimonial Card */
.testimonial-card {
  background-color: var(--color-bg-section);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-left: 4px solid var(--color-ochre);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
  color: var(--color-ochre);
}

.testimonial-card__star {
  width: 18px;
  height: 18px;
}

.testimonial-card__quote {
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.testimonial-card__author {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.testimonial-card__meta {
  font-size: var(--text-body-sm);
  color: var(--color-grey-storm);
}

/* ============================================================================
   WHY CHOOSE SECTION - Split Layout with Image
   ============================================================================ */

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.why-choose-content {
  order: 2;
}

@media (min-width: 768px) {
  .why-choose-content {
    order: 1;
  }
}

.why-choose-content .section-label {
  display: block;
  margin-bottom: var(--space-xs);
}

.why-choose-content .section-heading {
  margin-bottom: var(--space-sm);
}

.why-choose-content .section-sub {
  margin-bottom: var(--space-lg);
  max-width: none;
  text-align: left;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-choose-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-body);
  color: var(--color-text-body);
  line-height: 1.5;
}

.why-choose-list li svg {
  flex-shrink: 0;
  color: var(--color-teal);
  margin-top: 2px;
}

.why-choose-list li strong {
  color: var(--color-navy);
  font-weight: 600;
}

/* Dark variant for why-choose on navy background */
.why-choose-content--dark .why-choose-list li {
  color: #E8E4DD !important;
}

.why-choose-content--dark .why-choose-list li strong {
  color: #FFFFFF !important;
}

.why-choose-content--dark .why-choose-list li svg {
  color: #B95D3F !important;
  width: 20px;
  height: 20px;
}

.why-choose-image {
  order: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

@media (min-width: 768px) {
  .why-choose-image {
    order: 2;
  }
}

.why-choose-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* =============================================================================
   WHY CHOOSE EXPANDED - 6 Icon Cards Grid (NOLA Brick & Brass)
   ============================================================================= */

.why-choose-expanded {
  background-color: var(--color-navy);
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Decorative line above heading */
.why-choose-expanded .text-center::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-teal);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.section-label--light {
  color: var(--color-brass);
}

.section-heading--light {
  color: #FFFFFF !important;
}

.section-sub--light {
  color: #E8E4DD !important;
  font-size: 20px;
  margin-bottom: 48px !important;
}

.section-label--light {
  color: #B8945F !important;
}

.why-icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .why-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 992px) {
  .why-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.why-icon-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--color-brass);
  padding: 36px 24px 32px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.why-icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.why-icon-card:hover .why-icon-card__icon {
  background: linear-gradient(135deg, #C96A4A 0%, var(--color-teal) 100%);
}

.why-icon-card__icon {
  width: 84px !important;
  height: 84px !important;
  margin: 0 auto 20px !important;
  background: linear-gradient(135deg, #B95D3F 0%, #9A4D33 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(185, 93, 63, 0.3) !important;
  transition: background var(--transition-base);
}

.why-icon-card__icon svg {
  width: 40px !important;
  height: 40px !important;
  stroke: #F5EFE6 !important;
}

.why-icon-card__heading {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-icon-card__body {
  font-size: 15px;
  color: var(--color-charcoal);
  line-height: 1.65;
  margin: 0;
}

/* Light CTA micro text on dark background */
.section-cta__micro--light {
  color: rgba(245, 239, 230, 0.85);
  font-size: 15px;
}


/* Process Step Card */
.process-step {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.process-step__number-bg {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 700;
  color: rgba(26, 43, 74, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-step__indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.process-step__num {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.process-step__icon {
  color: var(--color-teal);
  width: 28px;
  height: 28px;
  margin-bottom: var(--space-xs);
}

.process-step__heading {
  font-family: var(--font-accent);
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.process-step__body {
  font-size: var(--text-body-sm);
  color: var(--color-text-body);
  line-height: 1.6;
}

/* Process connector line */
.process-steps {
  display: grid;
  gap: var(--space-sm);
  position: relative;
}

/* Knowledge Article Card */
.article-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition-base),
              transform var(--transition-base);
}

.article-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.article-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card__body {
  padding: 20px;
}

.article-card__category {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.article-card__heading {
  font-family: var(--font-accent);
  font-size: var(--text-h5);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-card__excerpt {
  font-size: var(--text-body-sm);
  color: var(--color-text-body);
  line-height: 1.6;
}

/* =============================================================================
   10. CTA BLOCKS
   ============================================================================= */

/* =============================================================================
   STATS COUNTER - Social proof numbers row
   ============================================================================= */

.stats-counter {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1A4A62 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.stats-counter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-counter__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stats-counter__item {
  text-align: center;
  min-width: 140px;
}

.stats-counter__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-counter__number--text {
  font-size: 36px;
  letter-spacing: -0.02em;
}

.stats-counter__label {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats-counter__divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .stats-counter__grid {
    gap: 24px 32px;
  }
  .stats-counter__number {
    font-size: 36px;
  }
  .stats-counter__item {
    min-width: 120px;
  }
  .stats-counter__divider {
    display: none;
  }
}

/* =============================================================================
   SECTION CTA - Conversion points after major sections
   ============================================================================= */

.section-cta {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(135deg, rgba(185, 93, 63, 0.05) 0%, rgba(31, 31, 31, 0.03) 100%);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.section-cta--centered {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta__text {
  font-size: 17px;
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.section-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.section-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-cta__micro {
  font-size: 13px;
  color: var(--color-grey-storm);
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

/* Ghost button on dark backgrounds */
.btn--ghost-dark {
  background: transparent;
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
}

.btn--ghost-dark:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* =============================================================================
   STICKY PHONE CTA - Desktop only, appears on scroll
   ============================================================================= */

.sticky-phone-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.sticky-phone-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-phone-cta__link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232, 137, 58, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-phone-cta__link:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 28px rgba(232, 137, 58, 0.5);
  color: var(--color-white);
  text-decoration: none;
}

.sticky-phone-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.sticky-phone-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-phone-cta__number {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
}

.sticky-phone-cta__micro {
  font-size: 11px;
  opacity: 0.9;
}

/* Hide on mobile - already have mobile CTA bar */
@media (max-width: 768px) {
  .sticky-phone-cta {
    display: none;
  }
}

/* =============================================================================
   3-STEP PROCESS - Simple numbered visual
   ============================================================================= */

.process-3-step {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.process-3-step__item {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-3-step__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.12);
}

.process-3-step__number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(232, 137, 58, 0.3);
}

.process-3-step__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--color-teal);
}

.process-3-step__icon svg {
  width: 100%;
  height: 100%;
}

.process-3-step__heading {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.process-3-step__body {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0;
}

.process-3-step__arrow {
  display: flex;
  align-items: center;
  color: var(--color-teal);
  opacity: 0.5;
  padding-top: 64px;
}

.process-3-step__arrow svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 900px) {
  .process-3-step__arrow {
    display: none;
  }
  .process-3-step {
    gap: 40px;
  }
}

/* =============================================================================
   TRANSPARENCY BLOCK - "What others won't tell you"
   ============================================================================= */

.transparency-block {
  border-top: 3px solid var(--color-purple);
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.transparency-card {
  background: var(--color-white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-purple);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transparency-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(85, 37, 131, 0.1);
}

.transparency-card__icon {
  width: 40px;
  height: 40px;
  color: var(--color-purple);
  margin-bottom: 12px;
}

.transparency-card__icon svg {
  width: 100%;
  height: 100%;
}

.transparency-card__heading {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.transparency-card__body {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .transparency-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   PAIN VALIDATION SECTION - "Sound Familiar?"
   ============================================================================= */

.pain-validation {
  border-top: 4px solid var(--color-orange);
  position: relative;
  overflow: hidden;
  background-color: var(--color-navy);
}

/* Video Background Support for Pain Section */
.pain-validation--video {
  position: relative;
}

.pain-validation__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pain-validation__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.6;
}

.pain-validation__bg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Heavy dark overlay (70-75% opacity) */
.pain-validation__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.92) 0%,
    rgba(31, 31, 31, 0.85) 50%,
    rgba(31, 31, 31, 0.78) 100%
  );
  z-index: 1;
}

/* Mobile: hide video, show poster image */
@media (max-width: 768px) {
  .pain-validation--video .pain-validation__video-wrap {
    display: none;
  }
  .pain-validation--video .pain-validation__bg-mobile {
    display: block;
  }
}

/* Reduced motion: prefer static image */
@media (prefers-reduced-motion: reduce) {
  .pain-validation__video-wrap {
    display: none;
  }
  .pain-validation--video .pain-validation__bg-mobile {
    display: block;
  }
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  background: rgba(248, 248, 245, 0.06);
  border: 1px solid rgba(248, 248, 245, 0.12);
  border-left: 4px solid var(--color-orange);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-3px);
  background: rgba(248, 248, 245, 0.1);
}

.pain-card__icon {
  width: 44px;
  height: 44px;
  color: var(--color-orange);
  margin-bottom: 14px;
}

.pain-card__icon svg {
  width: 100%;
  height: 100%;
}

.pain-card__heading {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white-warm);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pain-card__body {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.65;
  margin: 0;
}

.pain-transition {
  font-style: italic;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   BIG EASY STANDARD - Enhanced 3-Step Process
   ============================================================================= */

.big-easy-standard {
  border-top: 4px solid var(--color-teal);
}

/* =============================================================================
   CASE STUDIES SECTION - Real Outcomes
   ============================================================================= */

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.case-study-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 31, 31, 0.12);
}

.case-study-card__image {
  aspect-ratio: 16/9;
  background: var(--color-bg-section);
  overflow: hidden;
}

.case-study-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-neutral-mid);
}

.case-study-card__placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.case-study-card__placeholder span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-study-card__content {
  padding: 24px;
}

.case-study-card__location {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal);
  background: rgba(185, 93, 63, 0.1);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.case-study-card__heading {
  font-family: var(--font-accent);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.case-study-card__body {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.case-study-card__metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.case-study-card__metric-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
}

.case-study-card__metric-label {
  font-size: 14px;
  color: var(--color-text-body);
  font-weight: 500;
}

@media (max-width: 900px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   PAIN RE-TRIGGER SECTION - Final emotional hook
   ============================================================================= */

.pain-retrigger {
  text-align: center;
  border-top: 4px solid var(--color-orange);
}

.pain-retrigger__content {
  max-width: 680px;
  margin: 0 auto;
}

.pain-retrigger__heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  color: var(--color-white-warm);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.pain-retrigger__sub {
  font-size: var(--text-body-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.pain-retrigger__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.pain-retrigger__micro {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Large accent button variant */
.btn--lg {
  font-size: 17px;
  padding: 18px 44px;
}

/* =============================================================================
   SERVICE HUB PAGE - Unified Template Styles
   ============================================================================= */

/* --- Service Hub Hero --- */
.service-hub-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.service-hub-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.service-hub-hero__content {
  position: relative;
  z-index: 2;
}

.service-hub-hero__eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
  display: block;
}

.service-hub-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--color-white-warm);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.service-hub-hero__tagline {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: var(--space-md);
}

.service-hub-hero__intro {
  font-size: var(--text-body-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.service-hub-hero__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.service-hub-hero__trust-line {
  font-size: 14px;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.service-hub-hero__trust-divider {
  opacity: 0.5;
}

.service-hub-hero__image {
  position: relative;
  z-index: 1;
}

.service-hub-hero__placeholder {
  background: rgba(248, 248, 245, 0.08);
  border: 2px dashed rgba(248, 248, 245, 0.2);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-muted);
}

.service-hub-hero__placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.service-hub-hero__placeholder span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-hub-hero__fleur {
  position: absolute;
  bottom: -60px;
  right: 5%;
  font-size: 280px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 900px) {
  .service-hub-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-hub-hero__content {
    order: 1;
  }

  .service-hub-hero__image {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-hub-hero__cta {
    justify-content: center;
  }

  .service-hub-hero__trust-line {
    justify-content: center;
  }

  .service-hub-hero__intro {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Why Choose Narrative --- */
.why-choose-narrative {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.why-choose-block {
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-teal);
}

.why-choose-block__heading {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.why-choose-block__body {
  font-size: var(--text-body);
  color: var(--color-text-body);
  line-height: 1.7;
  margin: 0;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.1);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--color-teal);
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card__title {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Big Easy Standard Steps (Service Hub) --- */
.standard-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.standard-step {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standard-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.1);
}

.standard-step__number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(232, 137, 58, 0.35);
}

.standard-step__heading {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  margin-top: 8px;
}

.standard-step__body {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1000px) {
  .standard-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .standard-steps {
    grid-template-columns: 1fr;
  }
}

/* --- Sub-Services Grid --- */
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.sub-service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sub-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(31, 31, 31, 0.1);
  border-color: var(--color-teal);
  text-decoration: none;
}

.sub-service-card__title {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.sub-service-card__desc {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}

.sub-service-card__link {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
}

.sub-service-card:hover .sub-service-card__link {
  text-decoration: underline;
}

/* --- Guarantee Section --- */
.guarantee-section {
  text-align: center;
  border-top: 4px solid var(--color-orange);
}

.guarantee-content {
  max-width: 720px;
  margin: 0 auto;
}

.guarantee-label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  display: block;
  margin-bottom: var(--space-sm);
}

.guarantee-heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--color-white-warm);
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

.guarantee-tagline {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-teal);
  margin: 0;
}

/* --- Final CTA Block --- */
.final-cta-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.final-cta-block__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   SERVICE HUB - 15-Section tnstandard Structure
   ============================================================================= */

/* --- Section 1: Service Hero --- */
.service-hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.service-hero__content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.service-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--color-white-warm);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.service-hero__h1 strong {
  color: var(--color-orange);
}

.service-hero__tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: var(--space-lg);
}

.service-hero__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.service-hero__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-hero__stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
}

.service-hero__rating-text {
  font-size: 15px;
  color: var(--color-text-light);
  font-weight: 500;
}

.service-hero__fleur {
  position: absolute;
  bottom: -80px;
  right: 5%;
  font-size: 300px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* --- Section 2: Trust Badges Row (6 badges) --- */
.trust-badges-row {
  background: var(--color-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-badges-row__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.trust-badge-item__icon {
  width: 48px;
  height: 48px;
  color: var(--color-navy);
}

.trust-badge-item__icon svg {
  width: 100%;
  height: 100%;
}

.trust-badge-item__label {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 800px) {
  .trust-badges-row__inner {
    justify-content: center;
  }
  .trust-badge-item {
    flex: 0 0 30%;
  }
}

/* --- Section 3: Problem-Solution Intro --- */
.problem-intro__text {
  font-size: var(--text-body-lg);
  line-height: 1.8;
  color: var(--color-text-body);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.problem-intro__text a {
  color: var(--color-teal);
  font-weight: 600;
}

/* --- Section 4/6/10: Repeating CTA Bars --- */
.repeating-cta {
  padding: 24px 0;
}

.repeating-cta__inner {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* --- Section 5: Big Easy Standard 4-Step --- */
.big-easy-standard-section {
  border-top: 4px solid var(--color-teal);
}

.standard-steps-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.standard-step-4 {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 20px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standard-step-4:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.1);
}

.standard-step-4__number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(232, 137, 58, 0.35);
}

.standard-step-4__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--color-teal);
}

.standard-step-4__icon svg {
  width: 100%;
  height: 100%;
}

.standard-step-4__heading {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.standard-step-4__body {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .standard-steps-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .standard-steps-4 {
    grid-template-columns: 1fr;
  }
}

/* --- Section 7: Why Choose Split Layout --- */
.why-choose-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.why-choose-split__placeholder {
  background: var(--color-bg-section);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-neutral-mid);
}

.why-choose-split__placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

.why-choose-split__placeholder span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-choose-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-choose-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 17px;
  color: var(--color-navy);
  font-weight: 500;
}

.why-choose-bullet:last-child {
  border-bottom: none;
}

.why-choose-bullet__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-teal);
}

@media (max-width: 800px) {
  .why-choose-split {
    grid-template-columns: 1fr;
  }
  .why-choose-split__image {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- Section 8: Guarantee Cards --- */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guarantee-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.1);
}

.guarantee-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--color-orange);
}

.guarantee-card__icon svg {
  width: 100%;
  height: 100%;
}

.guarantee-card__heading {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.guarantee-card__body {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 800px) {
  .guarantees-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- Section 9: Warning Signs Grid --- */
.warning-signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.warning-sign {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-orange);
  transition: transform 0.2s ease;
}

.warning-sign:hover {
  transform: translateX(4px);
}

.warning-sign__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--color-orange);
}

.warning-sign__icon svg {
  width: 100%;
  height: 100%;
}

.warning-sign__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.35;
}

/* --- Section 11: Services Link Grid --- */
.services-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-link-card {
  display: block;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(31, 31, 31, 0.1);
  border-color: var(--color-teal);
  text-decoration: none;
}

.service-link-card__title {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.service-link-card__desc {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.5;
  margin: 0;
}

.service-link-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 20px;
  color: var(--color-teal);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-link-card:hover .service-link-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Section 12: Benefits List --- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-item {
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-teal);
}

.benefit-item__title {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.benefit-item__body {
  font-size: var(--text-body);
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0;
}

/* --- Section 15: Final CTA Layout --- */
.final-cta-section {
  border-top: 4px solid var(--color-orange);
}

.final-cta-layout {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-layout__label {
  display: block;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
}

.final-cta-layout__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-white-warm);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.final-cta-layout__sub {
  font-size: var(--text-body-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.service-area-tags--dark {
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.neighborhood-tag--dark {
  background: rgba(248, 248, 245, 0.1);
  color: var(--color-text-light);
  border-color: rgba(248, 248, 245, 0.2);
}

.final-cta-layout__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Light CTA Banner */
.cta-banner {
  background-color: var(--color-bg-section);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cta-banner__content {
  flex: 1 1 400px;
}

.cta-banner__eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-h6);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-xs);
}

.cta-banner__heading {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
  line-height: 1.15;
}

.cta-banner__sub {
  font-size: var(--text-body-lg);
  color: var(--color-text-body);
  max-width: 50ch;
}

.cta-banner__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cta-phone-large {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.cta-phone-large:hover {
  color: var(--color-teal);
  text-decoration: none;
}

/* Dark CTA Banner */
.cta-banner--dark {
  background-color: var(--color-navy);
  border-color: transparent;
}

.cta-banner--dark .cta-banner__heading {
  color: var(--color-white-warm);
}

.cta-banner--dark .cta-banner__sub {
  color: var(--color-text-muted);
}

.cta-banner--dark .cta-phone-large {
  color: var(--color-white-warm);
}

.cta-banner--dark .cta-phone-large:hover {
  color: var(--color-teal);
}

/* =============================================================================
   11. TRUST SIGNALS
   ============================================================================= */

/* ===== Trust Badges Row (IICRC, BBB, etc.) - directly below hero ===== */
.hero-trust-row {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.hero-trust-row__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hero-trust-badge__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--transition-fast);
}

.hero-trust-badge:hover .hero-trust-badge__logo {
  filter: grayscale(0%);
}

.hero-trust-badge__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust-badge__label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

.hero-trust-badge__sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-grey-storm);
  line-height: 1.3;
}

/* Placeholder badge (SVG-based) */
.hero-trust-badge--placeholder .hero-trust-badge__logo {
  background-color: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

/* Divider between badges */
.hero-trust-row__divider {
  width: 1px;
  height: 36px;
  background-color: var(--color-border);
}

/* Google reviews badge styling */
.hero-trust-badge--reviews .hero-trust-badge__stars {
  display: flex;
  gap: 2px;
  color: var(--color-ochre);
}

.hero-trust-badge--reviews .hero-trust-badge__stars svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .hero-trust-row__inner {
    gap: 20px;
    justify-content: space-around;
  }

  .hero-trust-row__divider {
    display: none;
  }

  .hero-trust-badge__text {
    display: none; /* Just show logos on mobile */
  }

  .hero-trust-badge__logo {
    width: 40px;
    height: 40px;
  }
}

/* Trust Bar (below hero on homepage) */
.trust-bar {
  background-color: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.trust-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-bar__check {
  color: var(--color-success);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.trust-bar__text {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Certification badges row */
.cert-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100px;
}

.cert-badge__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-badge__circle img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}

.cert-badge__label {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-grey-storm);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* Reviews block */
.reviews-block {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.reviews-block__score {
  font-family: var(--font-accent);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}

.reviews-block__detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-block__stars {
  display: flex;
  gap: 3px;
  color: var(--color-ochre);
}

.reviews-block__star {
  width: 20px;
  height: 20px;
}

.reviews-block__count {
  font-size: var(--text-body-sm);
  color: var(--color-grey-storm);
}

.reviews-block__source {
  font-size: var(--text-caption);
  color: var(--color-grey-storm);
}

/* License / Insurance strip */
.license-strip {
  background-color: var(--color-bg-section);
  padding: 12px 0;
}

.license-strip__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.license-strip__item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 20px;
  border-right: 1px solid var(--color-border);
}

.license-strip__item:last-child {
  border-right: none;
}

.license-strip__check {
  color: var(--color-success);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.license-strip__text {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
}

/* Warranty block */
.warranty-block {
  background-color: var(--color-white);
  border: 2px solid var(--color-teal);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.warranty-block__icon {
  color: var(--color-teal);
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.warranty-block__heading {
  font-family: var(--font-accent);
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.warranty-block__body {
  font-size: var(--text-body);
  color: var(--color-text-body);
  max-width: none;
}

/* =============================================================================
   12. FAQ ACCORDION
   ============================================================================= */

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  background-color: var(--color-white);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-accent);
  font-size: var(--text-h5);
  font-weight: 600;
  color: var(--color-navy);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: background-color var(--transition-fast);
}

.faq-item__question:hover {
  background-color: var(--color-bg-section);
}

.faq-item__icon {
  color: var(--color-teal);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: var(--text-body);
  color: var(--color-text-body);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

/* =============================================================================
   13. FORMS
   ============================================================================= */

.form-container {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  max-width: var(--container-form);
}

.form-container__heading {
  font-family: var(--font-accent);
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.form-field {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.form-label--required::after {
  content: ' *';
  color: var(--color-error);
}

.form-input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-body);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-neutral-mid);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border: 2px solid var(--color-teal);
  box-shadow: 0 0 0 3px rgba(185, 93, 63, 0.15);
}

.form-input--error,
.form-textarea--error {
  border-color: var(--color-error);
  background-color: #FEF5F5;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7B8D' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-error-msg {
  font-size: var(--text-body-sm);
  color: var(--color-error);
  margin-top: 4px;
}

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.form-check__input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid var(--color-input-border);
  border-radius: 3px;
  background-color: var(--color-white);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast);
}

.form-check__input:checked {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

.form-check__input:focus {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

.form-check__label {
  font-size: var(--text-body);
  color: var(--color-text-body);
  cursor: pointer;
}

/* =============================================================================
   14. CALLOUT BOXES
   ============================================================================= */

.callout-info {
  background-color: #EBF3FB;
  border-left: 4px solid var(--color-info);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: var(--space-md) 0;
}

.callout-info p {
  font-size: var(--text-body);
  color: var(--color-text-body);
  margin-bottom: 0;
  max-width: none;
}

.callout-warning {
  background-color: #FEF3E2;
  border-left: 4px solid var(--color-alert);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: var(--space-md) 0;
}

.callout-warning p {
  font-size: var(--text-body);
  color: var(--color-text-body);
  margin-bottom: 0;
  max-width: none;
}

.callout-cta {
  background-color: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.callout-cta__text {
  font-family: var(--font-accent);
  font-size: var(--text-h5);
  font-weight: 600;
  color: var(--color-navy);
  max-width: 50ch;
}

/* =============================================================================
   15. BEFORE / AFTER IMAGE COMPONENT
   ============================================================================= */

.before-after {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  cursor: ew-resize;
}

.before-after__before,
.before-after__after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.before-after__after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s;
}

.before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--color-white);
  transform: translateX(-50%);
  z-index: 2;
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.before-after__label-before,
.before-after__label-after {
  position: absolute;
  bottom: 12px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: rgba(18, 34, 58, 0.75);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 2px;
}

.before-after__label-before { left: 12px; }
.before-after__label-after  { right: 12px; }

/* =============================================================================
   16. CONTENT BODY (Blog / Knowledge / Answer pages)
   ============================================================================= */

.entry-content {
  max-width: var(--container-narrow);
}

.entry-content--full-width {
  max-width: none;
  width: 100%;
}

.entry-content--full-width .ber-page {
  max-width: none;
  width: 100%;
}

/* Homepage wider container - between 1200px and full width */
.home .container,
.home .container--narrow {
  max-width: 1500px;
}

.entry-content h2:first-child,
.entry-content h3:first-child {
  margin-top: 0;
}

.entry-content ul,
.entry-content ol {
  list-style: revert;
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

.entry-content li {
  margin-bottom: 0.4em;
}

.entry-content a {
  color: var(--color-teal);
  text-decoration: underline;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-md);
  font-size: var(--text-body-sm);
}

.entry-content th {
  background-color: var(--color-navy);
  color: var(--color-white-warm);
  padding: 10px 16px;
  text-align: left;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
}

.entry-content td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-body);
}

.entry-content tr:nth-child(even) td {
  background-color: var(--color-bg-section);
}

/* =============================================================================
   17. STICKY MOBILE CTA BAR
   ============================================================================= */

/* Mobile Sticky CTA - More prominent, emergency-feel */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--color-surface-dark);
  height: 72px; /* Taller for more presence */
  padding: 0 12px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  border-top: 2px solid var(--color-teal);
}

.mobile-cta-bar__btn {
  flex: 1;
  max-width: none; /* Full width */
  height: 52px; /* Larger touch target */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

/* Call button - Primary action, bold teal */
.mobile-cta-bar__btn--call {
  background-color: var(--color-teal);
  color: var(--color-white);
  border: none;
  flex: 1.4; /* Wider - primary action */
  box-shadow: 0 2px 8px rgba(185, 93, 63, 0.3);
}

.mobile-cta-bar__btn--call::before {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  background-size: contain;
  flex-shrink: 0;
}

.mobile-cta-bar__btn--call:hover,
.mobile-cta-bar__btn--call:active {
  background-color: var(--color-teal-dark);
  text-decoration: none;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(185, 93, 63, 0.4);
}

/* Assessment button - Secondary */
.mobile-cta-bar__btn--assess {
  background-color: transparent;
  color: var(--color-white-warm);
  border: 2px solid rgba(248, 247, 244, 0.4);
  flex: 1;
}

.mobile-cta-bar__btn--assess:hover,
.mobile-cta-bar__btn--assess:active {
  background-color: rgba(248, 247, 244, 0.1);
  border-color: var(--color-white-warm);
  text-decoration: none;
  color: var(--color-white-warm);
}

/* =============================================================================
   18. BREADCRUMBS
   ============================================================================= */

.breadcrumbs {
  font-family: var(--font-accent);
  font-size: var(--text-body-sm);
  color: var(--color-grey-storm);
  padding: 12px 0;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs a {
  color: var(--color-grey-storm);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--color-teal);
}

.breadcrumbs li::after {
  content: '/';
  margin-left: 4px;
  color: var(--color-border);
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs li:last-child span {
  color: var(--color-navy);
  font-weight: 600;
}

/* =============================================================================
   19. SERVICE AREA MAP CALLOUT
   ============================================================================= */

.service-area-callout {
  background-color: var(--color-navy);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.service-area-callout__heading {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-white-warm);
  margin-bottom: var(--space-sm);
}

.service-area-callout__neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-sm);
}

.neighborhood-tag {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 4px 10px;
}

/* =============================================================================
   20. UTILITY CLASSES
   ============================================================================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-teal  { color: var(--color-teal); }
.text-navy  { color: var(--color-navy); }
.text-ochre { color: var(--color-ochre); }
.text-muted { color: var(--color-grey-storm); }

.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.section-label {
  font-family: var(--font-accent);
  font-size: var(--text-h6);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  display: block;
  margin-bottom: var(--space-xs);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: var(--text-body-lg);
  color: var(--color-text-body);
  max-width: 60ch;
  margin-bottom: var(--space-lg);
}

/* =============================================================================
   21. RESPONSIVE - TABLET (max 1024px)
   ============================================================================= */

@media (max-width: 1024px) {
  :root {
    --text-h1: 44px;
    --text-h2: 34px;
    --text-h3: 26px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  .service-area-callout {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   22. RESPONSIVE - MOBILE (max 768px)
   ============================================================================= */

@media (max-width: 768px) {
  :root {
    --text-h1: 36px;
    --text-h2: 28px;
    --text-h3: 22px;
    --text-h4: 19px;
    --text-h5: 17px;
    --space-2xl: 48px;
    --space-3xl: 64px;
  }

  /* Mobile logo sizing */
  .site-logo .custom-logo,
  .custom-logo-link img {
    height: 48px; /* Smaller on mobile */
    max-width: 140px;
  }

  .site-header__inner {
    padding: 0 16px; /* Tighter padding on mobile */
    gap: var(--space-sm);
  }

  /* Show mobile nav toggle, hide desktop nav */
  .primary-nav__list {
    display: none;
  }

  .primary-nav {
    display: none; /* Hide entire nav on mobile */
  }

  .nav-toggle {
    display: flex;
    margin-left: auto; /* Push hamburger to the right */
  }

  .header-phone {
    display: none;
  }

  .header-cta {
    display: none; /* Hide on mobile - use sticky bar instead */
  }

  /* Show mobile sticky bar */
  .mobile-cta-bar {
    display: flex;
  }

  /* Add padding to body for mobile CTA bar (72px + 8px buffer) */
  body {
    padding-bottom: 80px;
  }

  /* Hero adjustments for mobile */
  .hero-home__h1 {
    font-size: 38px;
  }

  .hero-home__sub {
    font-size: 17px;
  }

  .hero-phone {
    font-size: 26px;
  }

  .hero-phone::before {
    width: 20px;
    height: 20px;
  }

  /* Tighter section spacing on mobile */
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section + .section {
    padding-top: 40px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-home__content {
    padding: var(--space-2xl) 0;
  }

  .hero-home__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-phone {
    font-size: var(--text-h3);
  }

  .trust-bar__list {
    gap: var(--space-sm);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner__action {
    width: 100%;
  }

  .form-container {
    padding: var(--space-md) var(--space-sm);
  }

  .license-strip__item {
    padding: 4px 12px;
  }

  .hero-service__h1 {
    max-width: none;
  }

  .section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .cert-badges {
    gap: var(--space-sm);
  }

  .reviews-block {
    flex-wrap: wrap;
  }

  .process-steps.grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --text-h1: 32px;
    --text-h2: 26px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .hero-home__actions .btn {
    width: auto;
  }
}

/* =============================================================================
   23. GOHIGHLEVEL FORM EMBED
   ============================================================================= */

.ghl-form-container {
  width: 100%;
  min-height: 1650px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.ghl-form-container iframe {
  width: 100%;
  height: 100%;
  min-height: 1607px;
  border: none;
  border-radius: 3px;
}

/* Contact page: constrain max-width for readability */
.section .ghl-form-container {
  max-width: 700px;
}

/* Sidebar: full width within sidebar container */
.form-container .ghl-form-container {
  max-width: 100%;
}

@media (max-width: 768px) {
  .ghl-form-container {
    min-height: 1700px; /* Extra space for mobile form layout */
  }
}

/* =============================================================================
   24. PRINT
   ============================================================================= */

@media print {
  .site-header,
  .site-footer,
  .mobile-cta-bar,
  .cta-banner,
  .cta-banner--dark {
    display: none;
  }

  body {
    padding-bottom: 0;
    font-size: 12pt;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* =============================================================================
   25. PREMIUM SERVICE HUB - Restoration Brand Identity
   ============================================================================= */

/* --- Premium Color Extensions --- */
:root {
  --color-purple-mardi: #552583;
  --color-navy-deep: #0f2233;
  --color-warm-bg: #FAFAF8;
}

/* --- Warm Background Utility --- */
.bg-warm {
  background: var(--color-warm-bg);
}

.bg-navy-subtle {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
}

/* --- Premium Service Hub Container --- */
.service-hub-premium {
  overflow: hidden;
}

/* =============================================================================
   HERO PREMIUM - Editorial approach with texture
   ============================================================================= */

.hero-premium {
  position: relative;
  background: linear-gradient(165deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-premium__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-premium__texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-premium__fleur {
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.015' d='M50 5c-3 15-15 25-15 35 0 5 3 10 8 12v8c-8 2-18 8-18 20h50c0-12-10-18-18-20v-8c5-2 8-7 8-12 0-10-12-20-15-35z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Hero with featured image */
.hero-premium__image {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-premium.has-hero-image .hero-premium__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(26, 32, 44, 0.85) 0%, rgba(17, 24, 39, 0.92) 100%);
}

.hero-premium.has-hero-image .hero-premium__texture {
  z-index: 1;
}

.hero-premium.has-hero-image .hero-premium__fleur {
  z-index: 1;
}

.hero-premium__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-premium__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.hero-premium__trust span {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-premium__trust-sep {
  width: 4px;
  height: 4px;
  background: var(--color-orange);
  border-radius: 50%;
  opacity: 0.6;
}

.hero-premium__h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--color-white-warm);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero-premium__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

.hero-premium__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.hero-premium__stars {
  display: flex;
  gap: 2px;
}

.hero-premium__stars svg {
  color: #D4A853;
}

.hero-premium__rating > span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-premium__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* --- Refined Button Variants --- */
.btn--accent-refined {
  background: var(--color-orange);
  color: var(--color-white);
  border: 2px solid var(--color-orange);
  padding: 14px 28px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(232, 137, 58, 0.25);
}

.btn--accent-refined:hover {
  background: #d47a2d;
  border-color: #d47a2d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 137, 58, 0.35);
  color: var(--color-white);
  text-decoration: none;
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 14px 24px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
  text-decoration: none;
}

.btn--outline-light .ber-icon {
  width: 16px;
  height: 16px;
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-border);
  padding: 14px 24px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn--outline-dark:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
  text-decoration: none;
}

/* =============================================================================
   CREDENTIALS BAR - Clean horizontal strip
   ============================================================================= */

.credentials-bar {
  background: var(--color-white);
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.credentials-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.credentials-bar__item {
  position: relative;
}

.credentials-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--color-border);
  border-radius: 50%;
}

.credentials-bar__label {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 700px) {
  .credentials-bar__inner {
    gap: 16px 24px;
  }
  .credentials-bar__item::after {
    display: none;
  }
}

/* =============================================================================
   EDITORIAL INTRO - Elegant typography
   ============================================================================= */

.editorial-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.editorial-intro__text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text-body);
}

/* =============================================================================
   SECTION HEADER - Refined with eyebrow
   ============================================================================= */

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header--centered {
  text-align: center;
}

.section-header__eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.section-header__eyebrow--light {
  color: rgba(255, 255, 255, 0.6);
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-header__sub {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================================================
   PROCESS REFINED - Minimal numbered steps with connectors
   ============================================================================= */

.process-refined {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.process-refined__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  padding: 0 16px;
}

.process-refined__number {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.process-refined__content {
  padding-top: 8px;
}

.process-refined__title {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.process-refined__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.process-refined__connector {
  width: 60px;
  height: 2px;
  background: var(--color-border);
  margin-top: 24px;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .process-refined {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .process-refined__connector {
    width: 2px;
    height: 24px;
    margin-top: 0;
  }
  .process-refined__step {
    max-width: 280px;
  }
}

/* =============================================================================
   SPLIT EDITORIAL - Text + Image layout
   ============================================================================= */

.split-editorial {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.split-editorial--reverse {
  grid-template-columns: 1fr 1.1fr;
}

.split-editorial__content {
  padding-right: var(--space-lg);
}

.split-editorial--reverse .split-editorial__content {
  padding-right: 0;
  padding-left: var(--space-lg);
}

.split-editorial__content--light {
  color: var(--color-white);
}

.split-editorial__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

.split-editorial__title--light {
  color: var(--color-white-warm);
}

.split-editorial__content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
}

.split-editorial__content--light p {
  color: rgba(255, 255, 255, 0.85);
}

.split-editorial__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

/* --- Link Arrow --- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
  transition: gap 0.25s ease;
}

.link-arrow:hover {
  gap: 12px;
  color: var(--color-navy);
  text-decoration: none;
}

.link-arrow .ber-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.link-arrow:hover .ber-icon {
  transform: translateX(2px);
}

/* --- Image Placeholder --- */
.image-placeholder {
  background: linear-gradient(135deg, var(--color-bg) 0%, #e8e8e5 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-border);
  min-height: 300px;
}

.image-placeholder--portrait {
  aspect-ratio: 4/5;
}

.image-placeholder--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.image-placeholder span {
  font-size: 13px;
  color: var(--color-grey-storm);
  font-weight: 500;
}

.image-placeholder--dark span {
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
  .split-editorial,
  .split-editorial--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .split-editorial__content,
  .split-editorial--reverse .split-editorial__content {
    padding: 0;
    order: 2;
  }
  .split-editorial__image {
    order: 1;
  }
}

/* =============================================================================
   CHECKLIST EDITORIAL - Clean two-column warning signs
   ============================================================================= */

.checklist-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.checklist-editorial__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.checklist-editorial__item .ber-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  margin-top: 2px;
}

.checklist-editorial__item span {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .checklist-editorial {
    grid-template-columns: 1fr;
  }
}

/* --- Section CTA Minimal --- */
.section-cta--minimal {
  text-align: center;
  padding-top: var(--space-md);
}

.section-cta--minimal p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

/* =============================================================================
   SERVICES GRID CLEAN - Subtle bordered cards
   ============================================================================= */

.services-grid-clean {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.service-card-clean {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s ease;
}

.service-card-clean:hover {
  border-color: var(--color-teal);
  box-shadow: 0 4px 16px rgba(31, 31, 31, 0.08);
  text-decoration: none;
}

.service-card-clean__name {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
}

.service-card-clean .ber-icon {
  width: 18px;
  height: 18px;
  color: var(--color-teal);
  transition: transform 0.25s ease;
}

.service-card-clean:hover .ber-icon {
  transform: translateX(4px);
}

/* =============================================================================
   LIST REFINED - Bullet list for Why Choose
   ============================================================================= */

.list-refined {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
}

.list-refined li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}

.list-refined li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
}

.list-refined--light li {
  color: rgba(255, 255, 255, 0.9);
}

/* =============================================================================
   GUARANTEES ELEGANT - Cards with dividers
   ============================================================================= */

.guarantees-elegant {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.guarantee-elegant {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  padding: 32px 28px;
  text-align: center;
}

.guarantee-elegant .ber-icon {
  width: 36px;
  height: 36px;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.guarantee-elegant__title {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.guarantee-elegant__body {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0;
}

.guarantee-elegant__divider {
  width: 1px;
  background: var(--color-border);
  margin: 16px 0;
}

@media (max-width: 800px) {
  .guarantees-elegant {
    flex-direction: column;
    align-items: center;
  }
  .guarantee-elegant__divider {
    width: 60px;
    height: 1px;
  }
  .guarantee-elegant {
    max-width: 400px;
  }
}

/* =============================================================================
   TESTIMONIAL EDITORIAL - Pull quote style
   ============================================================================= */

.testimonial-editorial {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
}

.testimonial-editorial__quote-mark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-editorial__quote-mark .ber-icon {
  width: 80px;
  height: 80px;
}

.testimonial-editorial__quote {
  margin: 0 0 24px 0;
  padding: 0;
}

.testimonial-editorial__quote p {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 500;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.5;
  margin: 0;
}

.testimonial-editorial__cite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-style: normal;
  margin-bottom: 12px;
}

.testimonial-editorial__author {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
}

.testimonial-editorial__location {
  font-size: 13px;
  color: var(--color-text-muted);
}

.testimonial-editorial__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonial-editorial__stars svg {
  color: #D4A853;
}

/* =============================================================================
   DIFFERENTIATORS LIST - Orange accent cards
   ============================================================================= */

.differentiators-list {
  display: grid;
  gap: 20px;
}

.differentiator-item {
  padding: 24px 28px;
  background: var(--color-warm-bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-orange);
}

.differentiator-item__title {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.differentiator-item__body {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin: 0;
}

/* =============================================================================
   CTA BANNER SUBTLE - Restrained conversion banner
   ============================================================================= */

.cta-banner-subtle {
  background: var(--color-warm-bg);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-banner-subtle__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-banner-subtle__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.cta-banner-subtle__sub {
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0;
}

.cta-banner-subtle__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-banner-subtle__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-subtle__actions {
    justify-content: center;
  }
}

/* =============================================================================
   FAQ ELEGANT - Thin lines, refined typography
   ============================================================================= */

.faq-elegant {
  max-width: 760px;
  margin: 0 auto var(--space-lg);
}

.faq-elegant__item {
  border-bottom: 1px solid var(--color-border);
}

.faq-elegant__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-elegant__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

.faq-elegant__question::-webkit-details-marker {
  display: none;
}

.faq-elegant__question span:first-child {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.4;
  padding-right: 20px;
}

.faq-elegant__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-elegant__icon::before,
.faq-elegant__icon::after {
  content: "";
  position: absolute;
  background: var(--color-orange);
  transition: transform 0.25s ease;
}

.faq-elegant__icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-elegant__icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-elegant__item[open] .faq-elegant__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-elegant__answer {
  padding: 0 0 20px 0;
}

.faq-elegant__answer p {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.75;
  margin: 0;
}

/* =============================================================================
   SERVICE AREAS CLEAN - Tag cloud
   ============================================================================= */

.service-areas-clean {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-xl);
}

.service-area-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 14px;
  color: var(--color-navy);
  font-weight: 500;
}

/* =============================================================================
   FINAL CTA - Clean centered conversion
   ============================================================================= */

.final-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.final-cta__or {
  font-size: 14px;
  color: var(--color-text-muted);
}

.final-cta__phone {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.25s ease;
}

.final-cta__phone:hover {
  color: var(--color-teal);
  text-decoration: none;
}

/* =============================================================================
   BER ICON - Line-art icon base styles
   ============================================================================= */

.ber-icon {
  display: inline-block;
  vertical-align: middle;
}

/* =============================================================================
   RESPONSIVE REFINEMENTS
   ============================================================================= */

@media (max-width: 768px) {
  .hero-premium {
    padding: 60px 0 80px;
  }

  .hero-premium__h1 {
    font-size: 28px;
  }

  .hero-premium__ctas {
    flex-direction: column;
  }

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

/* =============================================================================
   TRUST BADGE STRIP - 7 real PNG logos from bigeasyremediation.com
   ============================================================================= */

/* =============================================================================
   BADGE MARQUEE - Continuous scrolling trust badges
   ============================================================================= */

.badge-marquee {
  background: #F5E6D3;
  border-top: 1px solid #E5DCC8;
  border-bottom: 1px solid #E5DCC8;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.badge-marquee__track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: badgeScroll 25s linear infinite;
}

.badge-marquee__track:hover {
  animation-play-state: paused;
}

.badge-marquee__track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes badgeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .badge-marquee__track {
    gap: 40px;
    animation-duration: 20s;
  }
  .badge-marquee__track img {
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 30px;
  }
  .badge-marquee__track img[aria-hidden="true"] {
    display: none;
  }
}

/* =============================================================================
   SERVICE AREA MAP - Custom Southeast Louisiana map
   ============================================================================= */

.service-area-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1F1F1F;
}

.service-area-map img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .service-area-map { min-height: 280px; }
}

/* =============================================================================
   REVIEWS GRID - 7 real customer reviews with avatars
   ============================================================================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #F5E6D3;
  border-top: 4px solid #C84B31;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #C84B31;
  margin: 0 auto 16px;
  display: block;
}

.review-stars {
  color: #F5B400;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-quote {
  font-style: italic;
  color: #1F2937;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 15px;
}

.review-name {
  font-weight: 700;
  color: #C84B31;
  margin-bottom: 4px;
  font-size: 16px;
}

.review-tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6B7280;
  margin: 0;
}

/* Center the last review when it's alone in its row */
.reviews-grid > .review-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid > .review-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }
  .reviews-grid > .review-card:last-child:nth-child(2n + 1) {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid > .review-card:last-child:nth-child(2n + 1) {
    grid-column: auto;
    max-width: 100%;
  }
}
