@charset "UTF-8";
/* =============================================================================
   PRIME OUTDOOR EXPERTS — Design System
   Clean. Black + white + chartreuse.
   ============================================================================= */

/* Skip to content — accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 200ms ease;
}
.skip-link:focus {
  top: 0;
}

/* -----------------------------------------------------------------------------
   CUSTOM PROPERTIES
----------------------------------------------------------------------------- */
:root {
  /* Dark */
  --ink:            #0a0a0a;
  --ink-elevated:   #141414;
  --ink-card:       #1a1a1a;
  --ink-border:     #2d2d2d;
  --ink-muted:      #111111;
  --ink-glass:      rgba(22, 22, 22, 0.72);
  --ink-border-subtle: rgba(255,255,255,0.06);

  /* Grain texture — SVG fractal noise data URI */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");


  /* Accent — softer lime (reads "natural", not neon) */
  --accent:         #b5e853;
  --accent-hover:   #9fd63e;
  --accent-bright:  #c8f000;   /* reserved for hero CTA button only */
  --accent-glow:    rgba(181, 232, 83, 0.20);
  --accent-muted:   rgba(181, 232, 83, 0.12);
  --accent-tint:    #f0fad4;

  /* CTA = accent */
  --cta:            var(--accent);
  --cta-hover:      var(--accent-hover);

  /* Text on dark */
  --text-on-dark:       #ffffff;
  --text-on-dark-muted: #a3a3a3;
  --text-on-dark-faint: #737373;

  /* Light */
  --surface:        #fafafa;
  --surface-alt:    #f0f0f0;
  --text-on-light:  #171717;
  --text-on-light-muted: #525252;

  /* Legacy */
  --black:          var(--ink);
  --black-soft:     var(--ink-elevated);
  --black-warm:     var(--ink-muted);
  --black-card:     var(--ink-card);
  --black-border:   var(--ink-border);
  --chartreuse:     var(--accent);
  --chartreuse-dark: var(--accent-hover);
  --chartreuse-tint: var(--accent-tint);
  --white:          #ffffff;
  --cream:          var(--surface);
  --cream-dark:     var(--surface-alt);
  --grey-50:        #fafafa;
  --grey-100:       var(--surface);
  --grey-200:       #e5e5e5;
  --grey-300:       #d4d4d4;
  --grey-400:       var(--text-on-light-muted);
  --grey-600:       var(--text-on-light-muted);
  --grey-800:       var(--ink-border);
  --green-organic:  #22c55e;
  --green-soft:     #4ade80;

  /* Typography */
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* Layout */
  --max-width:     1200px;
  --content-width: 800px;
  --gutter:        32px;
  --radius:        8px;
  --radius-sm:     4px;
  --radius-lg:     16px;

  /* Animation — Webflow-inspired motion */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration:   200ms;
  --duration-lg: 350ms;
  --duration-xl: 600ms;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.20);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.25);

  /* Header */
  --topbar-height: 40px;
  --nav-height:    72px;
  --header-height: calc(var(--topbar-height) + var(--nav-height));
}

/* -----------------------------------------------------------------------------
   RESET & BASE
----------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--text-on-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Scroll margin for sticky header */
[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

/* -----------------------------------------------------------------------------
   SVG ICONS
----------------------------------------------------------------------------- */
/* Grain noise overlay — add to any section for depth */
.grain-overlay { position: relative; }
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 300px 300px;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: overlay;
  z-index: 1;
}

.icon-svg {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.25em;
  fill: none;
  stroke: currentColor;
}

.icon-svg.icon-fill { fill: currentColor; stroke: none; }

.property-card .icon-svg,
.card-icon .icon-svg,
.diff-icon .icon-svg { width: 1.5em; height: 1.5em; }

/* -----------------------------------------------------------------------------
   TYPOGRAPHY SCALE
----------------------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h3, .h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.3;
}

h4, .h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

h5, .h5 {
  font-size: 16px;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-600);
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-600);
}

.small {
  font-size: 13px;
  line-height: 1.5;
}

.label-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* -----------------------------------------------------------------------------
   LAYOUT UTILITIES
----------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--space-10);
  position: relative;
}

.section-sm {
  padding-block: var(--space-7);
}

.section-dark {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-elevated) 50%, var(--ink-muted) 100%);
  color: var(--text-on-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.section-dark p {
  color: var(--text-on-dark-muted);
}

.section-dark h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section-grey {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
  position: relative;
}

.section-grey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
  pointer-events: none;
}

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

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

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

.flex {
  display: flex;
}

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

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

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-chartreuse { color: var(--chartreuse); }
.text-grey { color: var(--grey-400); }

.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }

/* -----------------------------------------------------------------------------
   SECTION HEADER (eyebrow + headline pattern)
----------------------------------------------------------------------------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: var(--space-4);
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-dark .section-eyebrow {
  color: var(--accent);
}

.section-intro {
  max-width: 640px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

/* -----------------------------------------------------------------------------
   BUTTONS
----------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--duration-lg) var(--ease-smooth);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--cta);
  color: var(--ink);
  border-color: var(--cta);
}

.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 240, 0, 0.4);
  transition: all var(--duration) var(--ease-spring);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(230, 228, 222, 0.5);
}

.btn-outline-white:hover {
  border-color: var(--text-on-dark);
  background: rgba(255,255,255,0.06);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* Arrow icon in buttons */
.btn-arrow::after {
  content: '\2192  ';
  font-size: 16px;
  transition: transform var(--duration) var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* -----------------------------------------------------------------------------
   TOP BAR
----------------------------------------------------------------------------- */
.topbar {
  height: var(--topbar-height);
  background: var(--ink);
  border-bottom: 1px solid var(--ink-border);
  display: flex;
  align-items: center;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color var(--duration);
  letter-spacing: 0.02em;
}

.topbar-phone:hover { color: var(--cta); }

.topbar-rating {
  font-size: 12px;
  color: var(--text-on-dark-muted);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.topbar-rating .stars {
  color: var(--cta);
  font-size: 12px;
  letter-spacing: 2px;
}

.topbar-area {
  font-size: 11px;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* -----------------------------------------------------------------------------
   NAVIGATION
----------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-border);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-mark {
  width: 280px;
  height: 60px;
  background: url('../assets/prime_trans_white.png') left center / contain no-repeat;
  border-radius: 0;
  flex-shrink: 0;
  font-size: 0;
  color: transparent;
  overflow: hidden;
}

.nav-logo-text {
  display: none;
}

.nav-logo-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.3px;
}

.nav-logo-tagline {
  font-size: 10px;
  color: var(--text-on-dark-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .nav-logo-mark {
    width: 178px;
    height: 42px;
  }
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.06);
}

.nav-link .chevron {
  font-size: 10px;
  transition: transform var(--duration) var(--ease);
  opacity: 0.6;
}

.nav-item:hover .chevron,
.nav-item.dropdown-open .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-out);
  z-index: 100;
}

/* Invisible hover bridge — spans the 8px gap above the dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-item:hover .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
}

.nav-dropdown-inner {
  padding: var(--space-3);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 12px;
  font-size: 13px;
  color: var(--grey-300);
  border-radius: var(--radius-sm);
  transition: all var(--duration);
  text-decoration: none;
}

.nav-dropdown a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-dropdown .icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--black-border);
  margin: var(--space-2) var(--space-3);
}

.nav-dropdown-cta {
  display: block;
  margin: var(--space-2) var(--space-3) var(--space-3);
  padding: 10px 14px;
  background: rgba(200, 240, 0, 0.1);
  border: 1px solid rgba(200, 240, 0, 0.2);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--chartreuse) !important;
  text-align: center;
  transition: all var(--duration) !important;
  text-decoration: none;
}

.nav-dropdown-cta:hover {
  background: rgba(200, 240, 0, 0.2) !important;
}

/* Mega menu (Services) */
.nav-dropdown.mega {
  min-width: 480px;
  left: 0;
  transform: none;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: var(--space-3);
}

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  overflow-y: auto;
  padding: var(--space-5) var(--gutter) var(--space-10);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--duration-lg) var(--ease);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-section {
  border-bottom: 1px solid var(--black-border);
  padding-block: var(--space-4);
}

.mobile-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: var(--space-3);
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-400);
  border-bottom: 1px solid var(--black-border);
  text-decoration: none;
}

.mobile-nav a:hover { color: var(--white); }

.mobile-nav-cta {
  margin-top: var(--space-5);
}

/* -----------------------------------------------------------------------------
   HERO — Webflow formula: one promise, cinematic image, restraint
   Interior pages use hero > container > hero-inner > hero-badge (no hero-bg)
----------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 60% 20%, rgba(181,232,83,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(181,232,83,0.05) 0%, transparent 55%),
    linear-gradient(160deg, #0d0d0d 0%, #080808 50%, #0a100a 100%);
}

.hero-bg .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%);
  pointer-events: none;
}

.hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: var(--space-10) var(--gutter);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
  margin-bottom: var(--space-5);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: var(--space-7);
  max-width: 540px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Hero CTA: bright chartreuse + spring glow */
.hero .btn-primary {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: var(--ink);
}

.hero .btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(200,240,0,0.35), 0 0 0 4px rgba(200,240,0,0.1);
}

.trust-chip {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 7px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Interior page hero trust row (contact, etc.) */
.hero .container .hero-inner .hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-top: var(--space-5);
  border-top: 1px solid var(--ink-border);
  margin-top: var(--space-5);
}

.hero .container .hero-inner .hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--text-on-dark-muted);
  padding-right: var(--space-5);
  margin-right: var(--space-5);
  border-right: 1px solid var(--ink-border);
}

.hero .container .hero-inner .hero-trust .trust-item:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.hero .container .hero-inner .hero-trust .trust-item strong {
  color: var(--text-on-dark);
  font-weight: 600;
}

.hero-seo-text {
  position: absolute;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Interior page hero (has container > hero-inner > hero-badge, no hero-bg) */
.hero .container .hero-inner {
  text-align: left;
  max-width: none;
  padding: var(--space-10) 0;
}

.hero .container .hero-inner .hero-actions {
  justify-content: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(200, 240, 0, 0.12);
  border: 1px solid rgba(200, 240, 0, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cta);
  letter-spacing: 0.5px;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  width: fit-content;
}

.hero-badge .icon-svg {
  width: 16px;
  height: 16px;
  vertical-align: -0.2em;
  margin-right: 4px;
}

/* -----------------------------------------------------------------------------
   PROOF BAR — Webflow-style stats with depth
----------------------------------------------------------------------------- */
.proof-bar {
  background: var(--ink-card);
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
  padding: 48px 0;
  position: relative;
}

.proof-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,232,83,0.12), transparent);
  pointer-events: none;
}

.proof-bar .container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.proof-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 24px 32px;
  border-right: 1px solid var(--ink-border);
  transition: background var(--duration-lg) var(--ease);
}

.proof-stat:last-child { border-right: none; }

.proof-stat:hover {
  background: rgba(181,232,83,0.03);
}

.proof-stat .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--text-on-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 250ms ease;
}

.proof-stat:hover .num {
  color: var(--accent);
}

.proof-stat .num span {
  color: var(--accent);
  display: inline-block;
  min-width: 1.2em;
}

.proof-stat .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-on-dark-muted);
  margin-top: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* -----------------------------------------------------------------------------
   PATH CHOICE — Guided branching (Webflow-style "How do you want to build?")
----------------------------------------------------------------------------- */
.section-choice {
  padding-block: var(--space-10);
}

.path-choice-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  text-align: center;
  margin-bottom: var(--space-7);
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
}

.path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 1000px;
  margin: 0 auto;
}

.path-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--ink-glass);
  border: 1px solid var(--ink-border-subtle);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.path-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 0% 50%, rgba(181,232,83,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.path-card:hover {
  border-left-color: var(--accent);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(181,232,83,0.15);
}

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

.path-card-title {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}

.path-card-desc {
  display: block;
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.path-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.3px;
  transition: gap 200ms ease;
}

.path-card:hover .path-card-cta { gap: 10px; }

/* -----------------------------------------------------------------------------
   CARDS
----------------------------------------------------------------------------- */
.card {
  background: #ffffff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-lg) var(--ease);
}

.card:hover {
  border-color: var(--grey-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.01);
}

.card-dark {
  background: var(--black-card);
  border-color: var(--black-border);
}

.card-dark:hover {
  border-color: var(--black-border);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--chartreuse-tint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
  transition: background 250ms ease, transform 250ms var(--ease-spring);
  color: var(--text-on-dark-muted);
}

.card-dark .card-icon {
  background: var(--accent-muted);
}

/* Property card icon — dark-themed tints per card position */
.property-card .card-icon { background: rgba(181,232,83,0.08); }
.property-card:nth-child(1) .card-icon { background: rgba(181,232,83,0.11); }
.property-card:nth-child(2) .card-icon { background: rgba(74,222,128,0.08); }
.property-card:nth-child(3) .card-icon { background: rgba(181,232,83,0.09); }
.property-card:nth-child(4) .card-icon { background: rgba(34,197,94,0.07); }
.property-card:nth-child(5) .card-icon { background: rgba(181,232,83,0.08); }
.property-card:nth-child(6) .card-icon { background: rgba(74,222,128,0.06); }
.property-card:nth-child(7) .card-icon { background: rgba(181,232,83,0.10); }

.property-card:hover .card-icon {
  background: rgba(181,232,83,0.22) !important;
  transform: scale(1.1);
  color: var(--accent);
}

.card h4 {
  margin-bottom: var(--space-2);
}

.card-dark h4 {
  color: var(--white);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--chartreuse-dark);
  margin-top: var(--space-3);
  transition: gap var(--duration);
}

.card-link:hover { gap: 10px; }

/* Property type card — Webflow-style hover depth */
.property-card {
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  border-radius: var(--radius);
  padding: var(--space-5);
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all var(--duration-lg) var(--ease-smooth);
  /* Apply stagger via CSS custom property set on each card */
  transition-delay: var(--card-delay, 0ms);
  position: relative;
  overflow: hidden;
}

.property-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cta), var(--accent-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-lg) var(--ease-spring);
}

.property-card .icon {
  font-size: 32px;
  margin-bottom: var(--space-3);
  transition: transform var(--duration-lg) var(--ease-spring);
}

.property-card:hover {
  border-color: rgba(200, 240, 0, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,240,0,0.15);
  transition: all var(--duration-lg) var(--ease-spring);
}

.property-card:hover::before {
  transform: scaleX(1);
}

.property-card:hover .icon {
  transform: scale(1.1);
}

.property-card h4 {
  color: var(--text-on-dark);
  font-size: 16px;
  margin-bottom: var(--space-2);
  transition: color var(--duration);
}

.property-card:hover h4 {
  color: var(--cta);
}

.property-card p {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  margin: 0;
}

.property-card .arrow {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--cta);
  margin-top: var(--space-3);
  transition: transform var(--duration-lg) var(--ease-spring);
}

.property-card:hover .arrow {
  transform: translateX(6px);
}

/* -----------------------------------------------------------------------------
   SERVICE SPLIT (Commercial / Residential)
----------------------------------------------------------------------------- */
.service-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-5);
}

.split-card {
  border-radius: 20px;
  padding: var(--space-7);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease;
}

.split-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.split-card.commercial {
  background: linear-gradient(135deg, #0d150d 0%, #111a0e 50%, #0a120a 100%);
  color: var(--white);
  border: 1px solid rgba(181,232,83,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.split-card.commercial:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(181,232,83,0.25);
}

/* Radial glow in top-right corner */
.split-card.commercial::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(181,232,83,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.split-card.residential {
  background: linear-gradient(180deg, var(--cream) 0%, var(--surface-alt) 100%);
  color: var(--black);
  border: 1px solid var(--grey-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.split-card.residential:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.12), 0 0 0 1px var(--grey-300);
}

.split-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: var(--space-4);
}

.commercial .split-tag {
  background: rgba(200, 240, 0, 0.15);
  color: var(--chartreuse);
}

.residential .split-tag {
  background: var(--grey-200);
  color: var(--grey-600);
}

.split-card h3 {
  margin-bottom: var(--space-3);
}

.residential .split-card-label {
  color: var(--grey-600);
}

.split-card p {
  font-size: 15px;
  line-height: 1.6;
}

.commercial p { color: var(--text-on-dark-muted); }

.split-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  font-weight: 700;
  margin-top: var(--space-5);
  transition: gap 200ms ease, color 200ms ease;
}

.commercial .split-cta {
  color: var(--accent);
  border-bottom: 1px solid rgba(181,232,83,0.3);
  padding-bottom: 2px;
}

.commercial .split-cta:hover {
  gap: 14px;
  border-bottom-color: var(--accent);
}

.residential .split-cta {
  color: var(--black);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 2px;
}

.residential .split-cta:hover {
  gap: 14px;
  border-bottom-color: var(--black);
}

/* -----------------------------------------------------------------------------
   DIFFERENTIATORS — Numbered editorial layout
----------------------------------------------------------------------------- */
.diff-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  transition: all var(--duration-lg) var(--ease-smooth);
  border: 1px solid transparent;
}

.diff-item:hover {
  background: rgba(181, 232, 83, 0.03);
  border-color: rgba(181, 232, 83, 0.08);
  transform: translateY(-2px);
}

/* Decorative editorial number */
.diff-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: rgba(181, 232, 83, 0.12);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  min-width: 52px;
  transition: color 350ms ease;
  user-select: none;
  margin-top: -4px;
}

.diff-item:hover .diff-num {
  color: rgba(181, 232, 83, 0.4);
}

.diff-icon {
  width: 56px;
  height: 56px;
  background: var(--cta);
  color: var(--ink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all var(--duration-lg) var(--ease-spring);
}

.diff-item:hover .diff-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(200, 240, 0, 0.35);
}

.diff-content h4 {
  margin-bottom: 4px;
}

/* -----------------------------------------------------------------------------
   SERVICE AREA GRID
----------------------------------------------------------------------------- */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-600);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all var(--duration-lg) var(--ease-smooth);
  transition-delay: var(--pill-delay, 0ms);
}

/* Location dot */
.city-pill::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent-hover);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 200ms ease, background 200ms ease;
}

.city-pill:hover {
  background: var(--ink);
  border-color: transparent;
  color: var(--accent);
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transform: translateY(-2px) scale(1.02);
  transition: all var(--duration) var(--ease-spring);
}

.city-pill:hover::before {
  opacity: 1;
  background: var(--accent);
}

.city-pill-static {
  background: var(--grey-200) !important;
  color: var(--grey-400) !important;
  cursor: default;
  box-shadow: none !important;
  pointer-events: none;
}

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

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--duration-lg) var(--ease-spring);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--grey-200);
  color: var(--grey-400);
  font-size: 13px;
  gap: var(--space-2);
}

.gallery-placeholder .ph-icon { font-size: 32px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-lg) var(--ease-smooth);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

/* -----------------------------------------------------------------------------
   TESTIMONIALS
----------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 300ms ease, transform 300ms ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* Large floating opening quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-on-light);
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
  padding-top: 20px; /* clear the quote mark */
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--grey-200);
  padding-top: var(--space-4);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--grey-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--grey-600);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.author-meta {
  font-size: 12px;
  color: var(--grey-400);
  margin-top: 2px;
}

.source-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
}

.source-google {
  background: rgba(181,232,83,0.15);
  color: var(--accent-hover);
  border: 1px solid rgba(181,232,83,0.25);
  font-weight: 700;
}
.source-yelp { background: #FFECEC; color: #B71C1C; }

/* -----------------------------------------------------------------------------
   BLOG CARD
----------------------------------------------------------------------------- */
.blog-card {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-lg) var(--ease);
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  border-color: var(--grey-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.01);
}

/* Category-specific gradient thumbnails */
.blog-card[data-category="commercial"] .blog-card-thumb {
  background: linear-gradient(135deg, #0a150a 0%, #0d1f0d 100%);
}
.blog-card[data-category="hoa"] .blog-card-thumb {
  background: linear-gradient(135deg, #0d150f 0%, #0f1d14 100%);
}
.blog-card[data-category="lawn-care"] .blog-card-thumb {
  background: linear-gradient(135deg, #0a1200 0%, #0e1a05 100%);
}

/* Large icon in thumb */
.blog-card-thumb .icon-svg {
  width: 44px;
  height: 44px;
  color: rgba(181,232,83,0.3);
  transition: color 250ms ease;
}
.blog-card:hover .blog-card-thumb .icon-svg {
  color: rgba(181,232,83,0.6);
}

/* Blog card body upgrade */
.blog-card:hover {
  border-color: var(--grey-300);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

/* Category badge upgrade */
.blog-category {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: var(--space-2);
}

.blog-card-thumb {
  aspect-ratio: 16/9;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  overflow: hidden;
}

.blog-card-body {
  padding: var(--space-5);
}

.blog-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--chartreuse-dark);
  margin-bottom: var(--space-2);
}

.blog-card-body h4 {
  color: var(--black);
  margin-bottom: var(--space-2);
  transition: color var(--duration);
}

.blog-card:hover h4 { color: var(--chartreuse-dark); }

.blog-meta {
  display: flex;
  gap: var(--space-3);
  font-size: 12px;
  color: var(--grey-400);
  margin-top: var(--space-3);
}

/* -----------------------------------------------------------------------------
   CTA BAND — Webflow-style impact
----------------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(181,232,83,0.10) 0%, transparent 65%),
    linear-gradient(180deg, #0a0f0a 0%, #080808 100%);
  border-top: 1px solid rgba(181,232,83,0.12);
  padding-block: var(--space-10);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 300px 300px;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(181,232,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--accent);
}

.cta-band p {
  color: var(--text-on-dark-muted);
  font-size: 17px;
  margin-bottom: var(--space-6);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cta-band-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color var(--duration);
}

.cta-band-phone:hover { color: var(--cta); }

/* -----------------------------------------------------------------------------
   FOOTER
----------------------------------------------------------------------------- */
.footer {
  background: linear-gradient(180deg, var(--ink-elevated) 0%, var(--ink-muted) 100%);
  color: var(--white);
  padding-top: var(--space-9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--black-border);
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  margin-top: var(--space-4);
  margin-bottom: var(--space-5);
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 18px;
  font-weight: 700;
  color: var(--cta);
  text-decoration: none;
  margin-bottom: var(--space-2);
}

.footer-email {
  font-size: 14px;
  color: var(--grey-400);
  text-decoration: none;
  transition: color var(--duration);
}

.footer-email:hover { color: var(--text-on-dark); }

.footer-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--black-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--grey-400);
  text-decoration: none;
  transition: all var(--duration);
}

.social-link:hover {
  background: var(--cta);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--space-4);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }

.footer-col a {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color var(--duration);
}

.footer-col a:hover { color: var(--text-on-dark); }

.footer-bottom {
  padding-block: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 12px;
  color: var(--grey-600);
}

.footer-bottom a {
  color: var(--grey-600);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--text-on-dark); }

/* -----------------------------------------------------------------------------
   BREADCRUMBS
----------------------------------------------------------------------------- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--grey-400);
  padding-block: var(--space-4);
  flex-wrap: wrap;
}

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

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

.breadcrumbs .separator { color: var(--grey-200); }

.breadcrumbs .current { color: var(--black); font-weight: 500; }

/* On dark backgrounds */
.breadcrumbs.dark a { color: var(--grey-600); }
.breadcrumbs.dark .current { color: var(--grey-400); }
.breadcrumbs.dark .separator { color: var(--black-border); }

/* -----------------------------------------------------------------------------
   FAQ SECTION
----------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  gap: var(--space-4);
  transition: background var(--duration);
}

.faq-question:hover {
  background: var(--grey-50);
}

.faq-icon {
  font-size: 20px;
  color: var(--grey-400);
  transition: transform var(--duration) var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--chartreuse-dark);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-5) var(--space-5);
  background: var(--white);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 15px;
  color: var(--grey-600);
}

/* -----------------------------------------------------------------------------
   FORM
----------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--space-2);
}

.form-label .required {
  color: #E53935;
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  transition: border-color var(--duration);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 240, 0, 0.2);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239A9A9A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-trust {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--grey-400);
  margin-top: var(--space-3);
}

.form-trust-icon {
  color: var(--grey-400);
  font-size: 14px;
}

/* -----------------------------------------------------------------------------
   CONTACT INFO CARDS
----------------------------------------------------------------------------- */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--grey-100);
  border-radius: var(--radius);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--chartreuse);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.contact-info-value a {
  color: var(--black);
  text-decoration: none;
}

.contact-info-value a:hover { color: var(--chartreuse-dark); }

/* -----------------------------------------------------------------------------
   TEAM CARDS
----------------------------------------------------------------------------- */
.team-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--grey-100);
  border-radius: var(--radius);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--grey-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--grey-600);
  margin-inline: auto;
  margin-bottom: var(--space-4);
  /* TODO: Replace with real headshot using <img> */
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.team-title {
  font-size: 13px;
  color: var(--grey-400);
  margin-bottom: var(--space-3);
}

.team-cert {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  background: var(--chartreuse-tint);
  border-radius: 20px;
  color: #3A5500;
  margin: 2px;
}

/* -----------------------------------------------------------------------------
   STAT HERO — Cinematic cited statistic
----------------------------------------------------------------------------- */
.stat-hero-section {
  text-align: center;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(181,232,83,0.08) 0%, transparent 65%),
    linear-gradient(180deg, #080808 0%, #0a100a 100%);
  color: var(--text-on-dark);
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
}

.stat-hero { position: relative; z-index: 1; }

.stat-hero-number {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 148px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-block: var(--space-4) var(--space-5);
}

.stat-hero-label {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--text-on-dark-muted);
  line-height: 1.3;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.stat-hero-label em {
  color: var(--accent);
  font-style: italic;
}

.stat-hero-source {
  font-size: 11px;
  color: var(--text-on-dark-faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* -----------------------------------------------------------------------------
   NUMBERS / STATS
----------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
}

.stat-item {
  padding: var(--space-5);
}

.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-number .accent { color: var(--chartreuse-dark); }

.stat-label {
  font-size: 14px;
  color: var(--grey-400);
  margin-top: var(--space-2);
}

/* -----------------------------------------------------------------------------
   REVIEW CARD (reviews page)
----------------------------------------------------------------------------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-lg) var(--ease);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.01);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  gap: var(--space-3);
}

.review-stars {
  color: var(--cta);
  font-size: 14px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-800);
  margin-bottom: var(--space-4);
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey-200);
  padding-top: var(--space-3);
}

.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.reviewer-type {
  font-size: 12px;
  color: var(--grey-400);
  margin-top: 1px;
}

/* -----------------------------------------------------------------------------
   CERTIFICATION BADGES
----------------------------------------------------------------------------- */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-600);
}

.cert-badge .cert-icon {
  font-size: 18px;
}

/* -----------------------------------------------------------------------------
   MOBILE STICKY BAR
----------------------------------------------------------------------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: var(--space-3) var(--space-4);
  z-index: 998;
  gap: var(--space-3);
}

.mobile-sticky-bar a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sticky-call {
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  color: var(--text-on-dark);
}

.sticky-quote {
  background: var(--cta);
  color: var(--ink);
}

/* -----------------------------------------------------------------------------
   SCROLL ANIMATIONS — Webflow-style staggered reveals
----------------------------------------------------------------------------- */
/* Diagonal section divider for dark sections */
.section-dark-clip {
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
  padding-block: calc(var(--space-10) + 40px);
  margin-block: -20px;
  z-index: 1;
  position: relative;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms var(--ease-out),
    transform 600ms var(--ease-out);
  /* Support card-specific delays via inline CSS variable */
  transition-delay: var(--card-delay, var(--pill-delay, 0ms));
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Named stagger classes (override the 0ms default) */
.fade-in-delay-1 { --card-delay: 80ms; }
.fade-in-delay-2 { --card-delay: 160ms; }
.fade-in-delay-3 { --card-delay: 240ms; }
.fade-in-delay-4 { --card-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .split-card:hover,
  .property-card:hover,
  .city-pill:hover,
  .proof-stat:hover,
  .diff-item:hover,
  .gallery-item:hover {
    transform: none;
  }

  .split-card .split-cta:hover,
  .property-card .arrow,
  .diff-item .diff-icon {
    transform: none;
  }
}

/* -----------------------------------------------------------------------------
   RESPONSIVE — TABLET (≤ 1024px)
----------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --gutter: 24px;
  }

  .path-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

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

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

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

/* -----------------------------------------------------------------------------
   RESPONSIVE — MOBILE (≤ 768px)
----------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --topbar-height: 0px; /* Hide topbar on mobile */
  }

  .topbar { display: none; }

  .nav-links,
  .nav-cta { display: none; }

  .hamburger { display: flex; }

  .mobile-nav { display: block; }

  .mobile-sticky-bar { display: flex; }

  body { padding-bottom: 72px; }

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

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

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

  .hero {
    min-height: 70vh;
  }

  .hero-inner {
    padding: var(--space-8) var(--gutter);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-trust {
    gap: var(--space-3);
  }

  .hero .container .hero-inner .hero-trust .trust-item {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  .path-cards {
    grid-template-columns: 1fr;
  }

  .proof-bar .container {
    gap: var(--space-6);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .cta-band-actions {
    flex-direction: column;
  }

  .section {
    padding-block: var(--space-7);
  }
}

/* -----------------------------------------------------------------------------
   PRINT
----------------------------------------------------------------------------- */
@media print {
  .site-header,
  .mobile-sticky-bar,
  .cta-band,
  .footer { display: none; }

  body { color: #000; }
  a { text-decoration: underline; }
}@charset "UTF-8";
/* =============================================================================
   PRIME OUTDOOR EXPERTS — Botanical Premium
   Cream + Deep Botanical Green + Chartreuse
   Loaded after styles.css to override the dark-first design system.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   PALETTE TOKENS
----------------------------------------------------------------------------- */
:root {
  /* New botanical palette */
  --bp-cream:        #F5F1E8;
  --bp-cream-soft:   #FAF7EE;
  --bp-cream-deep:   #EFE9DC;
  --bp-beige:        #EAE1D0;
  --bp-tan:          #D9D2C0;
  --bp-tan-soft:     #E8E1CF;
  --bp-tan-line:     #C9C1AB;

  --bp-green-deep:   #1D3A2B;   /* primary text, hero bg, footer bg */
  --bp-green-canopy: #2C5340;   /* elevated dark surfaces */
  --bp-green-leaf:   #3F7556;   /* eyebrows, accents on cream */
  --bp-green-sage:   #6B8B7A;   /* muted text on cream */
  --bp-green-mist:   #A8B9AD;   /* faint */

  --bp-text:         #1D3A2B;
  --bp-text-soft:    #4A5849;
  --bp-text-faint:   #7A867D;

  /* Override the inherited base tokens (cascade order: this file loads after styles.css) */
  --ink:                 var(--bp-green-deep);
  --ink-elevated:        var(--bp-green-canopy);
  --ink-card:            var(--bp-green-canopy);
  --ink-border:          rgba(245, 241, 232, 0.14);
  --ink-muted:           var(--bp-green-deep);
  --ink-glass:           rgba(29, 58, 43, 0.85);
  --ink-border-subtle:   rgba(245, 241, 232, 0.06);

  --surface:             var(--bp-cream);
  --surface-alt:         var(--bp-beige);
  --text-on-light:       var(--bp-text);
  --text-on-light-muted: var(--bp-text-soft);

  --text-on-dark:        var(--bp-cream);
  --text-on-dark-muted:  rgba(245, 241, 232, 0.72);
  --text-on-dark-faint:  rgba(245, 241, 232, 0.50);

  /* Legacy aliases — re-mapped */
  --black:        var(--bp-green-deep);
  --black-soft:   var(--bp-green-canopy);
  --black-warm:   var(--bp-green-deep);
  --black-card:   var(--bp-green-canopy);
  --black-border: rgba(245, 241, 232, 0.14);
  --white:        #FFFFFF;
  --cream:        var(--bp-cream);
  --cream-dark:   var(--bp-beige);
  --grey-50:      var(--bp-cream-soft);
  --grey-100:     var(--bp-cream);
  --grey-200:     var(--bp-tan);
  --grey-300:     var(--bp-tan-soft);
  --grey-400:     var(--bp-text-soft);
  --grey-600:     var(--bp-text-soft);
  --grey-800:     var(--bp-tan-line);

  /* Accent — keep the chartreuse but tune for cream context */
  /* --accent already defined in base; keep #b5e853. Boost contrast on cream. */
  --accent-on-cream-bg: var(--bp-green-deep); /* text color on chartreuse buttons over cream */
}

/* -----------------------------------------------------------------------------
   BASE
----------------------------------------------------------------------------- */
body {
  background: var(--bp-cream);
  color: var(--bp-text);
}

/* Subtle paper-grain feel on cream */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.6;
}

/* -----------------------------------------------------------------------------
   TOPBAR — Deep green band above nav (anchors visual hierarchy)
----------------------------------------------------------------------------- */
.topbar {
  background: var(--bp-green-deep);
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.topbar-phone { color: var(--bp-cream); }
.topbar-phone:hover { color: var(--accent); }
.topbar-rating { color: rgba(245, 241, 232, 0.72); }
.topbar-rating .stars { color: var(--accent); }
.topbar-area { color: rgba(245, 241, 232, 0.62); }

/* -----------------------------------------------------------------------------
   HEADER / NAV — Cream with deep green text
----------------------------------------------------------------------------- */
.site-header {
  background: var(--bp-cream);
  border-bottom: 1px solid var(--bp-tan);
}

.site-header.scrolled {
  background: rgba(245, 241, 232, 0.92);
  box-shadow: 0 1px 0 var(--bp-tan);
  border-bottom-color: transparent;
}

.nav-link, .nav-link:visited {
  color: var(--bp-text);
}

.nav-link:hover {
  color: var(--bp-green-leaf);
}

.nav-logo-name { color: var(--bp-green-deep); }
.nav-logo-tagline { color: var(--bp-green-sage); }

/* Logo: dark mark on cream nav, white mark on dark green footer */
.site-header .nav-logo-mark {
  background: url('../assets/prime_transparent.png') left center / contain no-repeat;
}

.footer .nav-logo-mark {
  background: url('../assets/prime_trans_white.png') left center / contain no-repeat;
}

.nav-dropdown {
  background: var(--bp-cream);
  border: 1px solid var(--bp-tan);
  box-shadow: 0 24px 48px -12px rgba(29, 58, 43, 0.18);
}

.nav-dropdown a, .nav-dropdown a:visited {
  color: var(--bp-text);
}

.nav-dropdown a:hover {
  background: var(--bp-cream-deep);
  color: var(--bp-green-deep);
}

.nav-dropdown-cta {
  background: var(--bp-cream-deep);
  color: var(--bp-green-deep);
  border-top: 1px solid var(--bp-tan);
}

.hamburger span { background: var(--bp-text); }

/* Mobile nav drawer */
.mobile-nav {
  background: var(--bp-cream);
}

.mobile-nav a, .mobile-nav a:visited {
  color: var(--bp-text);
}

.mobile-nav-label {
  color: var(--bp-green-leaf);
}

/* -----------------------------------------------------------------------------
   HERO — Cream with botanical pattern + serif-led editorial type
----------------------------------------------------------------------------- */
.hero {
  background: var(--bp-cream);
  color: var(--bp-text);
  border-bottom: 1px solid var(--bp-tan);
  min-height: 88vh;
}

.hero-bg {
  background: var(--bp-cream);
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Hero photo (when present) — covers, low-opacity cream wash + bottom-fade gradient
   so the cream-card text stays readable on top */
.hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
}

/* Cream wash + side fade so the centered text-card has a quiet backdrop */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.92) 0%, rgba(245, 241, 232, 0.70) 35%, rgba(245, 241, 232, 0.55) 65%, rgba(245, 241, 232, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Hand-drawn botanical pattern — palm fronds + grass blades */
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' width='1200' height='800' fill='none'%3E%3Cg stroke='%231D3A2B' stroke-width='1.2' stroke-linecap='round' opacity='0.10'%3E%3C!-- Palm frond top right --%3E%3Cpath d='M 1080 120 Q 1100 80 1160 60'/%3E%3Cpath d='M 1080 120 Q 1110 110 1170 110'/%3E%3Cpath d='M 1080 120 Q 1110 140 1170 160'/%3E%3Cpath d='M 1080 120 Q 1100 160 1160 200'/%3E%3Cpath d='M 1080 120 Q 1075 80 1080 60'/%3E%3Cpath d='M 1080 120 Q 1060 105 1010 90'/%3E%3Cpath d='M 1080 120 Q 1060 130 1010 150'/%3E%3Cpath d='M 1080 120 Q 1070 160 1040 200'/%3E%3C!-- Grass cluster bottom left --%3E%3Cpath d='M 100 780 Q 105 720 95 660'/%3E%3Cpath d='M 120 780 Q 135 700 130 640'/%3E%3Cpath d='M 145 780 Q 155 720 165 660'/%3E%3Cpath d='M 170 780 Q 180 710 195 650'/%3E%3Cpath d='M 80 780 Q 70 730 55 680'/%3E%3C!-- Oak leaf mid right --%3E%3Cpath d='M 1100 450 q -20 -10 -40 -5 q -8 -18 -22 -22 q 0 -16 -16 -22 q -10 -8 -22 -2 q -8 -10 -22 -8 q -4 14 8 22 q -10 8 -2 22 q 14 4 22 -8 q 10 14 22 8 q 4 18 22 22 q 8 18 22 22 q 16 4 28 -29 z'/%3E%3C!-- Hibiscus mid bottom --%3E%3Ccircle cx='600' cy='720' r='14'/%3E%3Cpath d='M 600 706 q -22 -6 -32 -22 q 12 -18 32 -22 q 22 4 32 22 q -12 16 -32 22'/%3E%3Cpath d='M 600 720 q -32 -2 -36 22 q 22 14 36 22 q 18 -8 36 -22 q -8 -22 -36 -22'/%3E%3Cpath d='M 600 720 v -24'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero h1 {
  color: var(--bp-green-deep);
}

.hero h1 em {
  color: var(--bp-green-leaf);
}

.hero-sub {
  color: var(--bp-text-soft);
}

.hero .btn-primary {
  background: var(--accent);
  color: var(--bp-green-deep);
  box-shadow: 0 8px 24px -8px rgba(181, 232, 83, 0.5);
}

.hero .btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bp-green-deep);
}

.btn-outline-white {
  border: 1.5px solid var(--bp-green-deep);
  color: var(--bp-green-deep);
  background: transparent;
}

.btn-outline-white:hover {
  background: var(--bp-green-deep);
  color: var(--bp-cream);
}

/* Trust chips on cream */
.trust-chip {
  background: rgba(29, 58, 43, 0.05);
  border: 1px solid var(--bp-tan);
  color: var(--bp-text);
}

/* -----------------------------------------------------------------------------
   SECTIONS
----------------------------------------------------------------------------- */
.section {
  background: var(--bp-cream);
  color: var(--bp-text);
}

.section-grey {
  background: linear-gradient(180deg, var(--bp-cream-deep) 0%, var(--bp-beige) 100%);
}

.section-grey::before { display: none; }

.section-dark {
  background: linear-gradient(180deg, var(--bp-green-deep) 0%, var(--bp-green-canopy) 50%, var(--bp-green-deep) 100%);
  color: var(--bp-cream);
}

.section-dark p { color: rgba(245, 241, 232, 0.78); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--bp-cream); }

.section-eyebrow {
  color: var(--bp-green-leaf);
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-eyebrow::before {
  background: var(--bp-green-leaf);
}

.section-dark .section-eyebrow {
  color: var(--accent);
}

.section-dark .section-eyebrow::before {
  background: var(--accent);
}

/* -----------------------------------------------------------------------------
   PROOF BAR — Deep green band beneath hero
----------------------------------------------------------------------------- */
.proof-bar {
  background: var(--bp-green-deep);
  color: var(--bp-cream);
  border-top: 1px solid rgba(245, 241, 232, 0.10);
  border-bottom: 1px solid rgba(245, 241, 232, 0.10);
}

.proof-stat .num { color: var(--bp-cream); }
.proof-stat .label { color: rgba(245, 241, 232, 0.7); }
.proof-stat .num span { color: var(--accent); }

/* -----------------------------------------------------------------------------
   PATH CHOICE CARDS (on dark section)
----------------------------------------------------------------------------- */
.path-card {
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid rgba(245, 241, 232, 0.14);
  color: var(--bp-cream);
}

.path-card:hover {
  background: rgba(245, 241, 232, 0.10);
  border-color: var(--accent);
}

.path-card-title { color: var(--bp-cream); }
.path-card-desc  { color: rgba(245, 241, 232, 0.74); }
.path-card-cta   { color: var(--accent); }

/* -----------------------------------------------------------------------------
   SERVICE SPLIT
----------------------------------------------------------------------------- */
.split-card.commercial {
  background: linear-gradient(160deg, var(--bp-green-deep) 0%, var(--bp-green-canopy) 100%);
  color: var(--bp-cream);
  border: 1px solid rgba(245, 241, 232, 0.10);
}

.split-card.residential {
  background: var(--bp-cream-soft);
  color: var(--bp-text);
  border: 1px solid var(--bp-tan);
  box-shadow: 0 8px 32px -8px rgba(29, 58, 43, 0.10);
}

.split-tag {
  background: var(--accent);
  color: var(--bp-green-deep);
}

.split-card.commercial .split-cta { color: var(--accent); }
.split-card.residential .split-cta { color: var(--bp-green-leaf); }

/* -----------------------------------------------------------------------------
   DIFFERENTIATOR ITEMS (About page "How We Work")
----------------------------------------------------------------------------- */
.diff-item {
  background: var(--bp-cream-soft);
  border: 1px solid var(--bp-tan);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}

.diff-num {
  color: var(--bp-green-leaf);
  font-family: var(--font-display);
  font-style: italic;
  opacity: 0.5;
}

.diff-icon {
  background: rgba(181, 232, 83, 0.18);
  color: var(--bp-green-deep);
}

.diff-content h3 { color: var(--bp-green-deep); }
.diff-content p  { color: var(--bp-text-soft); }

/* -----------------------------------------------------------------------------
   STAT HERO — The "15-20% property value" section
----------------------------------------------------------------------------- */
.stat-hero-section {
  background: linear-gradient(180deg, var(--bp-cream) 0%, var(--bp-cream-deep) 100%);
}

.stat-hero-number {
  color: var(--bp-green-deep);
  font-family: var(--font-display);
}

.stat-hero-label { color: var(--bp-text); }
.stat-hero-label em { color: var(--bp-green-leaf); }
.stat-hero-source { color: var(--bp-text-faint); }

/* -----------------------------------------------------------------------------
   STAT GRID (About page numbers block)
----------------------------------------------------------------------------- */
.stat-item {
  background: var(--bp-cream-soft);
  border: 1px solid var(--bp-tan);
}

.stat-number { color: var(--bp-green-deep); }
.stat-number .accent { color: var(--bp-green-leaf); }
.stat-label  { color: var(--bp-text-soft); }

/* -----------------------------------------------------------------------------
   GALLERY ITEMS — placeholder treatment until photos arrive
----------------------------------------------------------------------------- */
.gallery-item {
  border: 1px solid var(--bp-tan);
  background: var(--bp-cream-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-placeholder {
  background: linear-gradient(180deg, var(--bp-cream-deep) 0%, var(--bp-beige) 100%);
  color: var(--bp-green-leaf);
  border: 1px dashed var(--bp-tan-line);
}

.gallery-placeholder .ph-icon {
  background: rgba(181, 232, 83, 0.20);
  color: var(--bp-green-deep);
}

.gallery-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(29, 58, 43, 0.85) 100%);
}

.gallery-label {
  color: var(--bp-cream);
}

/* -----------------------------------------------------------------------------
   CITY PILLS (locations + service area lists)
----------------------------------------------------------------------------- */
.city-pill {
  background: var(--bp-cream-soft);
  border: 1px solid var(--bp-tan);
  color: var(--bp-text);
}

.city-pill:hover {
  background: var(--bp-green-deep);
  color: var(--bp-cream);
  border-color: var(--bp-green-deep);
}

/* -----------------------------------------------------------------------------
   TESTIMONIAL CARDS
----------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--bp-cream-soft);
  border: 1px solid var(--bp-tan);
}

.testimonial-quote { color: var(--bp-text); }
.testimonial-name  { color: var(--bp-green-deep); }
.testimonial-role  { color: var(--bp-text-soft); }
.testimonial-stars { color: var(--accent); }

.testimonial-avatar {
  background: var(--bp-green-leaf);
  color: var(--bp-cream);
}

/* -----------------------------------------------------------------------------
   CERTIFICATION BADGES
----------------------------------------------------------------------------- */
.cert-badge {
  background: var(--bp-cream-soft);
  border: 1px solid var(--bp-tan);
  color: var(--bp-text);
}

.cert-icon {
  color: var(--bp-green-leaf);
}

/* -----------------------------------------------------------------------------
   BUTTONS — General
----------------------------------------------------------------------------- */
.btn-primary {
  background: var(--accent);
  color: var(--bp-green-deep);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bp-green-deep);
}

.btn-outline-dark {
  border: 1.5px solid var(--bp-green-deep);
  color: var(--bp-green-deep);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--bp-green-deep);
  color: var(--bp-cream);
}

/* -----------------------------------------------------------------------------
   FORMS — Contact form on cream
----------------------------------------------------------------------------- */
.form-card {
  background: var(--bp-cream-soft);
  border: 1px solid var(--bp-tan);
}

.form-input, .form-select, .form-textarea {
  background: #FFFFFF;
  border: 1px solid var(--bp-tan);
  color: var(--bp-text);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--bp-green-leaf);
  outline: 2px solid rgba(63, 117, 86, 0.18);
  outline-offset: 0;
}

.form-label {
  color: var(--bp-text);
}

.form-helper {
  color: var(--bp-text-soft);
}

/* -----------------------------------------------------------------------------
   BREADCRUMBS
----------------------------------------------------------------------------- */
.breadcrumbs {
  color: var(--bp-text-soft);
}

.breadcrumbs a, .breadcrumbs a:visited {
  color: var(--bp-green-leaf);
}

.breadcrumbs .separator {
  color: var(--bp-tan-line);
}

.breadcrumbs .current {
  color: var(--bp-text);
}

/* -----------------------------------------------------------------------------
   CTA BAND
----------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(180deg, var(--bp-green-deep) 0%, var(--bp-green-canopy) 100%);
  color: var(--bp-cream);
}

.cta-band h2 { color: var(--bp-cream); }
.cta-band p  { color: rgba(245, 241, 232, 0.82); }
.cta-band-phone { color: var(--accent); }

/* -----------------------------------------------------------------------------
   FOOTER
----------------------------------------------------------------------------- */
.footer {
  background: var(--bp-green-deep);
  color: var(--bp-cream);
  border-top: 1px solid rgba(245, 241, 232, 0.06);
}

.footer-brand-desc { color: rgba(245, 241, 232, 0.72); }

.footer-col h5 {
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.footer-col ul a, .footer-col ul a:visited {
  color: rgba(245, 241, 232, 0.78);
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-phone { color: var(--bp-cream); }
.footer-phone:hover { color: var(--accent); }
.footer-email { color: rgba(245, 241, 232, 0.78); }

.social-link {
  background: rgba(245, 241, 232, 0.08);
  color: var(--bp-cream);
  border: 1px solid rgba(245, 241, 232, 0.12);
}

.social-link:hover {
  background: var(--accent);
  color: var(--bp-green-deep);
  border-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.10);
  color: rgba(245, 241, 232, 0.55);
}

.footer-bottom a { color: rgba(245, 241, 232, 0.72); }
.footer-bottom a:hover { color: var(--accent); }

/* -----------------------------------------------------------------------------
   MOBILE STICKY BAR
----------------------------------------------------------------------------- */
.mobile-sticky-bar {
  background: var(--bp-green-deep);
  border-top: 1px solid rgba(245, 241, 232, 0.10);
}

.sticky-call {
  background: transparent;
  color: var(--bp-cream);
  border: 1px solid rgba(245, 241, 232, 0.20);
}

.sticky-quote {
  background: var(--accent);
  color: var(--bp-green-deep);
}

/* -----------------------------------------------------------------------------
   BLOG CARDS
----------------------------------------------------------------------------- */
.blog-card {
  background: var(--bp-cream-soft);
  border: 1px solid var(--bp-tan);
}

.blog-card h3, .blog-card h4 { color: var(--bp-green-deep); }
.blog-card p { color: var(--bp-text-soft); }
.blog-card-meta { color: var(--bp-text-faint); }
.blog-card-readmore { color: var(--bp-green-leaf); }

/* -----------------------------------------------------------------------------
   FAQ ACCORDION
----------------------------------------------------------------------------- */
.faq-item {
  background: var(--bp-cream-soft);
  border: 1px solid var(--bp-tan);
}

.faq-question {
  color: var(--bp-green-deep);
}

.faq-answer {
  color: var(--bp-text-soft);
}

/* -----------------------------------------------------------------------------
   ICON COLORS — fix existing icons that assumed dark-on-light
----------------------------------------------------------------------------- */
.icon-svg { color: currentColor; }

/* In sections where text is now deep green, default icon stroke matches */

/* -----------------------------------------------------------------------------
   ENSURE CONTENT LAYERS ABOVE BODY GRAIN
----------------------------------------------------------------------------- */
header, main, footer, .topbar, .mobile-sticky-bar { position: relative; z-index: 1; }

/* =============================================================================
   PATCH PASS — Phase A visual fixes
   ============================================================================= */

/* Hero badge — readable green-on-leaf-tint instead of chartreuse-on-tint
   (used as eyebrow on every interior page) */
.hero-badge {
  background: rgba(63, 117, 86, 0.10);
  border: 1px solid rgba(63, 117, 86, 0.30);
  color: var(--bp-green-leaf);
}

.hero-badge .icon-svg {
  color: var(--bp-green-leaf);
}

/* Card icons — visible on cream surfaces */
.card-icon,
.diff-icon,
.contact-icon,
.cert-icon {
  color: var(--bp-green-deep);
}

.card-icon .icon-svg,
.diff-icon .icon-svg,
.contact-icon .icon-svg,
.cert-icon .icon-svg {
  color: var(--bp-green-deep);
}

/* Outline button on dark sections — must read as cream, not deep green */
.section-dark .btn-outline-white,
.hero.section-dark .btn-outline-white,
.cta-band .btn-outline-white,
.proof-bar .btn-outline-white,
.footer .btn-outline-white {
  border-color: var(--bp-cream);
  color: var(--bp-cream);
  background: transparent;
}

.section-dark .btn-outline-white:hover,
.hero.section-dark .btn-outline-white:hover,
.cta-band .btn-outline-white:hover,
.proof-bar .btn-outline-white:hover,
.footer .btn-outline-white:hover {
  background: var(--bp-cream);
  color: var(--bp-green-deep);
}

/* Commercial split-card bullets — cream-muted, not dark olive */
.split-card.commercial p,
.split-card.commercial ul li {
  color: rgba(245, 241, 232, 0.78) !important;
}

.split-card.commercial h3 {
  color: var(--bp-cream) !important;
}

/* Path-card on dark — tighten readability */
.path-card-desc { color: rgba(245, 241, 232, 0.78); }

/* Homepage Service Categories grid — placeholder labels visible on cream */
.gallery-placeholder span:not(.ph-icon) {
  color: var(--bp-text);
}

/* Inline #fff text inside gallery placeholders — neutralize */
.gallery-placeholder span[style*="color:#fff"],
.gallery-placeholder span[style*="color: #fff"] {
  color: var(--bp-text) !important;
}

/* Inline #BDBDBD light-grey labels (gallery placeholder meta) — use faint text */
.gallery-placeholder span[style*="#BDBDBD"],
.gallery-placeholder span[style*="#bdbdbd"] {
  color: var(--bp-text-faint) !important;
}

/* Property-card "Not Sure?" dashed card on dark — readable cream + cream border */
.section-dark .property-card[style*="dashed"] {
  border-color: rgba(245, 241, 232, 0.20) !important;
}

.section-dark .property-card p[style*="grey-400"],
.section-dark .property-card p[style*="grey-600"],
.section-dark .property-card p[style*="grey-300"] {
  color: rgba(245, 241, 232, 0.72) !important;
}

/* Inline grey-400/600 paragraphs inside dark sections — force cream-muted */
.section-dark p[style*="grey-400"],
.section-dark p[style*="grey-600"] {
  color: rgba(245, 241, 232, 0.72) !important;
}

/* Inline #3A5500 dark-olive in chartreuse-tint callouts — flip to deep green */
[style*="#3A5500"],
[style*="#3a5500"] {
  color: var(--bp-green-deep) !important;
}

/* Property-card icon backgrounds — readable green tint instead of opacity-noise */
.property-card .card-icon {
  background: rgba(181, 232, 83, 0.18);
  color: var(--bp-green-deep);
}

/* Service-split residential card body — confirm readable on cream */
.split-card.residential h3 { color: var(--bp-green-deep); }
.split-card.residential p,
.split-card.residential ul li { color: var(--bp-text-soft); }

/* Trust chip on dark hero (commercial-page heroes that are dark) */
.section-dark .trust-chip {
  background: rgba(245, 241, 232, 0.06);
  border-color: rgba(245, 241, 232, 0.16);
  color: var(--bp-cream);
}

/* Skip link — preserve chartreuse on cream with deep green text */
.skip-link {
  background: var(--accent);
  color: var(--bp-green-deep);
}@charset "UTF-8";
/* =============================================================================
   PRIME OUTDOOR EXPERTS — Florida Heat (original)
   Warm cream + deep evergreen + HOT ORANGE. Bold conversion-focused.
   Fraunces (variable serif) + Inter Tight + DM Mono.
   Loaded after botanical-premium.css to override the editorial system.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   PALETTE
----------------------------------------------------------------------------- */
:root {
  /* Florida Heat palette */
  --fh-cream:        #FAF6EE;     /* warmer than botanical premium */
  --fh-cream-soft:   #F5EFE2;
  --fh-cream-deep:   #EFE9DC;
  --fh-bone:         #E8DFC8;

  --fh-evergreen:    #0F2818;     /* deep base for dark sections */
  --fh-evergreen-2:  #1A3826;     /* elevated dark */
  --fh-evergreen-3:  #264A36;
  --fh-charcoal:     #1A1A1A;     /* primary text */
  --fh-text:         #1A1A1A;
  --fh-text-soft:    #4A4843;
  --fh-text-faint:   #8B877F;

  /* Hot orange — primary CTA accent */
  --fh-orange:       #B95D3F;
  --fh-orange-deep:  #9B4830;
  --fh-orange-soft:  #F2D9CC;

  /* Trust gold (stars) */
  --fh-gold:         #E8B547;
  --fh-gold-deep:    #C99A2B;

  /* Sage support */
  --fh-sage:         #7A9A6F;
  --fh-sage-soft:    #B5C8AB;

  /* Typography */
  --fh-display:      'Fraunces', 'DM Serif Display', Georgia, serif;
  --fh-body:         'Inter Tight', 'Inter', system-ui, sans-serif;
  --fh-mono:         'DM Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* Override base tokens */
  --bp-cream:        var(--fh-cream);
  --bp-cream-soft:   var(--fh-cream-soft);
  --bp-cream-deep:   var(--fh-cream-deep);
  --bp-beige:        var(--fh-bone);
  --bp-tan:          rgba(26, 26, 26, 0.10);
  --bp-tan-line:     rgba(26, 26, 26, 0.18);

  --bp-green-deep:   var(--fh-evergreen);
  --bp-green-canopy: var(--fh-evergreen-2);
  --bp-green-leaf:   var(--fh-orange-deep);
  --bp-green-sage:   var(--fh-text-soft);

  --bp-text:         var(--fh-text);
  --bp-text-soft:    var(--fh-text-soft);
  --bp-text-faint:   var(--fh-text-faint);

  --accent:          var(--fh-orange);
  --accent-hover:    var(--fh-orange-deep);
  --accent-bright:   var(--fh-orange);
  --accent-glow:     rgba(185, 93, 63, 0.26);
  --accent-muted:    rgba(185, 93, 63, 0.10);
  --accent-tint:     var(--fh-orange-soft);
  --cta:             var(--fh-orange);
  --cta-hover:       var(--fh-orange-deep);

  /* Layout */
  --max-width:       1240px;
  --gutter:          28px;
  --radius:          10px;
  --radius-sm:       6px;
  --radius-lg:       18px;
}

/* -----------------------------------------------------------------------------
   BASE
----------------------------------------------------------------------------- */
body {
  background: var(--fh-cream);
  color: var(--fh-text);
  font-family: var(--fh-body);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  letter-spacing: -0.005em;
}

body::before {
  opacity: 0.4;
  mix-blend-mode: multiply;
}

h1, h2, h3, h4 {
  font-family: var(--fh-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  font-optical-sizing: auto;
  color: var(--fh-evergreen);
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--fh-orange-deep);
}

p {
  font-family: var(--fh-body);
  letter-spacing: -0.005em;
}

.lead {
  font-family: var(--fh-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--fh-text-soft);
  letter-spacing: -0.01em;
}

.section-eyebrow {
  font-family: var(--fh-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fh-orange-deep);
}

.section-eyebrow::before {
  background: var(--fh-orange-deep);
  width: 32px;
}

/* -----------------------------------------------------------------------------
   TOPBAR
----------------------------------------------------------------------------- */
.topbar {
  background: var(--fh-evergreen);
  border-bottom: none;
}

.topbar-rating .stars { color: var(--fh-gold); }

/* -----------------------------------------------------------------------------
   HEADER / NAV
----------------------------------------------------------------------------- */
.site-header {
  background: var(--fh-cream);
  border-bottom: 1px solid var(--bp-tan);
  backdrop-filter: blur(8px);
}

.site-header.scrolled {
  background: rgba(250, 246, 238, 0.94);
  box-shadow: 0 2px 24px -8px rgba(15, 40, 24, 0.10);
  border-bottom-color: transparent;
}

.nav-link { font-weight: 500; position: relative; transition: color 200ms ease; }

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--fh-orange);
  transition: width 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Logo */
.nav-logo-mark {
  background: url('../assets/prime_transparent.png') left center / contain no-repeat !important;
  width: 170px !important;
  height: 48px !important;
  border: none !important;
  padding: 0 !important;
}

.footer .nav-logo-mark {
  background: url('../assets/prime_trans_white.png') left center / contain no-repeat !important;
}

.nav-logo-text { display: none !important; }

/* -----------------------------------------------------------------------------
   BUTTONS — orange-first, dimensional
----------------------------------------------------------------------------- */
.btn {
  font-family: var(--fh-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary,
.hero .btn-primary {
  background: var(--fh-orange) !important;
  color: #FFFFFF !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 8px 24px -6px rgba(185, 93, 63, 0.40),
    0 2px 4px -1px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover,
.hero .btn-primary:hover {
  background: var(--fh-orange-deep) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.30) inset,
    0 14px 32px -6px rgba(185, 93, 63, 0.45),
    0 4px 8px -2px rgba(0, 0, 0, 0.12);
}

.btn-outline-dark,
.btn-outline-white {
  background: transparent !important;
  border: 1.5px solid var(--fh-evergreen) !important;
  color: var(--fh-evergreen) !important;
}

.section-dark .btn-outline-white,
.cta-band .btn-outline-white,
.footer .btn-outline-white {
  border-color: var(--fh-cream) !important;
  color: var(--fh-cream) !important;
}

.btn-outline-dark:hover,
.btn-outline-white:hover {
  background: var(--fh-evergreen) !important;
  color: var(--fh-cream) !important;
  transform: translateY(-2px);
}

.section-dark .btn-outline-white:hover,
.cta-band .btn-outline-white:hover {
  background: var(--fh-cream) !important;
  color: var(--fh-evergreen) !important;
}

.btn-arrow::after {
  content: '\2192  ';
  font-size: 16px;
}

/* -----------------------------------------------------------------------------
   HERO — Split layout (content left, photo right)
----------------------------------------------------------------------------- */
.hero {
  background: var(--fh-cream);
  color: var(--fh-text);
  min-height: auto;
  padding: 0;
  border-bottom: none;
  display: block;
  overflow: hidden;
}

.hero-bg { display: none; }

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

.hero.hero-split .hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 0;
  align-items: stretch;
  text-align: left;
  width: 100%;
}

.hero-content {
  padding: 64px 48px 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
  position: relative;
  z-index: 2;
  background: var(--fh-cream);
}

/* LEGACY split-hero photo rules — scoped to .hero-split ONLY so they do not
   cascade into .hero-editorial collage photos */
.hero-split .hero-photo {
  position: relative;
  min-height: 560px;
  background: var(--fh-evergreen);
  overflow: hidden;
}

.hero-split .hero-photo img,
.hero-split .hero-photo picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  animation: fh-ken-burns 20s ease-in-out infinite alternate;
}

@keyframes fh-ken-burns {
  from { transform: scale(1.0) translateX(0); }
  to   { transform: scale(1.08) translateX(-2%); }
}

.hero-split .hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    var(--fh-cream) 0%,
    var(--fh-cream) 4%,
    rgba(250, 246, 238, 0.0) 22%,
    rgba(15, 40, 24, 0.0) 55%,
    rgba(15, 40, 24, 0.20) 100%
  );
  pointer-events: none;
}

.hero h1 {
  color: var(--fh-evergreen);
  font-family: var(--fh-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}

.hero h1 em {
  color: var(--fh-orange-deep);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--fh-text-soft);
  max-width: 480px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 4px;
}

.hero-review-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--fh-cream-soft);
  border: 1px solid var(--bp-tan);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fh-text);
  width: fit-content;
}

.hero-review-strip .stars { color: var(--fh-gold); letter-spacing: 1px; }
.hero-review-strip strong { color: var(--fh-evergreen); font-weight: 700; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  border-top: 1px solid var(--bp-tan);
  padding-top: 16px;
}

.trust-chip {
  background: transparent;
  border: 1px solid var(--bp-tan);
  color: var(--fh-text-soft);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: -0.005em;
}

.hero-seo-text { display: none; }

@media (max-width: 900px) {
  .hero.hero-split .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    min-height: 320px;
    order: -1;
  }
  .hero-content {
    padding: 32px 20px 48px;
  }
  .hero h1 {
    font-size: clamp(36px, 9vw, 56px);
  }
}

/* -----------------------------------------------------------------------------
   MARQUEE
----------------------------------------------------------------------------- */
.marquee {
  background: var(--fh-evergreen);
  color: var(--fh-cream);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: fh-marquee 40s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fh-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.92);
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  background: var(--fh-orange);
  border-radius: 50%;
}

.marquee-item .star { color: var(--fh-gold); }

@keyframes fh-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee-track { animation-play-state: paused; }

/* -----------------------------------------------------------------------------
   QUOTE WIZARD
----------------------------------------------------------------------------- */
.quote-wizard {
  background: linear-gradient(135deg, var(--fh-cream-soft) 0%, var(--fh-cream-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--bp-tan);
  box-shadow: 0 24px 60px -16px rgba(15, 40, 24, 0.12);
  position: relative;
  overflow: hidden;
}

.quote-wizard::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--fh-orange-soft) 0%, transparent 70%);
  pointer-events: none;
}

.qw-eyebrow {
  font-family: var(--fh-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fh-orange-deep);
  margin-bottom: 8px;
}

.qw-title {
  font-family: var(--fh-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fh-evergreen);
  margin-bottom: 28px;
}

.qw-title em {
  font-style: italic;
  color: var(--fh-orange-deep);
}

.qw-step { margin-bottom: 24px; }

.qw-step-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fh-text);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.qw-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.qw-option {
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1.5px solid var(--bp-tan);
  border-radius: var(--radius);
  font-family: var(--fh-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fh-text);
  cursor: pointer;
  transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  user-select: none;
}

.qw-option:hover {
  border-color: var(--fh-orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -2px rgba(185, 93, 63, 0.16);
}

.qw-option.selected {
  background: var(--fh-evergreen);
  border-color: var(--fh-evergreen);
  color: var(--fh-cream);
}

.qw-result {
  margin-top: 32px;
  padding: 24px;
  background: var(--fh-evergreen);
  color: var(--fh-cream);
  border-radius: var(--radius);
  text-align: center;
}

.qw-result-label {
  font-family: var(--fh-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.65);
  margin-bottom: 6px;
}

.qw-result-price {
  font-family: var(--fh-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}

.qw-result-price em {
  color: var(--fh-orange);
  font-style: normal;
  font-size: 24px;
  margin-left: 4px;
}

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

@media (max-width: 600px) {
  .quote-wizard { padding: 24px; }
  .qw-title { font-size: 24px; }
  .qw-result-price { font-size: 36px; }
}

/* -----------------------------------------------------------------------------
   STAT STRIP — animated counters
----------------------------------------------------------------------------- */
.stat-strip {
  background: var(--fh-cream);
  padding: 32px 0;
  border-bottom: 1px solid var(--bp-tan);
}

.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}

.stat-strip-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--bp-tan);
}

.stat-strip-item:last-child { border-right: none; }

.stat-strip-num {
  font-family: var(--fh-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fh-evergreen);
}

.stat-strip-num em {
  font-style: italic;
  color: var(--fh-orange-deep);
  font-size: 28px;
  margin-left: 2px;
}

.stat-strip-label {
  font-family: var(--fh-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fh-text-soft);
  margin-top: 6px;
}

@media (max-width: 600px) {
  .stat-strip-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip-item:nth-child(2n) { border-right: none; }
  .stat-strip-num { font-size: 32px; }
}

.proof-bar { display: none; }

/* -----------------------------------------------------------------------------
   STICKY FLOATING CTAs
----------------------------------------------------------------------------- */
.fh-floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--fh-orange);
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--fh-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow:
    0 12px 32px -8px rgba(185, 93, 63, 0.45),
    0 4px 12px -2px rgba(0, 0, 0, 0.18);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.fh-floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.fh-floating-cta:hover {
  background: var(--fh-orange-deep);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.fh-floating-cta::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.30);
  animation: fh-pulse 2s ease-in-out infinite;
}

@keyframes fh-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.30); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.0); }
}

.fh-availability {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--fh-evergreen);
  color: var(--fh-cream);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-family: var(--fh-body);
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 24px -6px rgba(15, 40, 24, 0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.fh-availability.visible { opacity: 1; transform: translateY(0); }

.fh-availability-dot {
  width: 8px;
  height: 8px;
  background: var(--fh-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(185, 93, 63, 0.6);
  animation: fh-pulse-availability 2.4s ease-out infinite;
}

@keyframes fh-pulse-availability {
  0%   { box-shadow: 0 0 0 0 rgba(185, 93, 63, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(185, 93, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 93, 63, 0); }
}

.fh-availability-meta {
  font-family: var(--fh-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 246, 238, 0.65);
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 600px) {
  .fh-availability { display: none; }
  .fh-floating-cta { bottom: 18px; right: 18px; padding: 12px 18px; font-size: 14px; }
}

/* -----------------------------------------------------------------------------
   SECTIONS
----------------------------------------------------------------------------- */
.section {
  background: var(--fh-cream);
  padding-block: 96px;
}

.section-grey {
  background: linear-gradient(180deg, var(--fh-cream-deep) 0%, var(--fh-bone) 100%);
}

.section-grey::before { display: none; }

.section-dark {
  background: linear-gradient(180deg, var(--fh-evergreen) 0%, var(--fh-evergreen-2) 50%, var(--fh-evergreen) 100%);
  color: var(--fh-cream);
}

.section-dark p { color: rgba(250, 246, 238, 0.78); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--fh-cream); }
.section-dark .section-eyebrow { color: var(--fh-orange); }
.section-dark .section-eyebrow::before { background: var(--fh-orange); }

/* -----------------------------------------------------------------------------
   PATH-CHOICE / SERVICE-SPLIT
----------------------------------------------------------------------------- */
.path-card {
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid rgba(250, 246, 238, 0.14);
  color: var(--fh-cream);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: var(--fh-orange);
  background: rgba(185, 93, 63, 0.06);
}

.path-card-title { color: var(--fh-cream); }
.path-card-desc { color: rgba(250, 246, 238, 0.74); }
.path-card-cta { color: var(--fh-orange); font-weight: 600; }

.split-card.commercial {
  background: linear-gradient(160deg, var(--fh-evergreen) 0%, var(--fh-evergreen-2) 100%);
  color: var(--fh-cream);
  border: 1px solid rgba(250, 246, 238, 0.10);
}

.split-card.residential {
  background: var(--fh-cream-soft);
  color: var(--fh-text);
  border: 1px solid var(--bp-tan);
  box-shadow: 0 8px 32px -8px rgba(15, 40, 24, 0.10);
}

.split-tag {
  background: var(--fh-orange);
  color: #FFFFFF;
}

.split-card.commercial .split-cta { color: var(--fh-orange); }
.split-card.residential .split-cta { color: var(--fh-orange-deep); }

/* -----------------------------------------------------------------------------
   GALLERY ITEMS — Service Category Cards (homepage Browse by Service)
   Photo-led with editorial overlay, hover-zoom, terracotta accent line draws in.
----------------------------------------------------------------------------- */
.gallery-item {
  position: relative;
  background: var(--fh-evergreen);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 380ms cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}

.gallery-item picture,
.gallery-item img {
  transition: transform 700ms cubic-bezier(0.2, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 56px -16px rgba(15, 40, 24, 0.30),
    0 8px 16px -4px rgba(15, 40, 24, 0.10);
}

.gallery-item:hover img { transform: scale(1.06); }

/* Terracotta accent line — animates from left on hover */
.gallery-item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--fh-orange);
  z-index: 3;
  transition: width 420ms cubic-bezier(0.7, 0, 0.3, 1);
}

.gallery-item:hover::before { width: 100%; }

.gallery-item .gallery-placeholder {
  background: linear-gradient(135deg, var(--fh-evergreen) 0%, var(--fh-evergreen-3) 100%);
  border: none;
  color: var(--fh-cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  position: absolute;
  inset: 0;
}

.gallery-item .gallery-placeholder .ph-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(250, 246, 238, 0.10);
  border: 1px solid rgba(250, 246, 238, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fh-cream);
  backdrop-filter: blur(8px);
}

.gallery-item .gallery-placeholder > span:not(.ph-icon) {
  font-family: var(--fh-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fh-cream);
  line-height: 1.1;
}

/* Editorial gradient at bottom for text legibility on real photos */
.gallery-overlay {
  background: linear-gradient(180deg, transparent 35%, rgba(15, 40, 24, 0.65) 70%, rgba(15, 40, 24, 0.95) 100%);
}

.gallery-label {
  color: var(--fh-cream);
  font-family: var(--fh-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* -----------------------------------------------------------------------------
   COMMERCIAL VERTICAL CARDS (.card) — modern editorial treatment
   Cream titles (NOT terracotta), terracotta arrow with translation animation,
   gradient border that animates on hover, lift + glow.
----------------------------------------------------------------------------- */
.section-dark .card,
.path-card,
.diff-item {
  position: relative;
  background: linear-gradient(160deg, var(--fh-evergreen) 0%, var(--fh-evergreen-2) 100%);
  border: 1px solid rgba(250, 246, 238, 0.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 320ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  isolation: isolate;
}

/* Animated gradient border on hover */
.section-dark .card::before,
.path-card::before,
.diff-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(185, 93, 63, 0) 0%,
    rgba(185, 93, 63, 0) 30%,
    var(--fh-orange) 50%,
    rgba(185, 93, 63, 0) 70%,
    rgba(185, 93, 63, 0) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 380ms ease;
  pointer-events: none;
  z-index: 1;
}

.section-dark .card:hover::before,
.path-card:hover::before,
.diff-item:hover::before { opacity: 1; }

.section-dark .card:hover,
.path-card:hover,
.diff-item:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 93, 63, 0.35);
  box-shadow:
    0 24px 56px -16px rgba(15, 40, 24, 0.40),
    0 4px 12px -2px rgba(185, 93, 63, 0.18);
}

/* Card title — cream, NOT orange/terracotta */
.section-dark .card h3,
.section-dark .card h4 {
  font-family: var(--fh-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fh-cream) !important;
  margin: 0 0 12px;
}

/* Card body */
.section-dark .card p {
  font-family: var(--fh-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.78);
  margin: 0 0 20px;
}

/* Mono caps editorial eyebrow inside card */
.section-dark .card .section-eyebrow,
.path-card .section-eyebrow,
.diff-item .section-eyebrow {
  font-family: var(--fh-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fh-orange);
  margin-bottom: 10px;
  display: inline-block;
}

/* Card icon — subtle dimensional tile, not flat color block */
.section-dark .card-icon,
.path-card .card-icon,
.diff-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(185, 93, 63, 0.20) 0%, rgba(185, 93, 63, 0.08) 100%);
  border: 1px solid rgba(185, 93, 63, 0.30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fh-orange);
  margin-bottom: 20px;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
              background 280ms ease;
}

.section-dark .card:hover .card-icon,
.path-card:hover .card-icon,
.diff-item:hover .diff-icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(185, 93, 63, 0.30) 0%, rgba(185, 93, 63, 0.14) 100%);
}

/* Card arrow CTA at bottom — terracotta, animated translation on hover */
.section-dark .card .card-cta,
.section-dark .card a[href]:not(.btn),
.path-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-family: var(--fh-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fh-orange);
  text-decoration: none;
  transition: gap 240ms cubic-bezier(0.4, 0, 0.2, 1), color 240ms ease;
  position: relative;
  z-index: 2;
}

.section-dark .card:hover .card-cta,
.section-dark .card:hover a[href]:not(.btn),
.path-card:hover .path-card-cta {
  gap: 16px;
  color: var(--fh-cream);
}

/* (Arrow translation is handled by HTML-text-arrow + gap animation on the parent
   inline-flex container — adding ::after would duplicate since templates already
   include a "→" character in the text content.) */

/* On cream background cards (residential split, etc.) keep original treatment */
.split-card.residential {
  background: var(--fh-cream-soft);
  border: 1px solid var(--bp-tan);
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.split-card.residential:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(15, 40, 24, 0.18);
  border-color: rgba(185, 93, 63, 0.30);
}

/* Reveal-on-scroll animation for cards */
.gallery-item.fade-in,
.card.fade-in,
.path-card.fade-in,
.diff-item.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.fade-in.visible,
.card.fade-in.visible,
.path-card.fade-in.visible,
.diff-item.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor-tilt parallax — populated by JS via CSS variables --tilt-x and --tilt-y */
.tilt-card {
  transform: perspective(1000px)
             rotateX(calc(var(--tilt-y, 0) * 1deg))
             rotateY(calc(var(--tilt-x, 0) * 1deg))
             translateY(var(--tilt-lift, 0));
  transition: transform 200ms cubic-bezier(0.2, 0, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

/* -----------------------------------------------------------------------------
   STAT-HERO (15-20% block)
----------------------------------------------------------------------------- */
.stat-hero-section {
  background: linear-gradient(180deg, var(--fh-cream) 0%, var(--fh-cream-deep) 100%);
}

.stat-hero-number {
  color: var(--fh-evergreen);
  font-family: var(--fh-display);
  font-weight: 500;
}

.stat-hero-label { color: var(--fh-text); }
.stat-hero-label em { color: var(--fh-orange-deep); }
.stat-hero-source { color: var(--fh-text-faint); }

/* -----------------------------------------------------------------------------
   TESTIMONIALS
----------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--fh-cream-soft);
  border: 1px solid var(--bp-tan);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 250ms ease;
}

.testimonial-card:hover {
  border-color: var(--fh-orange);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -8px rgba(15, 40, 24, 0.12);
}

.testimonial-stars { color: var(--fh-gold); font-size: 18px; letter-spacing: 2px; }

.testimonial-text {
  font-family: var(--fh-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--fh-text);
  margin: 16px 0 24px;
  letter-spacing: -0.015em;
}

.author-avatar {
  background: var(--fh-orange);
  color: #FFFFFF;
  font-weight: 700;
}

.source-badge.source-google {
  background: var(--fh-cream-deep);
  color: var(--fh-text);
  border: 1px solid var(--bp-tan);
}

/* -----------------------------------------------------------------------------
   CTA BAND
----------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--fh-evergreen) 0%, var(--fh-evergreen-3) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(185, 93, 63, 0.13) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--fh-display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.cta-band-phone {
  color: var(--fh-orange);
  font-weight: 600;
  font-size: 18px;
}

/* -----------------------------------------------------------------------------
   FOOTER
----------------------------------------------------------------------------- */
.footer {
  background: var(--fh-evergreen);
  color: var(--fh-cream);
  border-top: 1px solid rgba(250, 246, 238, 0.06);
}

.footer-brand-desc { color: rgba(250, 246, 238, 0.72); }

.footer-col h5 {
  color: var(--fh-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.footer-col ul a { color: rgba(250, 246, 238, 0.78); }
.footer-col ul a:hover { color: var(--fh-orange); }

.footer-phone { color: var(--fh-cream); }
.footer-phone:hover { color: var(--fh-orange); }
.footer-email { color: rgba(250, 246, 238, 0.78); }

.social-link {
  background: rgba(250, 246, 238, 0.08);
  color: var(--fh-cream);
  border: 1px solid rgba(250, 246, 238, 0.12);
}

.social-link:hover {
  background: var(--fh-orange);
  color: #FFFFFF;
  border-color: var(--fh-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.10);
  color: rgba(250, 246, 238, 0.55);
}

.footer-bottom a { color: rgba(250, 246, 238, 0.72); }
.footer-bottom a:hover { color: var(--fh-orange); }

/* -----------------------------------------------------------------------------
   MOBILE STICKY BAR
----------------------------------------------------------------------------- */
.mobile-sticky-bar {
  background: var(--fh-evergreen);
  border-top: 1px solid rgba(250, 246, 238, 0.10);
  padding: 8px;
  gap: 8px;
  display: flex;
}

.sticky-call {
  flex: 1;
  background: transparent;
  color: var(--fh-cream);
  border: 1px solid rgba(250, 246, 238, 0.20);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  font-weight: 600;
}

.sticky-quote {
  flex: 1;
  background: var(--fh-orange);
  color: #FFFFFF;
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  font-weight: 700;
}

/* -----------------------------------------------------------------------------
   FADE-IN
----------------------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1), transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* -----------------------------------------------------------------------------
   SECTION INTRO — Refined editorial scale (down from 52px)
----------------------------------------------------------------------------- */
.section-intro h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.section-intro .lead {
  font-size: clamp(15px, 1.1vw, 18px);
  font-style: normal;
  font-family: var(--fh-body);
  font-weight: 400;
  color: var(--fh-text-soft);
  line-height: 1.5;
  letter-spacing: -0.005em;
}

/* All section eyebrows demoted to BRASS-DEEP (was terracotta). Coral only on CTAs. */
.section-eyebrow,
.qw-eyebrow {
  color: #8A6F35 !important;          /* warm brass */
  font-family: var(--fh-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  background: #C9A961 !important;
  width: 28px;
  height: 1px;
}

.section-dark .section-eyebrow,
.section-dark .qw-eyebrow {
  color: #D6BD7E !important;           /* lighter brass on dark */
}

.section-dark .section-eyebrow::before {
  background: #C9A961 !important;
}

/* =============================================================================
   SENIOR DESIGN OVERHAUL — patches for clean / modern / sophisticated
   ============================================================================= */

/* -----------------------------------------------------------------------------
   FIX: .diff-item cards — cream text on dark green (was unreadable)
   Demote the giant 01/02/03/04 numerals. Use !important to override base styles.css.
----------------------------------------------------------------------------- */
.section .diff-item,
.diff-item {
  background: linear-gradient(160deg, var(--fh-evergreen) 0%, var(--fh-evergreen-2) 100%) !important;
  border: 1px solid rgba(250, 246, 238, 0.10) !important;
  border-radius: 16px !important;
  padding: 36px 32px !important;
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: 44px 1fr !important;
  grid-template-rows: auto auto !important;
  gap: 16px 20px !important;
  align-items: start !important;
  isolation: isolate;
}

/* Demoted numeral — TINY mono-caps in brass, NOT giant */
.section .diff-item .diff-num,
.diff-item .diff-num {
  grid-column: 2 !important;
  grid-row: 1 !important;
  font-family: var(--fh-mono) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  color: #C9A961 !important;
  font-style: normal !important;
  font-variant: normal !important;
  display: inline-block !important;
  margin: 0 !important;
  align-self: end !important;
  position: relative !important;
  padding-left: 28px !important;
  opacity: 0.9 !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  -webkit-text-fill-color: #C9A961 !important;
  text-transform: uppercase !important;
}

.section .diff-item .diff-num::before,
.diff-item .diff-num::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 1px !important;
  background: #C9A961 !important;
  opacity: 0.7 !important;
}

/* Icon — refined small tile */
.section .diff-item .diff-icon,
.diff-item .diff-icon {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.18) 0%, rgba(201, 169, 97, 0.06) 100%) !important;
  border: 1px solid rgba(201, 169, 97, 0.30) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #D6BD7E !important;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin: 0 !important;
  padding: 0 !important;
}

.section .diff-item .diff-icon svg,
.diff-item .diff-icon svg {
  color: #D6BD7E !important;
  width: 22px !important;
  height: 22px !important;
}

.diff-item:hover .diff-icon { transform: scale(1.06) rotate(-2deg) !important; }

/* Content takes the right column */
.section .diff-item .diff-content,
.diff-item .diff-content {
  grid-column: 2 !important;
  grid-row: 2 !important;
}

.section .diff-item h3,
.section .diff-item h4,
.section .diff-item .diff-content h3,
.section .diff-item .diff-content h4,
.diff-item h3,
.diff-item h4,
.diff-content h3,
.diff-content h4 {
  font-family: var(--fh-display) !important;
  font-weight: 500 !important;
  font-size: 22px !important;
  line-height: 1.15 !important;
  letter-spacing: -0.022em !important;
  color: var(--fh-cream) !important;
  -webkit-text-fill-color: var(--fh-cream) !important;
  margin: 0 0 10px !important;
  text-shadow: none !important;
  background: transparent !important;
  -webkit-background-clip: initial !important;
          background-clip: initial !important;
}

.section .diff-item p,
.section .diff-item .diff-content p,
.diff-item p,
.diff-content p {
  font-family: var(--fh-body) !important;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  color: rgba(250, 246, 238, 0.80) !important;
  -webkit-text-fill-color: rgba(250, 246, 238, 0.80) !important;
  margin: 0 !important;
  letter-spacing: -0.005em !important;
}

/* On HOVER — animated gradient border + lift */
.diff-item {
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 320ms ease,
              box-shadow 320ms ease;
}

.diff-item:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 93, 63, 0.40);
  box-shadow:
    0 24px 56px -16px rgba(15, 40, 24, 0.40),
    0 4px 12px -2px rgba(185, 93, 63, 0.18);
}

/* Single line accent fades in from left edge on hover */
.diff-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 60%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--fh-orange) 30%,
    var(--fh-orange) 70%,
    transparent 100%
  );
  transition: width 360ms cubic-bezier(0.7, 0, 0.3, 1);
}

.diff-item:hover::after { width: 3px; }

/* -----------------------------------------------------------------------------
   FIX: .section-dark .card — same treatment, cream text
----------------------------------------------------------------------------- */
.section-dark .card,
.section-dark .card h3,
.section-dark .card h4 {
  color: var(--fh-cream) !important;
}

.section-dark .card h3,
.section-dark .card h4 {
  font-family: var(--fh-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 0 0 12px;
}

.section-dark .card p {
  color: rgba(250, 246, 238, 0.78) !important;
}

/* -----------------------------------------------------------------------------
   PATH CARDS (homepage "What do you need?") — match the diff-item refinement
----------------------------------------------------------------------------- */
.path-card {
  padding: 36px 32px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--fh-evergreen) 0%, var(--fh-evergreen-2) 100%);
  border: 1px solid rgba(250, 246, 238, 0.10);
}

.path-card-title {
  font-family: var(--fh-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--fh-cream);
  display: block;
  margin-bottom: 12px;
}

.path-card-desc {
  font-family: var(--fh-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.78);
  display: block;
  margin-bottom: 20px;
}

.path-card-cta {
  font-family: var(--fh-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fh-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 280ms cubic-bezier(0.4, 0, 0.2, 1), color 240ms ease;
}

.path-card:hover .path-card-cta {
  gap: 14px;
  color: var(--fh-cream);
}

/* -----------------------------------------------------------------------------
   THIN BRASS DIVIDER between major sections — editorial rhythm
----------------------------------------------------------------------------- */
.section + .section,
.section + .section-grey,
.section-grey + .section,
.stat-strip + .section {
  position: relative;
}

.section + .section::before,
.section + .section-grey::before,
.section-grey + .section::before,
.stat-strip + .section::before {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background: rgba(201, 169, 97, 0.30);
  margin: 0 auto 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -1px);
}

/* Section padding rhythm — alternate breathy / tight */
.section { padding-block: 96px; }
.section.section-tight { padding-block: 72px; }
.section.section-airy { padding-block: 144px; }

/* -----------------------------------------------------------------------------
   QUOTE WIZARD — refine into editorial moment
----------------------------------------------------------------------------- */
.quote-wizard {
  padding: 56px 48px 48px;
  border-radius: 20px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 32px 80px -24px rgba(15, 40, 24, 0.16);
  position: relative;
}

/* Top brass thin-line accent */
.quote-wizard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #C9A961 50%, transparent 100%);
}

.qw-title {
  font-family: var(--fh-display);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fh-evergreen);
  margin-bottom: 32px;
}

.qw-step-label {
  font-family: var(--fh-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fh-text-soft);
  margin-bottom: 12px;
}

/* -----------------------------------------------------------------------------
   STAT STRIP — tighten typography
----------------------------------------------------------------------------- */
.stat-strip {
  padding: 64px 0;
}

.stat-strip-num {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.stat-strip-num em {
  font-style: italic;
  color: var(--fh-orange-deep);
  font-size: 60%;
  margin-left: 4px;
  font-weight: 500;
}

.stat-strip-label {
  font-family: var(--fh-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fh-text-soft);
  margin-top: 14px;
}

/* -----------------------------------------------------------------------------
   STAT-HERO ("15-20%" big number block) — editorial restraint
----------------------------------------------------------------------------- */
.stat-hero-section { padding-block: 144px; }

.stat-hero-section .section-eyebrow {
  margin-bottom: 32px;
}

.stat-hero-number {
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--fh-evergreen);
  margin-bottom: 24px;
}

.stat-hero-label {
  font-family: var(--fh-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--fh-text);
  letter-spacing: -0.01em;
  max-width: 600px;
  margin: 0 auto 16px;
}

.stat-hero-label em {
  font-style: italic;
  color: var(--fh-orange-deep);
}

.stat-hero-source {
  font-family: var(--fh-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fh-text-faint);
}

/* -----------------------------------------------------------------------------
   SERVICE-SPLIT — tighten H2 scale, refined card padding
----------------------------------------------------------------------------- */
section[aria-labelledby="service-split-heading"] .section-intro h2,
section[aria-labelledby="path-choice-heading"] h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.split-card {
  padding: 40px 36px 32px;
  border-radius: 20px;
}

.split-card h3 {
  font-family: var(--fh-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.split-card p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}

/* -----------------------------------------------------------------------------
   TESTIMONIALS — quieter, editorial pull-quote treatment
----------------------------------------------------------------------------- */
.testimonial-card {
  padding: 36px 32px;
  border-radius: 16px;
  background: var(--fh-cream-soft);
  border: 1px solid rgba(26, 26, 26, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';                  /* opening quote mark */
  font-family: var(--fh-display);
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  color: rgba(185, 93, 63, 0.18);
  position: absolute;
  top: 12px;
  left: 24px;
  pointer-events: none;
}

.testimonial-stars {
  position: relative;
  z-index: 2;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--fh-gold);
}

.testimonial-text {
  position: relative;
  z-index: 2;
  font-family: var(--fh-display);
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.5;
  color: var(--fh-text);
  letter-spacing: -0.01em;
  margin: 16px 0 20px;
}

/* -----------------------------------------------------------------------------
   HERO H1 — refined Fraunces with tight tracking + opsz hint
----------------------------------------------------------------------------- */
.hero h1 {
  font-family: var(--fh-display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 96;
  color: var(--fh-evergreen);
  margin: 0;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--fh-orange-deep);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fh-text-soft);
  letter-spacing: -0.005em;
}

.hero-trust {
  margin-top: 20px;
  padding-top: 20px;
}

.trust-chip {
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.14);
  color: var(--fh-text-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 7px 13px;
  border-radius: 6px;
}

/* -----------------------------------------------------------------------------
   CTA BAND — quieter, refined
----------------------------------------------------------------------------- */
.cta-band {
  padding-block: 96px;
}

.cta-band h2 {
  font-family: var(--fh-display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.cta-band p {
  font-family: var(--fh-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(250, 246, 238, 0.82);
  max-width: 560px;
  margin: 16px auto 32px;
}

/* =============================================================================
   ⌬  MODERN OVERHAUL — APR 2026
   1. Hero typeface → Newsreader (loaded in <head>)
   2. Logo SVG mark + wordmark (PRIME OUTDOOR EXPERTS)
   3. Modern icon refinements
   4. Aesthetic polish — vignettes, hairlines, micro-shadows
   ============================================================================= */

:root {
  /* New: trust-first display font for hero & headline moments.
     Newsreader is a variable serif with an opsz axis (6..72), italic, and
     weights 200–800. Has the gravitas of NYT / Aman Resorts editorial. */
  --fh-hero:        'Newsreader', 'Fraunces', Georgia, serif;
  --fh-wordmark:    'Inter Tight', 'Inter', system-ui, sans-serif;
}

/* ============================================================
   1. HERO TYPEFACE — Newsreader takes over the H1 only
   ============================================================ */
.hero h1,
.hero-content h1 {
  font-family: var(--fh-hero) !important;
  font-weight: 400 !important;
  font-size: clamp(46px, 6.4vw, 92px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.028em !important;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 60 !important;
  color: var(--fh-evergreen) !important;
  text-wrap: balance;
}

.hero h1 em,
.hero-content h1 em {
  font-family: var(--fh-hero) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-variation-settings: "opsz" 72 !important;
  color: var(--fh-orange-deep) !important;
  letter-spacing: -0.012em;
}

/* ============================================================
   2. LOGO — SVG mark + wordmark restored
   ============================================================ */
/* Override the PNG-based mark and the hidden wordmark from earlier */
.nav-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  color: var(--fh-evergreen) !important;
  transition: opacity 200ms ease;
}

.nav-logo:hover { opacity: 0.78; }

.nav-logo-mark {
  /* Replace PNG background with SVG mark */
  background: none !important;
  width: 36px !important;
  height: 36px !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--fh-evergreen) !important;
  font-size: 0 !important;
  line-height: 0 !important;
  flex-shrink: 0;
}

.nav-logo-mark::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: url('../assets/logo-mark.svg') center / contain no-repeat;
          mask: url('../assets/logo-mark.svg') center / contain no-repeat;
}

/* Bring the wordmark BACK */
.nav-logo-text {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  line-height: 1 !important;
}

.nav-logo-name {
  font-family: var(--fh-wordmark) !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--fh-evergreen) !important;
  line-height: 1.1 !important;
  white-space: nowrap;
}

.nav-logo-tagline {
  font-family: var(--fh-mono) !important;
  font-weight: 400 !important;
  font-size: 9.5px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--fh-text-faint) !important;
  margin-top: 4px !important;
  line-height: 1 !important;
}

/* Footer wordmark on dark — invert colors */
.footer .nav-logo,
.footer .nav-logo:hover { color: var(--fh-cream) !important; }
.footer .nav-logo-mark { color: var(--fh-cream) !important; }
.footer .nav-logo-mark::before { background: var(--fh-cream) !important; }
.footer .nav-logo-name { color: var(--fh-cream) !important; }
.footer .nav-logo-tagline { color: rgba(250, 246, 238, 0.55) !important; }

/* On small screens, hide tagline to save room (mark + name still visible) */
@media (max-width: 640px) {
  .nav-logo-tagline { display: none !important; }
  .nav-logo-name { font-size: 13px !important; letter-spacing: 0.15em !important; }
  .nav-logo-mark { width: 32px !important; height: 32px !important; }
}

/* ============================================================
   3. MODERN ICON REFINEMENTS — accommodate 1.5px stroke
   ============================================================ */
/* Default: SVG icons should NOT inherit any old fills/strokes */
.icon-svg, .ph-icon { color: currentColor; }

/* Diff/Card icon tiles — slightly larger inner glyph for new line weight */
.section .diff-item .diff-icon svg,
.diff-item .diff-icon svg { width: 22px !important; height: 22px !important; stroke-width: 1.5 !important; }

.section-dark .card-icon svg,
.path-card .card-icon svg { width: 22px; height: 22px; }

/* Mega-menu icons — refined tint */
.mega-grid .icon { color: var(--fh-orange); opacity: 0.85; }
.mega-grid a:hover .icon { opacity: 1; }

/* Trust-chip icons (if used) — quiet gold */
.trust-chip svg { width: 14px; height: 14px; color: var(--fh-gold-deep); }

/* ============================================================
   4. AESTHETIC POLISH
   ============================================================ */

/* 4a — Split-hero photo: subtle vignette + cream-tinted edge (LEGACY, scoped) */
.hero-split .hero-photo {
  position: relative;
  isolation: isolate;
}

.hero-split .hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* warm-light vignette top-left */
    radial-gradient(120% 90% at 18% 12%, rgba(250, 246, 238, 0.18), transparent 55%),
    /* deep shadow corner bottom-right for depth */
    radial-gradient(140% 100% at 100% 100%, rgba(15, 40, 24, 0.28), transparent 55%);
  mix-blend-mode: multiply;
  z-index: 1;
  border-radius: inherit;
}

.hero-split .hero-photo img {
  filter: contrast(1.04) saturate(1.05);
}

/* 4b — Trust chips: more substantial, tactile */
.hero-trust .trust-chip,
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px !important;
  font-family: var(--fh-mono) !important;
  font-size: 10.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  color: var(--fh-text-soft) !important;
  background: rgba(15, 40, 24, 0.04) !important;
  border: 1px solid rgba(15, 40, 24, 0.10) !important;
  border-radius: 100px !important;
  transition: all 200ms ease;
}

.hero-trust .trust-chip::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fh-orange);
  flex-shrink: 0;
}

.hero-trust .trust-chip:hover {
  background: rgba(15, 40, 24, 0.07) !important;
  border-color: rgba(15, 40, 24, 0.18) !important;
  color: var(--fh-evergreen) !important;
}

/* 4c — Section dividers: ultra-thin brass hairlines between sections */
.section + .section:not(.section-dark):not(.cta-band)::before {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.45), transparent);
  margin: 0 auto 64px;
}

/* 4d — Card hover: refined lift with hairline accent */
.section-dark .card,
.path-card,
.diff-item,
.split-card.residential {
  position: relative;
  overflow: hidden;
}

.section-dark .card::after,
.path-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(232, 181, 71, 0.0), rgba(232, 181, 71, 0.0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: all 320ms ease;
  opacity: 0;
}

.section-dark .card:hover::after,
.path-card:hover::after {
  opacity: 1;
  background: linear-gradient(135deg, rgba(232, 181, 71, 0.55), rgba(185, 93, 63, 0.35)) border-box;
}

/* 4e — Buttons: micro-refinement of arrow CTA */
.btn-arrow::after {
  content: '→';
  display: inline-block;
  margin-left: 8px;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* 4f — Subtle grain overlay on dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url('../assets/noise.png');
  z-index: 0;
  mix-blend-mode: overlay;
}

.section-dark { position: relative; }
.section-dark > * { position: relative; z-index: 1; }

/* 4g — Selection color */
::selection {
  background: var(--fh-orange);
  color: var(--fh-cream);
}

/* 4h — Smooth scroll behavior site-wide */
html { scroll-behavior: smooth; }

/* 4i — Nav slight upgrade: more breathing room, refined active state */
.site-header .container { padding-block: 18px; }
.nav-link { font-size: 14.5px; letter-spacing: 0.005em; }

/* 4j — Section eyebrow: tighten the brass line + glyph */
.section-eyebrow,
.diff-item .section-eyebrow,
.path-card .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px !important;
  height: 1px !important;
  background: var(--fh-orange-deep) !important;
  position: static !important;
  transform: none !important;
  flex-shrink: 0;
}

/* 4k — Stat hero number — slightly more refined */
.stat-hero-number {
  font-family: var(--fh-hero) !important;
  font-weight: 300 !important;
  font-variation-settings: "opsz" 72 !important;
  letter-spacing: -0.04em !important;
}

/* 4l — Marquee: tighten the dot-separator polish */
.marquee-item .dot {
  width: 4px;
  height: 4px;
  background: var(--fh-orange);
  border-radius: 50%;
  display: inline-block;
  margin-right: 14px;
  vertical-align: middle;
  opacity: 0.85;
}

/* 4m — Footer logo wider for legibility on dark */
.footer .nav-logo-mark { width: 40px !important; height: 40px !important; }
.footer .nav-logo-name { font-size: 15px !important; }

/* 4n — Refined focus rings for accessibility */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--fh-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================================
   ⌬⌬  HERO — EDITORIAL CINEMATIC (APR 2026 v2)
   Replaces split text/photo with magazine-collage layout:
   - Massive Newsreader display headline as the primary visual
   - 3 photo "punctuation" tiles floating around the headline
   - Cursor parallax + word-stagger reveal + Ken Burns + pulse dot
   - Atmospheric mesh gradient + subtle grain backdrop
   ============================================================================= */

.hero.hero-editorial {
  position: relative !important;
  isolation: isolate;
  background: var(--fh-cream) !important;
  padding: 0 !important;
  overflow: hidden !important;
  min-height: 96vh !important;
  display: flex !important;
  align-items: stretch !important;
}

/* Nuke any leftover split-grid styles */
.hero.hero-editorial .hero-inner { display: contents !important; }
.hero.hero-editorial > * { width: 100%; }

/* ----- ATMOSPHERE LAYER ----- */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(700px 520px at 78% 18%, rgba(232, 181, 71, 0.14), transparent 58%),
    radial-gradient(640px 480px at 14% 82%, rgba(122, 154, 111, 0.12), transparent 58%),
    radial-gradient(900px 700px at 50% 50%, rgba(185, 93, 63, 0.05), transparent 70%),
    radial-gradient(500px 400px at 92% 88%, rgba(15, 40, 24, 0.06), transparent 65%);
  animation: fh-mesh-drift 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes fh-mesh-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(2%, -1.5%) scale(1.04); }
  100% { transform: translate(-1.5%, 2%) scale(1.06); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url('../assets/noise.png');
}

/* Watermark logo mark — extreme bottom-right, very faint */
.hero-mark-watermark {
  position: absolute;
  bottom: -50px;
  right: -40px;
  width: 380px;
  height: 380px;
  background: var(--fh-evergreen);
  opacity: 0.05;
  pointer-events: none;
  -webkit-mask: url('../assets/logo-mark.svg') center / contain no-repeat;
          mask: url('../assets/logo-mark.svg') center / contain no-repeat;
}

/* ----- PHOTO COLLAGE LAYER ----- */
.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  --rot: 0deg;
  --px: 0;
  --py: 0;
  --tx: 0px;
  --ty: 0px;
  --scale: 1;
  position: absolute;
  margin: 0;
  overflow: hidden;
  pointer-events: auto;
  border-radius: 4px;
  background: var(--fh-evergreen);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 24px 60px -22px rgba(15, 40, 24, 0.45),
    0 8px 18px -6px rgba(15, 40, 24, 0.18);
  transform:
    rotate(var(--rot))
    translate(calc(var(--px) * 1px + var(--tx)), calc(var(--py) * 1px + var(--ty)))
    scale(var(--scale));
  transition:
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 400ms ease,
    filter 400ms ease;
  opacity: 0;
  animation: fh-photo-reveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  cursor: pointer;
  filter: saturate(1.05) contrast(1.04);
  will-change: transform;
}

.hero-photo picture, .hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo img {
  object-fit: cover;
  animation: fh-ken-burns-slow 24s ease-in-out infinite alternate;
}

@keyframes fh-ken-burns-slow {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.10) translate(-1.5%, -1%); }
}

@keyframes fh-photo-reveal {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to   { opacity: 1; clip-path: inset(0 0 0 0); }
}

/* Photo positions — pinned to corners, OUTSIDE the headline's safe channel */
.hero-photo-1 {
  top: 86px;
  right: 1.5%;
  width: 220px;
  height: 300px;
  --rot: 2.2deg;
  animation-delay: 800ms;
  z-index: 2;
}

.hero-photo-2 {
  top: 42%;
  left: 1.5%;
  width: 170px;
  height: 170px;
  --rot: -2.5deg;
  animation-delay: 1000ms;
  z-index: 2;
}

.hero-photo-3 {
  bottom: 130px;
  right: 3%;
  width: 165px;
  height: 215px;
  --rot: -1.8deg;
  animation-delay: 1200ms;
  z-index: 2;
}

/* Hover: lift, level out, zoom in */
.hero-photo:hover {
  --rot: 0deg;
  --tx: 0px;
  --ty: -8px;
  --scale: 1.05;
  z-index: 6;
  filter: saturate(1.1) contrast(1.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 36px 72px -22px rgba(15, 40, 24, 0.50),
    0 14px 28px -6px rgba(15, 40, 24, 0.22);
}

.hero-photo figcaption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  font-family: var(--fh-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fh-cream);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 280ms ease, transform 280ms ease;
}
.hero-photo:hover figcaption { opacity: 1; transform: translateY(0); }
.caption-label { color: var(--fh-orange-soft); margin-right: 4px; }

/* ----- STAGE LAYOUT (content) ----- */
.hero-editorial .hero-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 56px clamp(28px, 5vw, 72px) 96px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(32px, 5vw, 72px);
  min-height: 88vh;
  align-self: center;
}

/* TOP META STRIP */
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 40, 24, 0.08);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-brand { align-items: center; text-align: center; }
.hero-meta-reviews { align-items: flex-end; text-align: right; }

.hero-meta-label {
  font-family: var(--fh-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fh-text-faint);
}

.hero-meta-value {
  font-family: var(--fh-hero);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--fh-evergreen);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta-live {
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px;
}
.hero-meta-live .hero-meta-label { order: 2; }
.hero-meta-live .hero-meta-value { order: 3; }

.pulse-dot {
  order: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5BC97E;
  box-shadow: 0 0 0 0 rgba(91, 201, 126, 0.6);
  animation: fh-pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}

@keyframes fh-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(91, 201, 126, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(91, 201, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 201, 126, 0); }
}

.hero-meta-reviews .stars {
  color: var(--fh-gold);
  letter-spacing: 1.5px;
  font-size: 14px;
}

.reviews-suffix {
  font-family: var(--fh-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fh-text-faint);
}

/* HEADLINE — overrides earlier hero h1 rules
   Constrained to a centered "safe channel" so photos in the gutters
   don't crash into letter forms. */
.hero-editorial .hero-h1 {
  font-family: var(--fh-hero) !important;
  font-weight: 300 !important;
  font-size: clamp(52px, 7.4vw, 116px) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.034em !important;
  color: var(--fh-evergreen) !important;
  margin: 0 auto !important;
  font-variation-settings: "opsz" 60 !important;
  text-wrap: balance;
  align-self: center;
  justify-self: center;
  max-width: min(880px, 72%);
  text-align: center;
  position: relative;
  z-index: 4;
}

.hero-editorial .hero-h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: fh-word-reveal 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  margin-right: 0.18em;
}

.hero-editorial .hero-h1 .word.br { margin-right: 0; }
.hero-editorial .hero-h1 .word.br::after { content: ''; display: block; }

.hero-editorial .hero-h1 .word.italic em {
  font-family: var(--fh-hero) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-variation-settings: "opsz" 72 !important;
  color: var(--fh-orange-deep) !important;
  letter-spacing: -0.012em;
}

@keyframes fh-word-reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Stagger word reveals */
.hero-editorial .hero-h1 .word:nth-child(1) { animation-delay: 120ms; }
.hero-editorial .hero-h1 .word:nth-child(2) { animation-delay: 200ms; }
.hero-editorial .hero-h1 .word:nth-child(3) { animation-delay: 280ms; }
.hero-editorial .hero-h1 .word:nth-child(4) { animation-delay: 360ms; }
.hero-editorial .hero-h1 .word:nth-child(5) { animation-delay: 440ms; }
.hero-editorial .hero-h1 .word:nth-child(6) { animation-delay: 540ms; }
.hero-editorial .hero-h1 .word:nth-child(7) { animation-delay: 640ms; }

/* LOWER ZONE — lead, CTAs, trust  (centered to match headline) */
.hero-editorial .hero-lower {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 4;
}

.hero-editorial .hero-sub {
  font-family: var(--fh-hero) !important;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--fh-text-soft);
  margin: 0;
  letter-spacing: -0.005em;
  max-width: 540px;
}

.hero-editorial .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.btn-with-icon {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.hero-editorial .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  border-top: 1px solid rgba(15, 40, 24, 0.08);
  padding-top: 22px;
  margin: 0;
  width: 100%;
  max-width: 640px;
}

.hero-editorial .hero-trust .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px !important;
  font-family: var(--fh-mono) !important;
  font-size: 10.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  color: var(--fh-text-soft) !important;
  background: rgba(15, 40, 24, 0.04) !important;
  border: 1px solid rgba(15, 40, 24, 0.10) !important;
  border-radius: 100px !important;
  transition: all 220ms ease;
}

.hero-editorial .hero-trust .trust-chip svg {
  color: var(--fh-orange-deep);
  flex-shrink: 0;
}

.hero-editorial .hero-trust .trust-chip:hover {
  background: rgba(15, 40, 24, 0.08) !important;
  border-color: rgba(15, 40, 24, 0.18) !important;
  color: var(--fh-evergreen) !important;
}

.hero-editorial .hero-trust .trust-chip::before { display: none; }

/* SCROLL CUE — bottom center */
.hero-scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--fh-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fh-text-faint);
  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--fh-orange-deep) 60%, var(--fh-orange));
  transform-origin: top;
  animation: fh-scroll-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes fh-scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.35; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1180px) {
  .hero-photo-1 { width: 180px; height: 240px; right: 1%; top: 80px; }
  .hero-photo-2 { width: 145px; height: 145px; left: 1%; top: 44%; }
  .hero-photo-3 { width: 140px; height: 180px; right: 2%; bottom: 120px; }
  .hero-editorial .hero-h1 { max-width: min(820px, 64%); font-size: clamp(50px, 7vw, 100px) !important; }
}

@media (max-width: 960px) {
  .hero-photo-1 { width: 150px; height: 200px; }
  .hero-photo-2 { width: 120px; height: 120px; top: 50%; }
  .hero-photo-3 { width: 120px; height: 150px; }
  .hero-editorial .hero-h1 { max-width: min(680px, 60%); font-size: clamp(46px, 6.5vw, 84px) !important; }
}

@media (max-width: 820px) {
  .hero.hero-editorial { min-height: auto !important; }
  .hero-photo-2, .hero-photo-3 { display: none; }
  .hero-photo-1 {
    top: 14px;
    right: 4%;
    width: 100px;
    height: 138px;
    opacity: 0.78;
  }
  .hero-editorial .hero-stage { padding: 56px 24px 92px; gap: 36px; min-height: auto; }
  .hero-meta { grid-template-columns: 1fr; gap: 12px; padding-bottom: 16px; }
  .hero-meta-brand, .hero-meta-reviews { align-items: flex-start; text-align: left; }
  .hero-meta-reviews .hero-meta-value { flex-direction: row-reverse; }
  .hero-editorial .hero-h1 {
    max-width: 100% !important;
    font-size: clamp(44px, 11vw, 72px) !important;
    line-height: 0.96 !important;
    text-align: left !important;
    margin: 0 !important;
  }
  .hero-editorial .hero-lower { align-items: flex-start; text-align: left; margin: 0; }
  .hero-editorial .hero-actions { justify-content: flex-start; }
  .hero-editorial .hero-trust { justify-content: flex-start; }
  .hero-scroll-cue { display: none; }
  .hero-mark-watermark { width: 220px; height: 220px; }
}

@media (max-width: 480px) {
  .hero-photo-1 { width: 80px; height: 110px; top: 8px; right: 4%; }
  .hero-editorial .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-editorial .hero-h1 .word { opacity: 1; transform: none; animation: none; }
  .hero-photo { opacity: 1; clip-path: none; animation: none; }
  .hero-photo img { animation: none; }
  .hero-mesh { animation: none; }
  .pulse-dot { animation: none; }
  .scroll-line { animation: none; }
}

/* SR-only utility (if not already defined) */
.hero-editorial .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =============================================================================
   ⌬⌬⌬  HERO — CINEMATIC FULL-BLEED (APR 2026 v3)
   Replaces editorial collage with auto-advancing photo carousel + Ken Burns +
   editorial type overlay. Mobile-first, single image always behind text.
   ============================================================================= */

/* Hard reset — nuke any earlier .hero-editorial / .hero-split inheritance */
.hero.hero-cinematic {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;
  width: 100%;
  min-height: clamp(640px, 92vh, 920px) !important;
  background: var(--fh-evergreen) !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  color: var(--fh-cream);
}

/* Disable old grid */
.hero.hero-cinematic .hero-inner { display: none !important; }

/* ---- STAGE: photo carousel layer ---- */
.hero-cinematic .hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--fh-evergreen);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1500ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 1500ms;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: opacity 1500ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}

.hero-slide picture,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slide img {
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.9) saturate(1.06) contrast(1.04);
  /* Ken Burns — only on active slide */
  transform: scale(1.0);
  transition: transform 8000ms ease-out;
}

.hero-slide.is-active img {
  animation: fh-ken-burns-cinema 12s ease-out forwards;
}

@keyframes fh-ken-burns-cinema {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.18) translate3d(-1.5%, -1.5%, 0); }
}

/* Slide caption — bottom-right inside the photo, monospace label */
.slide-caption {
  position: absolute;
  bottom: 24px;
  right: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--fh-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.78);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms ease 600ms, transform 600ms ease 600ms;
}
.hero-slide.is-active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}
.cap-num   { color: var(--fh-orange); font-weight: 700; }
.cap-label { color: rgba(250, 246, 238, 0.95); }
.cap-place { color: rgba(250, 246, 238, 0.65); }

/* ---- SCRIM — gradient overlay for type legibility ---- */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    /* dark gradient bottom-left (where headline sits) */
    linear-gradient(125deg, rgba(15, 40, 24, 0.72) 0%, rgba(15, 40, 24, 0.55) 28%, rgba(15, 40, 24, 0.10) 55%, transparent 80%),
    /* subtle top dim for top strip */
    linear-gradient(180deg, rgba(15, 40, 24, 0.45) 0%, transparent 18%, transparent 75%, rgba(15, 40, 24, 0.45) 100%),
    /* warm tone wash */
    linear-gradient(180deg, rgba(255, 200, 140, 0.04), transparent 50%);
}

/* Subtle film grain over the whole hero */
.hero-cinematic::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url('../assets/noise.png');
}

/* ---- FOREGROUND: type + CTAs + controls ---- */
.hero-cinematic .hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  min-height: clamp(640px, 92vh, 920px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(20px, 3vw, 36px) clamp(24px, 5vw, 64px) clamp(28px, 4vw, 56px);
  background: transparent !important;
}

/* TOP STRIP */
.hero-topstrip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}

.hero-stamp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--fh-cream);
}

.hero-stamp-mark {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: var(--fh-cream);
  -webkit-mask: url('../assets/logo-mark.svg') center / contain no-repeat;
          mask: url('../assets/logo-mark.svg') center / contain no-repeat;
  flex-shrink: 0;
}

.hero-stamp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-stamp-line {
  font-family: var(--fh-wordmark, 'Inter Tight', sans-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fh-cream);
}

.hero-stamp-sub {
  font-family: var(--fh-mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.65);
  margin-top: 4px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(250, 246, 238, 0.10);
  border: 1px solid rgba(250, 246, 238, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  color: var(--fh-cream);
}

.hero-rating-stars {
  color: var(--fh-gold);
  letter-spacing: 1.5px;
  font-size: 13px;
}

.hero-rating-meta {
  font-family: var(--fh-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(250, 246, 238, 0.85);
}
.hero-rating-meta strong { color: var(--fh-cream); font-weight: 600; }

/* HEADLINE BLOCK — bottom-left positioning */
.hero-cinematic .hero-headline {
  align-self: end;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: clamp(48px, 6vh, 72px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.85);
  margin: 0;
  padding: 6px 14px;
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid rgba(250, 246, 238, 0.14);
  border-radius: 100px;
  width: fit-content;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-eyebrow .pulse-dot {
  width: 7px;
  height: 7px;
  background: #5BC97E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: fh-pulse 2.4s ease-out infinite;
}

.hero-cinematic .hero-h1 {
  font-family: var(--fh-hero, 'Newsreader', serif) !important;
  font-weight: 400 !important;
  font-style: normal;
  font-variation-settings: "opsz" 72 !important;
  font-size: clamp(48px, 7.5vw, 124px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.028em !important;
  color: var(--fh-cream) !important;
  margin: 0 !important;
  text-wrap: balance;
  text-shadow: 0 2px 32px rgba(15, 40, 24, 0.45);
  align-self: flex-start !important;
  text-align: left !important;
  max-width: 100% !important;
}

.hero-cinematic .hero-h1 .line {
  display: block;
}

.hero-cinematic .hero-h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: fh-word-reveal 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  margin-right: 0.18em;
}

.hero-cinematic .hero-h1 .word.italic em {
  font-style: italic !important;
  font-weight: 300 !important;
  font-variation-settings: "opsz" 96 !important;
  color: #F5C896 !important;        /* warm gold for legibility on photo */
  text-shadow: 0 2px 24px rgba(15, 40, 24, 0.55);
}

@keyframes fh-word-reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Stagger reveal */
.hero-cinematic .hero-h1 .word:nth-child(1)  { animation-delay: 200ms; }
.hero-cinematic .hero-h1 .word:nth-child(2)  { animation-delay: 280ms; }
.hero-cinematic .hero-h1 .word:nth-child(3)  { animation-delay: 360ms; }
.hero-cinematic .hero-h1 .word:nth-child(4)  { animation-delay: 440ms; }
.hero-cinematic .hero-h1 .word:nth-child(5)  { animation-delay: 520ms; }
.hero-cinematic .hero-h1 .word:nth-child(6)  { animation-delay: 600ms; }

.hero-cinematic .hero-sub {
  font-family: var(--fh-hero, 'Newsreader', serif) !important;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.92);
  margin: 0;
  max-width: 580px;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 16px rgba(15, 40, 24, 0.45);
}

.hero-cinematic .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 8px 0 0;
}

/* "Ghost light" button variant for use over photos */
.btn-ghost-light {
  background: rgba(250, 246, 238, 0.08) !important;
  border: 1.5px solid rgba(250, 246, 238, 0.28) !important;
  color: var(--fh-cream) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 220ms ease;
}
.btn-ghost-light:hover {
  background: rgba(250, 246, 238, 0.16) !important;
  border-color: rgba(250, 246, 238, 0.50) !important;
  transform: translateY(-2px);
}
.btn-ghost-light svg { color: var(--fh-cream); }

.hero-cinematic .hero-trust {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(250, 246, 238, 0.14);
}

.hero-cinematic .hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.78);
}
.hero-cinematic .hero-trust svg {
  color: #F5C896;
  flex-shrink: 0;
}

/* ---- CAROUSEL CONTROLS — bottom-right ---- */
.hero-controls {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(28px, 4vw, 56px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(250, 246, 238, 0.08);
  border: 1px solid rgba(250, 246, 238, 0.18);
  border-radius: 100px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-ctrl-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  color: var(--fh-cream);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, transform 200ms ease;
}
.hero-ctrl-btn:hover {
  background: rgba(250, 246, 238, 0.16);
  transform: scale(1.05);
}
.hero-ctrl-btn:focus-visible {
  outline: 2px solid var(--fh-gold);
  outline-offset: 2px;
}

.hero-progress {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  font-family: var(--fh-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(250, 246, 238, 0.65);
}

.hero-progress-track {
  display: inline-block;
  position: relative;
  width: 90px;
  height: 1px;
  background: rgba(250, 246, 238, 0.20);
  overflow: visible;
}

.hero-progress-track::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  height: 3px;
  width: 0%;
  background: var(--fh-cream);
  transition: width 6200ms linear;
  border-radius: 2px;
}

.hero-progress-track.is-running::before {
  width: 100%;
}

.hero-progress-track.is-paused::before {
  transition: none;
}

.hero-progress-of {
  color: var(--fh-cream);
  font-weight: 600;
}

.hero-progress-track[data-current]::after {
  content: attr(data-current);
  color: var(--fh-cream);
  font-weight: 600;
  margin-right: 8px;
  position: absolute;
  left: -28px;
  top: -8px;
}

.hero-ctrl-pause .icon-play { display: none; }
.hero-ctrl-pause[data-state="paused"] .icon-pause { display: none; }
.hero-ctrl-pause[data-state="paused"] .icon-play { display: inline-block; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero.hero-cinematic { min-height: clamp(580px, 88vh, 760px) !important; }
  .hero-cinematic .hero-content { padding: 16px 24px 32px; }
  .hero-topstrip { gap: 12px; }
  .hero-stamp-line { font-size: 11.5px; letter-spacing: 0.16em; }
  .hero-stamp-sub { display: none; }
  .hero-rating { padding: 6px 12px; }
  .hero-rating-meta strong { display: none; }

  .hero-cinematic .hero-headline { padding-bottom: 32px; gap: 18px; }
  .hero-cinematic .hero-h1 { font-size: clamp(42px, 10.5vw, 72px) !important; line-height: 0.98 !important; }

  .hero-cinematic .hero-trust { gap: 14px; padding-top: 12px; margin-top: 8px; }
  .hero-cinematic .hero-trust li { font-size: 9.5px; letter-spacing: 0.10em; }

  .hero-cinematic .hero-actions .btn { flex: 1 1 auto; min-width: 0; }

  .hero-controls { left: 50%; right: auto; transform: translateX(-50%); bottom: 16px; }
  .slide-caption { display: none; }
}

@media (max-width: 480px) {
  .hero-cinematic .hero-h1 { font-size: clamp(36px, 11vw, 56px) !important; }
  .hero-cinematic .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cinematic .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-cinematic .hero-trust li { gap: 6px; }
  .hero-rating-stars { font-size: 12px; }
  .hero-eyebrow { font-size: 10px; padding: 5px 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-cinematic .hero-h1 .word { opacity: 1; transform: none; animation: none; }
  .hero-slide.is-active img { animation: none; transform: scale(1.0); }
  .hero-eyebrow .pulse-dot { animation: none; }
  .slide-caption { transition: none; }
}

/* =============================================================================
   KEY FACTS PANEL — at-a-glance card under hero on service/location/commercial pages
   ============================================================================= */
.key-facts {
  max-width: var(--max-width, 1240px);
  margin: -32px auto 0;
  padding: 28px clamp(20px, 4vw, 40px);
  background: var(--fh-cream);
  border: 1px solid rgba(15, 40, 24, 0.10);
  border-radius: 12px;
  box-shadow: 0 4px 24px -8px rgba(15, 40, 24, 0.10);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px 32px;
  position: relative;
  z-index: 5;
}

.kf-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--fh-orange);
  padding-left: 14px;
}

.kf-label {
  font-family: var(--fh-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fh-text-faint);
}

.kf-value {
  font-family: var(--fh-hero, 'Newsreader', serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.35;
  color: var(--fh-evergreen);
  letter-spacing: -0.01em;
}

.kf-value small {
  display: block;
  font-family: var(--fh-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--fh-text-soft);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
}

.kf-value strong {
  color: var(--fh-orange);
  font-weight: 700;
  font-family: var(--fh-body);
}

@media (max-width: 720px) {
  .key-facts {
    margin: -24px 16px 0;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .kf-value { font-size: 15.5px; }
}


/* SERVICE PROOF GRID — 3-up photo proof on service pages */
.service-proof .proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: var(--max-width, 1240px);
  margin: 0 auto;
}

.proof-photo {
  margin: 0;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 28px -10px rgba(15, 40, 24, 0.18);
  background: var(--fh-evergreen);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 320ms ease;
}

.proof-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -10px rgba(15, 40, 24, 0.28);
}

.proof-photo picture, .proof-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.proof-photo img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.proof-photo:hover img {
  transform: scale(1.04);
}

@media (max-width: 600px) {
  .service-proof .proof-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* BLOG → LOCATIONS internal-link footer block */
.blog-locations {
  margin: 64px 0 24px;
  padding: 32px;
  background: var(--fh-cream-soft, #F2EBE0);
  border-radius: 10px;
  border: 1px solid rgba(15, 40, 24, 0.08);
}
.blog-locations h3 {
  font-family: var(--fh-hero, 'Newsreader', serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--fh-evergreen);
  margin: 0 0 8px;
}
.blog-locations p {
  font-size: 14.5px;
  color: var(--fh-text-soft);
  margin: 0 0 16px;
}
.blog-locations-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.blog-locations-chips a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--fh-cream);
  border: 1px solid rgba(15, 40, 24, 0.12);
  border-radius: 100px;
  font-family: var(--fh-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fh-evergreen);
  text-decoration: none;
  transition: all 200ms ease;
}
.blog-locations-chips a:hover {
  background: var(--fh-orange);
  color: var(--fh-cream);
  border-color: var(--fh-orange);
}
.blog-locations-chips a.see-all {
  background: transparent;
  border-style: dashed;
  color: var(--fh-orange-deep);
}

/* EXPLORE BLOCK — 3-column deep-link block on homepage for crawl signals */
.explore-block {
  padding-top: clamp(64px, 8vh, 96px);
  padding-bottom: clamp(64px, 8vh, 96px);
  background: var(--fh-cream-soft, #F2EBE0);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px 56px;
  max-width: var(--max-width, 1240px);
  margin: 0 auto;
}

.explore-col h3 {
  font-family: var(--fh-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fh-orange-deep);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 40, 24, 0.12);
}

.explore-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.explore-col a {
  font-family: var(--fh-hero, 'Newsreader', serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--fh-evergreen);
  text-decoration: none;
  line-height: 1.4;
  transition: color 200ms ease, transform 200ms ease;
  display: inline-block;
}

.explore-col a:hover {
  color: var(--fh-orange-deep);
  transform: translateX(4px);
}

.explore-col a.explore-all {
  margin-top: 6px;
  font-family: var(--fh-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fh-orange);
}

@media (max-width: 640px) {
  .explore-grid { gap: 32px; }
}

/* =============================================================================
   FLOATING ACTION WIDGET (FAW) — sticky bottom-right conversion CTA
   Appears after scrolling past hero. Mobile: full-width bottom bar.
   ============================================================================= */
.fh-faw {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  background: var(--fh-evergreen);
  color: var(--fh-cream);
  border-radius: 14px;
  padding: 12px 14px 14px;
  box-shadow:
    0 12px 32px -8px rgba(15, 40, 24, 0.40),
    0 4px 12px -4px rgba(0, 0, 0, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
              visibility 0s linear 320ms;
  max-width: 320px;
  width: max-content;
  font-family: var(--fh-body, 'Inter Tight', sans-serif);
}

.fh-faw.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
              visibility 0s linear 0s;
}

.fh-faw.is-dismissed {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.fh-faw-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  color: rgba(250, 246, 238, 0.55);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease;
}
.fh-faw-close:hover {
  background: rgba(250, 246, 238, 0.08);
  color: var(--fh-cream);
}

.fh-faw-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(250, 246, 238, 0.10);
  margin-bottom: 10px;
}

.fh-faw-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5BC97E;
  flex-shrink: 0;
  animation: fh-faw-pulse 2.4s ease-out infinite;
  box-shadow: 0 0 0 0 rgba(91, 201, 126, 0.6);
}
@keyframes fh-faw-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 201, 126, 0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(91, 201, 126, 0); }
}

.fh-faw-status-text {
  font-family: var(--fh-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.85);
}

.fh-faw-actions {
  display: flex;
  align-items: stretch;
  gap: 6px;
}

.fh-faw-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  background: var(--fh-orange);
  color: var(--fh-cream) !important;
  font-family: var(--fh-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: 10px;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.fh-faw-cta-primary:hover {
  background: var(--fh-orange-deep);
  transform: translateY(-1px);
  color: var(--fh-cream) !important;
}

.fh-faw-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  background: rgba(250, 246, 238, 0.10);
  color: var(--fh-cream) !important;
  border: 1px solid rgba(250, 246, 238, 0.20);
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--fh-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 200ms ease, border-color 200ms ease;
}
.fh-faw-cta-secondary:hover {
  background: rgba(250, 246, 238, 0.18);
  border-color: rgba(250, 246, 238, 0.40);
  color: var(--fh-cream) !important;
}

.fh-faw-tel { color: var(--fh-cream); }

/* Mobile: stack horizontally, full-width bottom bar feel */
@media (max-width: 640px) {
  .fh-faw {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 11px 12px 12px;
    border-radius: 12px;
  }
  .fh-faw-actions { flex-direction: column; gap: 6px; }
  .fh-faw-cta-primary, .fh-faw-cta-secondary {
    justify-content: center;
    width: 100%;
  }
  .fh-faw-status-text { font-size: 10px; letter-spacing: 0.08em; }
}

/* Hide on the contact page (form is the CTA there — widget would compete) */
body[data-page="contact"] .fh-faw,
.contact-page .fh-faw {
  display: none !important;
}

/* When form-submit success state is showing, hide the floating CTA */
.fh-faw[data-form-submitted="true"] { display: none; }

/* =============================================================================
   SUBPAGE TRUST STRIP — compact 5.0★ + chips above subpage hero content
   ============================================================================= */
.subpage-trust {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: rgba(15, 40, 24, 0.06);
  border: 1px solid rgba(15, 40, 24, 0.10);
  border-radius: 100px;
  font-family: var(--fh-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fh-text-soft);
}
.subpage-trust .stp-stars { color: var(--fh-gold); letter-spacing: 1.2px; font-size: 12px; }
.subpage-trust .stp-sep { color: rgba(15, 40, 24, 0.25); }
.subpage-trust strong { color: var(--fh-evergreen); font-weight: 700; }

/* =============================================================================
   RECENT QUOTES TICKER — social proof on contact page
   ============================================================================= */
.recent-quotes-ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(15, 40, 24, 0.04), rgba(15, 40, 24, 0.02));
  border: 1px solid rgba(15, 40, 24, 0.08);
  border-radius: 10px;
  margin-bottom: 24px;
  font-family: var(--fh-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--fh-text-soft);
}

.rqt-dot {
  width: 8px;
  height: 8px;
  background: #5BC97E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: fh-faw-pulse 2.4s ease-out infinite;
}

.rqt-text {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 18px;
}

.rqt-text span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.rqt-text span.is-active {
  opacity: 1;
  transform: translateY(0);
}

.rqt-text strong {
  color: var(--fh-evergreen);
  font-weight: 600;
}

