/* =========================================================
   HONEYDONE PROPERTY MAINTENANCE — STYLESHEET v6
   Dark-first. Bold. Cinematic. Black + #fed811.
   Unified design system — all pages flow as one.
========================================================= */

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

/* =========================================================
   DARK THEME (DEFAULT)
========================================================= */
:root {
  --yellow:        #fed811;
  --yellow-dark:   #e6c200;
  --yellow-dim:    rgba(254,216,17,0.15);
  --yellow-glow:   rgba(254,216,17,0.40);

  --bg-base:       #111111;
  --bg-surface:    #181818;
  --bg-card:       #1e1e1e;
  --bg-card-alt:   #252525;
  --bg-inset:      #141414;
  --bg-section:    #161616;

  --text:          #f0ede6;
  --text-muted:    rgba(240,237,230,0.60);
  --text-faint:    rgba(240,237,230,0.30);

  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --border-yellow: rgba(254,216,17,0.30);

  --white:         #ffffff;
  --black:         #000000;

  --shadow:        0 2px 20px rgba(0,0,0,0.60);
  --shadow-md:     0 8px 48px rgba(0,0,0,0.70);
  --shadow-yellow: 0 0 40px rgba(254,216,17,0.20);

  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --transition:    0.22s ease;
  --container:     1180px;
  --header-h:      76px;

  --toggle-track:  #2a2a2a;
  --toggle-thumb:  var(--yellow);
}

/* =========================================================
   LIGHT THEME
========================================================= */
[data-theme="light"] {
  --bg-base:       #f5f4f0;
  --bg-surface:    #ffffff;
  --bg-card:       #ffffff;
  --bg-card-alt:   #f9f8f5;
  --bg-inset:      #efefeb;
  --bg-section:    #f0efe9;

  --text:          #111111;
  --text-muted:    #555555;
  --text-faint:    #999999;

  --border:        #e0ddd6;
  --border-strong: #c8c5be;
  --border-yellow: rgba(254,216,17,0.50);

  --shadow:        0 2px 20px rgba(0,0,0,0.10);
  --shadow-md:     0 8px 48px rgba(0,0,0,0.14);
  --shadow-yellow: 0 0 40px rgba(254,216,17,0.15);

  --toggle-track:  #ddd;
  --toggle-thumb:  var(--yellow);
}

/* =========================================================
   BASE
========================================================= */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.35s ease;
}
body.page-ready { opacity: 1; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
strong { font-weight: 700; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* =========================================================
   TYPOGRAPHY SYSTEM
========================================================= */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* Section label — appears above every section title */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 560px;
}

/* Centered section intro block */
.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-intro .section-label::before { display: none; }
.section-intro .section-label { padding-left: 0; }
.section-intro .section-sub { margin-left: auto; margin-right: auto; }

/* Left-aligned section intro */
.section-intro-left {
  max-width: 580px;
  margin-bottom: 48px;
}

/* =========================================================
   SECTION SPACING — Universal page rhythm
========================================================= */
.page-section {
  padding: 96px 0;
  background: var(--bg-base);
}
.page-section-alt {
  padding: 96px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.page-section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") right center/55% no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.page-section-alt .container { position: relative; z-index: 1; }

/* =========================================================
   FADE-UP SCROLL REVEAL ANIMATION
========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }
.delay-7 { transition-delay: 0.56s; }
.delay-8 { transition-delay: 0.64s; }

.heading-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.heading-reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

.btn-primary {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(254,216,17,0.30);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-card);
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-dark {
  background: #000;
  color: var(--yellow);
  border-color: #000;
}
.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--border-yellow);
}
.btn-outline:hover {
  background: var(--yellow);
  color: #000;
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.70);
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(17,17,17,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
[data-theme="light"] .site-header {
  background: rgba(255,255,255,0.94);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.50);
  border-bottom-color: var(--border-strong);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.0;
  gap: 2px;
}
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.0;
  transition: color 0.3s;
}
.logo-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

/* Nav */
.site-nav { margin-left: auto; flex-shrink: 1; min-width: 0; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-list a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-list a:hover { color: var(--text); background: var(--bg-card); }
.nav-list a.active { color: var(--yellow); background: var(--bg-card); }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Theme toggle */
.theme-toggle-wrap { display: flex; align-items: center; flex-shrink: 0; }
#theme-toggle {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.toggle-track {
  width: 46px;
  height: 26px;
  background: var(--toggle-track);
  border-radius: 50px;
  position: relative;
  transition: background 0.3s;
}
.toggle-icons {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  font-size: 12px;
  pointer-events: none;
}
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--toggle-thumb);
  transition: transform 0.3s, background 0.3s;
}
[data-theme="light"] .toggle-thumb { transform: translateX(20px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-strong);
  flex-direction: column;
  padding: 20px 28px 28px;
  gap: 4px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}
.mobile-nav-list li a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-list li a:hover, .mobile-nav-list li a.active { color: var(--yellow); }
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

/* =========================================================
   HOMEPAGE HERO — SPLIT LAYOUT
========================================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 0;
}

.hero-left {
  background: var(--bg-base);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") left center/cover no-repeat;
  opacity: 0.20;
}
.hero-left-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 48px) 56px 80px;
  max-width: 600px;
}

.hero-location {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-location::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--yellow);
}

.hero-headline {
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--yellow);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-headline .line-white { color: var(--text); }

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.70;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}
.hero-tag:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--bg-section);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0.55) 0%,
    transparent 40%
  );
}

/* =========================================================
   TRUST BAR — Yellow strip with rotating trust signals
   Used on EVERY page, right after hero/page-hero
========================================================= */
.trust-bar {
  background: var(--yellow);
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 12.5px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-right: 1px solid rgba(0,0,0,0.12);
  white-space: nowrap;
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(0,0,0,0.06); }
.trust-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: #000;
}

/* =========================================================
   WHY HONEYDONE SECTION
========================================================= */
.why-section {
  padding: 96px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") right center/60% no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-content .section-sub { margin-bottom: 16px; }
.why-content-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.why-features { display: flex; flex-direction: column; gap: 0; }
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  padding-left: 0;
  transition: border-color 0.25s, padding-left 0.25s;
}
.why-feature:first-child { padding-top: 0; }
.why-feature:last-child  { border-bottom: none; padding-bottom: 0; }
.why-feature:hover {
  border-left-color: var(--yellow);
  padding-left: 12px;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: 10px;
  padding: 10px;
  stroke: var(--yellow);
  transition: background 0.25s, border-color 0.25s;
}
.why-feature:hover .why-feature-icon {
  background: var(--yellow);
  stroke: #000;
  border-color: var(--yellow);
}

.why-feature-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.why-feature-text p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =========================================================
   ICON BOX — Universal icon container
========================================================= */
.icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.icon-box svg { width: 22px; height: 22px; stroke: var(--yellow); transition: stroke 0.25s; }
.icon-box:hover, .card-hover:hover .icon-box { background: var(--yellow); border-color: var(--yellow); }
.icon-box:hover svg, .card-hover:hover .icon-box svg { stroke: #000; }

/* =========================================================
   HOMEPAGE SERVICES TEASER GRID
========================================================= */
.services-section {
  padding: 96px 0;
  background: var(--bg-base);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.service-tile {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-tile:hover::after { transform: scaleX(1); }
.service-tile:hover { background: var(--bg-card-alt); }
.service-tile-icon {
  width: 44px; height: 44px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.25s, border-color 0.25s;
}
.service-tile:hover .service-tile-icon { background: var(--yellow); border-color: var(--yellow); }
.service-tile-icon svg { width: 20px; height: 20px; stroke: var(--yellow); transition: stroke 0.25s; }
.service-tile:hover .service-tile-icon svg { stroke: #000; }
/* Safety: bare SVG directly inside tile (no .service-tile-icon wrapper) */
.service-tile > svg { width: 36px; height: 36px; stroke: var(--yellow); flex-shrink: 0; }
.service-tile h3 { font-size: 18px; margin-bottom: 8px; }
.service-tile p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

/* =========================================================
   STATS BAND
========================================================= */
.stats-band {
  background: var(--bg-inset);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-block {
  background: var(--bg-card);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition);
}
.stat-block:hover { background: var(--bg-card-alt); }
.stat-block-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-block-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* =========================================================
   HOMEPAGE PM TEASER
========================================================= */
.pm-teaser {
  padding: 96px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.pm-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") left center/55% no-repeat;
  opacity: 0.20;
  pointer-events: none;
}

.pm-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.pm-content p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.pm-features { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.pm-feature { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--text-muted); line-height: 1.55; }
.pm-feature-dot { width: 8px; height: 8px; min-width: 8px; background: var(--yellow); border-radius: 50%; margin-top: 7px; }

.pm-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  box-shadow: var(--shadow-md);
}
.pm-card-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.pm-card h3 { font-size: 28px; margin-bottom: 8px; }
.pm-card-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.pm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.pm-stat { background: var(--bg-card-alt); padding: 20px 18px; text-align: center; }
.pm-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
.pm-stat-label { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* =========================================================
   PAGE HERO — Interior pages (services, about, FAQs, etc.)
========================================================= */
.page-hero {
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 72px;
  background: #0a0a0a;
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") center/cover no-repeat;
  opacity: 0.42;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(10,10,10,0.75) 100%
  );
}
/* Yellow top accent bar */
.page-hero-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  z-index: 3;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero .section-label { color: var(--yellow); }
.page-hero .section-label::before { background: var(--yellow); }
.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================================
   SERVICES PAGE — Full grid
========================================================= */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: var(--bg-card-alt); }
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s, border-color 0.25s;
}
.service-card:hover .service-card-icon { background: var(--yellow); border-color: var(--yellow); }
.service-card-icon svg { width: 22px; height: 22px; stroke: var(--yellow); transition: stroke 0.25s; }
.service-card:hover .service-card-icon svg { stroke: #000; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--text); }
.service-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card ul li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.service-card ul li::before { content: '\2192'; position: absolute; left: 0; color: var(--yellow); font-size: 12px; }

/* =========================================================
   PROCESS GRID
========================================================= */
.process-section {
  padding: 96px 0;
  background: var(--bg-base);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  background: var(--bg-card);
  padding: 36px 28px;
  position: relative;
  transition: background var(--transition);
}
.process-step:hover { background: var(--bg-card-alt); }
.process-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--yellow-dim);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.process-step:hover .process-num { color: var(--yellow); }
.process-step h4 { font-size: 18px; margin-bottom: 10px; }
.process-step p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =========================================================
   PROPERTY MANAGERS PAGE
========================================================= */
.pm-page-section {
  padding: 96px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.pm-page-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") right center/55% no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.pm-page-section .container { position: relative; z-index: 1; }

.pm-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pm-page-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.pm-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.1) contrast(1.08) saturate(1.05);
  transition: transform 0.6s ease;
}
.pm-page-img:hover img { transform: scale(1.03); }
.pm-page-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 60%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.benefit-card {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background var(--transition);
}
.benefit-card:hover { background: var(--bg-card-alt); }
.benefit-card-icon {
  width: 44px; height: 44px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.25s, border-color 0.25s;
}
.benefit-card:hover .benefit-card-icon { background: var(--yellow); border-color: var(--yellow); }
.benefit-card-icon svg { width: 20px; height: 20px; stroke: var(--yellow); transition: stroke 0.25s; }
.benefit-card:hover .benefit-card-icon svg { stroke: #000; }
.benefit-card h4 { font-size: 17px; margin-bottom: 8px; }
.benefit-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =========================================================
   BROCHURE DOWNLOAD
========================================================= */
.brochure-section { padding: 80px 0; background: var(--bg-base); }
.brochure-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--bg-section);
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
}
.brochure-cover {
  background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid var(--yellow);
  border-radius: 10px;
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  aspect-ratio: 8.5 / 11;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  overflow: hidden;
}
.brochure-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/honeydone-bg.png') center/cover no-repeat;
  opacity: 0.24;
  pointer-events: none;
}
.brochure-cover-logo  { color: var(--yellow); margin-bottom: 10px; position: relative; z-index: 1; }
.brochure-cover-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--yellow);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.brochure-cover-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}
.brochure-info h3 { font-size: 32px; margin-bottom: 12px; }
.brochure-info p  { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.brochure-info ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.brochure-info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.brochure-info ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================================
   WEEKEND TURNOVER PAGE
========================================================= */
.wt-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.wt-item {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.wt-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.wt-item:hover::after { transform: scaleX(1); }
.wt-item:hover { background: var(--bg-card-alt); }
.wt-item .service-icon {
  width: 44px; height: 44px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.25s, border-color 0.25s;
}
.wt-item:hover .service-icon { background: var(--yellow); border-color: var(--yellow); }
.wt-item .service-icon svg { stroke: var(--yellow); transition: stroke 0.25s; }
.wt-item:hover .service-icon svg { stroke: #000; }
.wt-item h3 { font-size: 18px; margin-bottom: 8px; }
.wt-item p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.wt-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.wt-step {
  background: var(--bg-card);
  padding: 36px 24px;
  text-align: center;
  transition: background var(--transition);
}
.wt-step:hover { background: var(--bg-card-alt); }
.wt-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
}
.wt-step h3 { font-size: 17px; margin-bottom: 10px; }
.wt-step p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.wt-audience {
  padding: 96px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.wt-audience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") right center/50% no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.wt-audience .container { position: relative; z-index: 1; }
.wt-audience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.wt-audience-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.wt-audience-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}
.wt-audience-arrow { color: var(--yellow); font-weight: 900; margin-top: 1px; flex-shrink: 0; }

/* =========================================================
   ABOUT PAGE
========================================================= */
.about-section { padding: 96px 0; background: var(--bg-section); position: relative; overflow: hidden; }
.about-section::before { content: ''; position: absolute; inset: 0; background: url("images/honeydone-bg.png") right center/50% no-repeat; opacity: 0.18; pointer-events: none; }
.about-section .container { position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.95) contrast(1.08);
  transition: transform 0.6s ease;
}
.about-img:hover img { transform: scale(1.03); }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.40), transparent 50%); }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 48px 0;
}
.value-card { background: var(--bg-card); padding: 36px 28px; text-align: center; transition: background var(--transition); }
.value-card:hover { background: var(--bg-card-alt); }
.value-num { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 8px; }
.value-card h4 { font-size: 16px; margin-bottom: 8px; }
.value-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }

.mission-band {
  background: #0a0a0a;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-band::before { content: ''; position: absolute; inset: 0; background: url("images/honeydone-bg.png") center/cover no-repeat; opacity: 0.28; }
.mission-band .container { position: relative; z-index: 1; }
.mission-band blockquote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 32px;
  letter-spacing: -0.01em;
}
.mission-band blockquote span { color: var(--yellow); }
.mission-band-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 48px 0;
}
.info-block { background: var(--bg-card); padding: 32px 28px; transition: background var(--transition); }
.info-block:hover { background: var(--bg-card-alt); }
.info-block h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; }
.info-block p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =========================================================
   FAQs PAGE
========================================================= */
.faqs-section { padding: 96px 0; background: var(--bg-base); }
.faq-group { margin-bottom: 56px; }
.faq-group-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-group-title::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  flex-shrink: 0;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--yellow); }
.faq-question.open  { color: var(--yellow); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; transition: transform 0.3s ease; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 600px; }
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* =========================================================
   CTA BAND — Yellow, every page
========================================================= */
.cta-band {
  background: var(--yellow);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") center/cover no-repeat;
  opacity: 0.30;
  mix-blend-mode: multiply;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(36px, 5vw, 60px); color: #000; margin-bottom: 14px; letter-spacing: -0.01em; }
.cta-band p  { font-size: 18px; color: rgba(0,0,0,0.60); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer { background: #0a0a0a; padding: 72px 0 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); color: #000; }
.footer-social svg { width: 15px; height: 15px; stroke: currentColor; }

.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p   { font-size: 13px; color: var(--text-faint); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-faint); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--yellow); }
.footer-veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid var(--border-yellow);
  padding: 4px 10px;
  border-radius: 20px;
}

/* =========================================================
   PHOTOS STRIP
========================================================= */
.photos-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 260px;
}
.photo-tile {
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1) saturate(1.05);
  transition: transform 0.5s ease, filter 0.4s;
}
.photo-tile:hover img { transform: scale(1.08); filter: brightness(1.0) contrast(1.1) saturate(1.08); }
.photo-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.50), transparent 50%);
}

/* =========================================================
   ESTIMATE PAGE
========================================================= */
.estimate-shell { padding-top: var(--header-h); min-height: 100vh; background: var(--bg-base); }
.estimate-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
  padding: 64px 0 80px;
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}
.estimate-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

/* Step progress */
.step-progress { display: flex; align-items: center; gap: 0; margin-bottom: 40px; }
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 1;
}
.step-dot.active { background: var(--yellow); border-color: var(--yellow); color: #000; box-shadow: 0 0 0 4px var(--yellow-dim); }
.step-dot.done  { background: var(--yellow); border-color: var(--yellow); color: #000; }
.step-line { flex: 1; height: 2px; background: var(--border-strong); transition: background 0.3s; }
.step-line.done { background: var(--yellow); }

/* Form fields */
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-size: 26px; margin-bottom: 6px; }
.form-step p   { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-dim);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.service-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px; }
.service-check-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--text-muted); padding: 12px 14px; background: var(--bg-card-alt); border: 1px solid var(--border); border-radius: 8px; transition: all 0.2s; }
.service-check-label:hover { border-color: var(--border-yellow); color: var(--text); }
.service-check-label input { width: 16px; height: 16px; accent-color: var(--yellow); flex-shrink: 0; }
.service-check-label input:checked + span { color: var(--text); }

.form-nav { display: flex; gap: 12px; margin-top: 32px; }
.form-nav-back { background: none; border: 1px solid var(--border-strong); color: var(--text-muted); cursor: pointer; padding: 12px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 600; transition: all 0.2s; }
.form-nav-back:hover { border-color: var(--yellow); color: var(--yellow); }

/* Sidebar */
.sidebar-card h4 { font-size: 18px; margin-bottom: 6px; }
.sidebar-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.sidebar-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.sidebar-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.sidebar-feature-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }
.sidebar-phone { display: block; text-align: center; margin-top: 14px; font-size: 22px; font-weight: 700; color: var(--yellow); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.04em; }

/* =========================================================
   STICKY MOBILE CALL BAR
========================================================= */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--yellow);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}
.mobile-call-bar-inner { display: flex; align-items: stretch; height: 56px; }
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-call-bar a:first-child { border-right: 1px solid rgba(0,0,0,0.15); }
.mobile-call-bar a:hover { background: rgba(0,0,0,0.08); }
.mobile-call-bar svg { width: 15px; height: 15px; stroke: #000; flex-shrink: 0; }

/* =========================================================
   JOBBER MODAL
========================================================= */
.jobber-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.jobber-overlay.open { pointer-events: auto; opacity: 1; }
.jobber-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(6px); }
.jobber-panel {
  position: relative;
  z-index: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 680px;
  padding: 32px 32px 0;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.jobber-overlay.open .jobber-panel { transform: translateY(0); }
.jobber-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.jobber-panel-header h3 { font-size: 22px; }
.jobber-close { background: none; border: none; cursor: pointer; color: var(--text-muted); display: flex; padding: 4px; border-radius: 6px; transition: color 0.2s; }
.jobber-close:hover { color: var(--text); }
.jobber-iframe { width: 100%; border: none; min-height: 420px; background: transparent; }

/* =========================================================
   HERO ANIMATIONS
========================================================= */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left-content .hero-location { animation: heroFadeUp 0.7s 0.2s ease both; }
.hero-left-content .hero-headline { animation: heroFadeUp 0.8s 0.35s ease both; }
.hero-left-content .hero-sub      { animation: heroFadeUp 0.7s 0.50s ease both; }
.hero-left-content .hero-ctas     { animation: heroFadeUp 0.7s 0.65s ease both; }
.hero-left-content .hero-trust    { animation: heroFadeUp 0.7s 0.80s ease both; }

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-right { animation: heroSlideIn 1.0s 0.3s ease both; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-bar-inner.ticker {
  width: max-content;
  animation: ticker 28s linear infinite;
}
.trust-bar-inner.ticker:hover { animation-play-state: paused; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 0 60px; }
  .hero-left-content { padding: calc(var(--header-h) + 40px) 28px 60px; max-width: 100%; }
  .hero-right { height: 400px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .pm-inner  { grid-template-columns: 1fr; gap: 48px; }
  .pm-card   { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .estimate-layout { grid-template-columns: 1fr; }
  .estimate-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .pm-page-grid { grid-template-columns: 1fr; }
  .wt-audience-inner { grid-template-columns: 1fr; gap: 48px; }
  .brochure-card { grid-template-columns: 1fr; }
  .wt-includes { grid-template-columns: repeat(2, 1fr); }
  .wt-how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .site-nav, .header-ctas, .theme-toggle-wrap { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-call-bar { display: block; }
  .site-footer { padding-bottom: 56px; }
  .hero-headline { font-size: clamp(48px, 12vw, 72px); }
  .hero-left-content { padding: calc(var(--header-h) + 32px) 24px 52px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar-inner { flex-wrap: wrap; justify-content: center; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); width: 50%; justify-content: center; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .wt-includes { grid-template-columns: 1fr; }
  .wt-how-grid { grid-template-columns: 1fr; }
  .page-section, .page-section-alt { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .cta-band-buttons { flex-direction: column; align-items: center; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: 1fr; }
  .service-checkboxes { grid-template-columns: 1fr; }
  .trust-item { width: 100%; }
}
