/* =========================================================
   HONEYDONE PROPERTY MAINTENANCE — STYLESHEET v5
   Dark-first. Bold. Cinematic. Black + #fed811.
   Inspired by brochure palette + Pipely energy.
========================================================= */

/* ---- 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;
  /* Start invisible; main.js adds .page-ready immediately on load.
     The pageshow listener handles back-navigation (bfcache) restore. */
  opacity: 0;
  transition: opacity 0.25s ease, background 0.35s ease, color 0.35s ease;
}
body.page-ready { opacity: 1; }
body.page-exit  { opacity: 0; }

/* Page-body swaps smoothly without reflashing the header */
#page-body {
  opacity: 1;
  transition: opacity 0.18s ease;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

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

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 34px; font-size: 15px; }

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

.btn-dark {
  background: #000;
  color: var(--white);
  border-color: #000;
}
.btn-dark:hover { background: #1a1a1a; border-color: #1a1a1a; }

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

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.80);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--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.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  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.92);
}
.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: 14px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  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: 23px;
  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: 11px;
  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,
.nav-list a.active {
  color: var(--text);
  background: var(--bg-card);
}
.nav-list a.active { color: var(--yellow); }

.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;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  padding: 0 3px;
}
.toggle-icons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 11px;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 1;
}
.toggle-thumb {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--toggle-thumb);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
  transition: left 0.25s ease, background 0.3s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
[data-theme="light"] .toggle-thumb { left: 23px; }

@keyframes toggleGlow {
  0%   { box-shadow: 0 0 0 0 var(--yellow-glow); }
  40%  { box-shadow: 0 0 0 8px var(--yellow-glow); }
  100% { box-shadow: 0 0 0 0 rgba(254,216,17,0); }
}
.toggle-track.glow-intro {
  animation: toggleGlow 1.4s ease forwards;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--bg-base);
  z-index: 999;
  padding: 32px 28px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list a {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-nav-list a:hover { color: var(--yellow); }
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 20px;
}

/* =========================================================
   HERO — FULL-BLEED CINEMATIC
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Left panel — dark with background texture */
.hero-left {
  position: relative;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  padding: 80px 0 80px 0;
  overflow: hidden;
  z-index: 1;
}

/* BG image bleeds into the left panel at low opacity */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") center/cover no-repeat;
  opacity: 0.9;
  z-index: 0;
}

/* Yellow accent stripe on left edge */
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--yellow);
  z-index: 2;
}

.hero-left-content {
  position: relative;
  z-index: 3;
  padding: 0 60px 0 64px;
  max-width: 600px;
}

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

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-headline .line-white {
  color: #ffffff;
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.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 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 50px;
}

/* Right panel — full-bleed photo */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }

/* Gradient overlay on right panel — blends into left */
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.10) 40%,
    transparent 100%
  );
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 10;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-hint svg { opacity: 0.5; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =========================================================
   TRUST BAR
========================================================= */
.trust-bar {
  background: var(--yellow);
  padding: 0;
  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: 13px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.06em;
  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: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #000;
}

/* =========================================================
   WHY HONEYDONE SECTION
========================================================= */
.why-section {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

/* Subtle BG texture */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") right center/60% no-repeat;
  opacity: 0.24;
  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);
  transition: all 0.25s;
}
.why-feature:first-child { padding-top: 0; }
.why-feature:last-child  { border-bottom: none; padding-bottom: 0; }
.why-feature:hover { padding-left: 8px; }

.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);
  transition: color 0.3s;
}
.why-feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================================
   PHOTOS STRIP
========================================================= */
.photos-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 380px;
  overflow: hidden;
}

.photo-tile {
  position: relative;
  overflow: hidden;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.85) contrast(1.1) saturate(1.1);
}
.photo-tile:hover img { transform: scale(1.06); }

.photo-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* =========================================================
   SERVICES SECTION
========================================================= */
.services-section {
  padding: 100px 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: 48px;
}

.service-tile {
  background: var(--bg-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-tile::before {
  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::before { transform: scaleX(1); }
.service-tile:hover { background: var(--bg-card-alt); }

.service-tile svg {
  width: 32px;
  height: 32px;
  stroke: var(--yellow);
  flex-shrink: 0;
}
.service-tile h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  transition: color 0.3s;
}
.service-tile p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
}
.services-note {
  font-size: 15px;
  color: var(--text-muted);
}

/* =========================================================
   PROPERTY MANAGER SECTION
========================================================= */
.pm-section {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

/* Full-bleed BG image — more visible here */
.pm-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") center/cover no-repeat;
  opacity: 0.24;
  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 */
.pm-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  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;
}

/* =========================================================
   CTA BAND
========================================================= */
.cta-band {
  background: var(--yellow);
  padding: 80px 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.32;
  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.65);
  margin-bottom: 36px;
  max-width: 500px;
  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);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 20px 0 16px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer-phone:hover { opacity: 0.8; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
}
.footer-social a:hover {
  border-color: var(--yellow);
  background: var(--yellow-dim);
}
.footer-social a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-social a:hover img { filter: none; opacity: 1; }

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  position: relative;
  z-index: 1;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-faint);
}
.veteran-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.veteran-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--yellow);
}

/* =========================================================
   PAGE HERO (inner pages)
========================================================= */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 56px) 0 64px;
  overflow: hidden;
  background: #0a0a0a;
}

/* Full-bleed background image */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") center/cover no-repeat;
  opacity: 0.45;
}

/* Dark gradient overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.10) 50%,
    rgba(10,10,10,0.80) 100%
  );
}

/* Yellow top 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;
}
.page-hero .section-label { color: var(--yellow); }
.page-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================================
   SERVICES PAGE
========================================================= */
.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: 16px;
  position: relative;
  line-height: 1.5;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 12px;
}

/* =========================================================
   PROPERTY MANAGERS PAGE
========================================================= */
.pm-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
}
.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;
  filter: brightness(0.9) contrast(1.1);
  transition: transform 0.6s ease;
}
.pm-page-img:hover img { transform: scale(1.04); }

.benefits-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;
}
.benefit-card {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background var(--transition);
}
.benefit-card:hover { background: var(--bg-card-alt); }
.benefit-card svg {
  width: 32px;
  height: 32px;
  stroke: var(--yellow);
  margin-bottom: 16px;
}
.benefit-card h4 { font-size: 16px; margin-bottom: 8px; }
.benefit-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

.stats-band {
  background: #0a0a0a;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("images/honeydone-bg.png") center/cover no-repeat;
  opacity: 0.28;
}
.stats-band-inner {
  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;
  position: relative;
  z-index: 1;
}
.stat-block {
  background: var(--bg-card);
  padding: 40px 32px;
  text-align: center;
}
.stat-block-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 0;
}
.process-step {
  position: relative;
}
.process-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(254,216,17,0.35);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.process-num::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
  display: block;
  margin-bottom: 4px;
}
.process-step:last-child .process-num::after { display: none; }
.process-step:hover .process-num { color: var(--yellow); }
.process-step h4 { font-size: 17px; margin-bottom: 8px; font-weight: 700; color: var(--text); }
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =========================================================
   ABOUT PAGE
========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
}
.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: 80px 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(28px, 4vw, 48px);
  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: 80px 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);
}
.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: 400px; }
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================================
   ESTIMATE PAGE
========================================================= */
.estimate-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  padding: 64px 0 80px;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  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: 22px;
  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 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group label .req { color: var(--yellow); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-inset);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.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; }

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.radio-pill input { display: none; }
.radio-pill:has(input:checked) {
  border-color: var(--yellow);
  background: var(--yellow-dim);
  color: var(--yellow);
}

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  background: var(--bg-inset);
}
.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--yellow);
  background: var(--yellow-dim);
}
.upload-zone svg { stroke: var(--text-muted); margin: 0 auto 12px; }
.upload-zone:hover svg,
.upload-zone.drag-over svg { stroke: var(--yellow); }
.upload-zone strong { font-size: 15px; color: var(--text); }
.upload-zone p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.upload-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
}
.upload-thumb img,
.upload-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upload-thumb-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Trip fee options */
.trip-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.trip-option {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}
.trip-option input[type="radio"] { display: none; }
.trip-option:has(input:checked) {
  border-color: var(--yellow);
  background: var(--yellow-dim);
}
.trip-option-radio {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  margin-top: 2px;
  transition: all 0.2s;
  position: relative;
}
.trip-option:has(input:checked) .trip-option-radio {
  border-color: var(--yellow);
  background: var(--yellow);
}
.trip-option:has(input:checked) .trip-option-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #000;
  border-radius: 50%;
}
.trip-option-text strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}
.trip-option-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Form nav */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}

/* Sidebar */
.estimate-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.sidebar-card h4 {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--yellow);
}
.sidebar-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.sidebar-trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--yellow);
  margin-top: 2px;
}

/* Success screen */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success.active { display: block; }
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg { stroke: #000; }
.form-success h3 { font-size: 28px; margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }

/* =========================================================
   ANIMATIONS
========================================================= */

/* Fade up */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.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 — clip from bottom */
.heading-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.heading-reveal.visible { opacity: 1; transform: translateY(0); }

/* Hero content 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; }

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

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

/* Number counter */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 0 60px; }
  .hero-left-content { padding: 0 28px; 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); }
  .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; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .site-nav, .header-ctas { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero-headline { font-size: clamp(48px, 12vw, 72px); }
  .hero-left-content { padding: 0 24px; }
  .photos-strip { grid-template-columns: 1fr; height: auto; }
  .photo-tile { height: 240px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .pm-page-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .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; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@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; }
}

/* ============================================================
   BROCHURE DOWNLOAD SECTION
   ============================================================ */
.brochure-section {
  padding: 80px 0;
  background: var(--bg-base);
}

.brochure-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--bg-section);
  border: 1px solid rgba(254, 216, 17, 0.18);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
}

.brochure-preview {
  flex-shrink: 0;
}

.brochure-cover {
  background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #fed811;
  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), 0 0 0 1px rgba(254,216,17,0.1);
  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: #fed811;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.brochure-cover-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #fed811;
  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: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.brochure-cover-divider {
  width: 40px;
  height: 2px;
  background: #fed811;
  margin: 14px auto;
  position: relative;
  z-index: 1;
}

.brochure-cover-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brochure-cover-footer {
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(254,216,17,0.2);
  width: 100%;
  position: relative;
  z-index: 1;
}

.brochure-info .section-title {
  margin-top: 8px;
  margin-bottom: 16px;
}

.brochure-info > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.brochure-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brochure-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-main);
  font-weight: 500;
}

.brochure-highlights li svg {
  color: #fed811;
  stroke: #fed811;
  flex-shrink: 0;
}

.brochure-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.brochure-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
}

[data-theme="light"] .brochure-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

[data-theme="light"] .brochure-cover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .brochure-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .brochure-preview {
    display: flex;
    justify-content: center;
  }
  .brochure-cover {
    max-width: 220px;
  }
}

/* ============================================================
   DESIGN IMPROVEMENTS — v6
   ============================================================ */

/* ---- Section divider accent lines ---- */
.why-section,
.pm-section,
.faqs-section {
  border-top: 1px solid var(--border);
}

/* ---- Improve value-card number visibility ---- */
.value-num {
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: 8px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

/* ---- Improve info-block heading color ---- */
.info-block h5 {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---- Service card list items — better spacing ---- */
.service-card ul li {
  padding-left: 20px;
}

/* ---- Sticky mobile call bar ---- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--yellow);
  padding: 0;
  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: 14px;
  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: 16px;
  height: 16px;
  stroke: #000;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mobile-call-bar { display: block; }
  /* Add bottom padding to footer so bar doesn't overlap */
  .site-footer { padding-bottom: 56px; }
}

/* ---- Improve trust bar on mobile — scrolling ticker ---- */
@media (max-width: 640px) {
  .trust-bar { overflow: hidden; }
  .trust-bar-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .trust-item {
    border-right: 1px solid rgba(0,0,0,0.12);
    border-bottom: none;
    width: auto;
    flex-shrink: 0;
  }
}

/* ---- Improve section-label spacing consistency ---- */
.section-label + .section-title { margin-top: 0; }

/* ---- Subtle yellow left border on why-feature hover ---- */
.why-feature {
  border-left: 3px solid transparent;
  padding-left: 0;
  transition: border-color 0.25s, padding-left 0.25s;
}
.why-feature:hover {
  border-left-color: var(--yellow);
  padding-left: 12px;
}

/* ---- PM card border accent ---- */
.pm-card {
  border-top: 3px solid var(--yellow);
}

/* ---- Sidebar card border accent ---- */
.sidebar-card {
  border-top: 3px solid var(--yellow);
}

/* ---- FAQ group title improved ---- */
.faq-group-title {
  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;
}

/* ==========================================================
   GLOBAL JOBBER ESTIMATE MODAL
   Shared across all pages — triggered by .btn-estimate-popup
========================================================== */
.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: all;
  opacity: 1;
}
.jobber-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.jobber-modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  height: 88vh;
  background: #1a1a1a;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 60px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.jobber-overlay.open .jobber-modal {
  transform: translateY(0);
}
.jobber-modal-drag {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}
.jobber-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.jobber-modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.jobber-modal-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}
.jobber-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.jobber-modal-title span { color: var(--yellow); }
.jobber-modal-subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}
.jobber-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.jobber-modal-close:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}
.jobber-iframe-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.jobber-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.jobber-iframe-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #1a1a1a;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: opacity 0.3s;
}
.jobber-iframe-loading.hidden { opacity: 0; pointer-events: none; }
.jobber-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(254,216,17,0.2);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .jobber-modal { height: 92vh; border-radius: 16px 16px 0 0; }
  .jobber-modal-header { padding: 14px 16px 12px; }
}


/* =========================================================
   BEFORE / AFTER CAROUSEL
========================================================= */
.ba-carousel-section {
  padding: 72px 0 56px;
  background: var(--bg-section);
  overflow: hidden;
}

.ba-carousel-section .section-sub {
  display: none; /* internal note only, not shown to visitors */
}

.ba-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
}

.ba-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.ba-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ba-slide {
  min-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
}

.ba-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.ba-loading {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  width: 100%;
}

/* Arrows */
.ba-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ba-arrow-prev { left: 12px; }
.ba-arrow-next { right: 12px; }

.ba-arrow:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}

/* Dots */
.ba-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.ba-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .ba-carousel-section {
    padding: 48px 0 40px;
  }

  .ba-slide,
  .ba-slide img {
    border-radius: var(--radius);
  }

  .ba-track-outer {
    border-radius: var(--radius);
  }

  .ba-arrow {
    width: 34px;
    height: 34px;
    opacity: 0.85;
  }

  .ba-arrow-prev { left: 8px; }
  .ba-arrow-next { right: 8px; }
}
