/* ============================================================
   EPIC HORIZONS LANDSCAPING — style.css
   Blueprint v6 COMPLETE — all design system rules applied
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;400i&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  /* Colors */
  --near-black:    #1C1C19;
  --bone:          #F5F1EA;
  --olive:         #5C8A2E;
  --olive-dark:    #4a7025;
  --olive-light:   #EAF2DC;
  --warm-mid:      #EDE8DF;
  --stone:         #888880;
  --white:         #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:  clamp(80px, 9vw, 130px);
  --container:    1200px;
  --radius:       6px;
  --radius-lg:    8px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(28,28,25,0.08);
  --shadow-md:    0 6px 24px rgba(28,28,25,0.12);
  --shadow-lg:    0 16px 48px rgba(28,28,25,0.14);

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body { overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--near-black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (pointer: fine) {
  body, body * { cursor: none !important; }
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Sticky Reviews Badge ── */
.reviews-badge {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  background: var(--white);
  border: 1px solid var(--warm-mid);
  border-right: none;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 0 20px rgba(28,28,25,0.12);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  max-width: 80px;
}
.reviews-badge:hover {
  transform: translateY(-50%) translateX(-4px);
  box-shadow: -8px 0 28px rgba(28,28,25,0.16);
}
.reviews-badge__stars {
  color: #F5A623;
  font-size: 0.7rem;
  letter-spacing: 1px;
  line-height: 1;
}
.reviews-badge__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.reviews-badge__count {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--near-black);
  line-height: 1.2;
  text-align: center;
}
.reviews-badge__sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--stone);
  text-align: center;
  line-height: 1.2;
}
/* Hide on mobile — sticky call bar already owns that space */
@media (max-width: 768px) {
  .reviews-badge { display: none; }
}

/* ── Focus Visible (WCAG 2.1 AA) ── */
:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: var(--radius);
}
/* Remove default outline only when :focus-visible is supported */
:focus:not(:focus-visible) { outline: none; }

/* ── Typography Scale ── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 400;
  color: var(--near-black);
}
h2 {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--near-black);
}
h3 {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}
h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
p { font-size: 1.05rem; font-weight: 400; }
.lead { font-size: clamp(1.1rem, 2vw, 1.25rem); font-weight: 300; line-height: 1.7; }
.small { font-size: 0.875rem; color: var(--stone); }
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── Layout Utilities ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--near-black); color: var(--bone); position: relative; z-index: 1; }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--bone); }
.section--warm { background: var(--warm-mid); }
.section--green { background: var(--olive-light); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-28 { margin-bottom: 28px; }
.d-block { display: block; }

/* ── Buttons — Von Restorff isolation ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--olive);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--olive-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  border: 2px solid var(--near-black);
  color: var(--near-black);
  background: transparent;
}
.btn-outline:hover {
  background: var(--near-black);
  color: var(--bone);
}
.btn-outline-light {
  border: 2px solid var(--bone);
  color: var(--bone);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--bone);
  color: var(--near-black);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 241, 234, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 28, 25, 0.08);
  transition: box-shadow 0.3s var(--ease);
  transform: translateZ(0);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  box-sizing: border-box;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--near-black);
}
.nav__logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--near-black);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { background: var(--warm-mid); color: var(--near-black); }
.nav__link--active { color: var(--near-black); font-weight: 600; }

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid rgba(28,28,25,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s var(--ease);
  z-index: 100;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--near-black);
  transition: background 0.15s, color 0.15s;
}
.nav__dropdown a:hover { background: var(--olive-light); color: var(--olive); }
.nav__dropdown-header {
  padding: 6px 20px 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Mega dropdown for service areas */
.nav__mega {
  position: absolute;
  top: calc(100% + 4px);
  left: -100px;
  width: 700px;
  max-width: calc(100vw - 40px);
  background: var(--white);
  border: 1px solid rgba(28,28,25,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s var(--ease);
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.nav__item:hover .nav__mega,
.nav__item:focus-within .nav__mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__mega-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--warm-mid);
}
.nav__mega-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.825rem;
  color: var(--near-black);
  transition: color 0.15s;
}
.nav__mega-col a:hover { color: var(--olive); }

.nav__cta { margin-left: 16px; }

/* Mobile menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--warm-mid);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--near-black);
  transition: all 0.3s var(--ease);
}
.nav__hamburger-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--near-black);
  padding-bottom: 2px;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--bone);
  overflow-y: auto;
  z-index: 999;
  padding: 24px clamp(20px, 5vw, 48px) 40px;
}
.nav__mobile.open { display: block; }
.nav__mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--warm-mid);
  color: var(--near-black);
}
.nav__mobile-link svg { width: 18px; height: 18px; }
.nav__mobile-sub { padding: 8px 0 8px 16px; display: none; }
.nav__mobile-sub.open { display: block; }
.nav__mobile-sub a {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--stone);
  border-bottom: 1px solid rgba(28,28,25,0.05);
}
.nav__mobile-sub a:hover { color: var(--olive); }
.nav__mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* Sticky mobile CTA bar */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--near-black);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--bone);
  font-weight: 600;
  font-size: 1rem;
}
.sticky-cta svg { width: 20px; height: 20px; color: var(--olive); }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background: var(--near-black);
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: right center;
  width: 100%;
  height: 100%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(20,26,18,0.86) 0%,
    rgba(20,26,18,0.86) 38%,
    rgba(20,26,18,0.45) 58%,
    rgba(20,26,18,0.0) 72%
  );
}
/* hero layout: content top-left */
.hero {
  align-items: flex-start;
  padding-top: 70px;
}
.hero .container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 580px;
  padding: clamp(60px, 8vw, 110px) 0 clamp(48px, 6vw, 80px);
  animation: heroFadeUp 0.9s var(--ease) both;
}
@media (max-width: 768px) {
  .hero .container { display: block; }
  .hero__content { width: 100%; max-width: 100%; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}
.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--olive);
  display: block;
}
.hero h1 { color: var(--bone); margin-bottom: 24px; }
.hero h1 em {
  font-style: normal;
  color: var(--olive);
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245,241,234,0.75);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.hero__quiz-link {
  margin-bottom: 32px;
  font-size: 0.9rem;
}
.hero__quiz-link a {
  color: rgba(245,241,234,0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.hero__quiz-link a:hover { color: var(--bone); }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: rgba(245,241,234,0.65);
  font-weight: 400;
}
.hero__trust-item svg {
  width: 16px; height: 16px;
  color: var(--olive);
  flex-shrink: 0;
}

/* ── Credibility Strip ── */
.cred-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(28,28,25,0.08);
  padding: 20px 0;
}
.cred-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--near-black);
}
.cred-item svg {
  width: 20px; height: 20px;
  color: var(--olive);
  flex-shrink: 0;
}
.cred-divider {
  width: 1px;
  height: 28px;
  background: rgba(28,28,25,0.12);
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; color: #FFD700; fill: #FFD700; }

/* ── Section Headers ── */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--stone); max-width: 600px; }
.section-header--center p { margin: 0 auto; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(28,28,25,0.08);
  border: 1px solid rgba(28,28,25,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  position: relative;
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover { background: var(--olive-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 44px; height: 44px;
  background: var(--olive-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s;
}
.service-card__icon svg {
  width: 22px; height: 22px;
  color: var(--olive);
}
.service-card:hover .service-card__icon { background: var(--olive); }
.service-card:hover .service-card__icon svg { color: var(--white); }
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { font-size: 0.875rem; color: var(--stone); line-height: 1.6; margin-bottom: 18px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--olive);
  transition: gap 0.2s;
}
.service-card:hover .service-card__link { gap: 10px; }
.service-card__link svg { width: 14px; height: 14px; }

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item__icon {
  width: 48px; height: 48px;
  background: var(--olive);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item__icon svg { width: 22px; height: 22px; color: var(--white); }
.why-item__text h3 { margin-bottom: 6px; font-size: 1rem; }
.why-item__text p { font-size: 0.875rem; color: var(--stone); }

/* ── Projects ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.project-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--warm-mid);
}
.project-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.project-card:hover .project-card__img img { transform: scale(1.04); }
.project-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--near-black);
  color: var(--bone);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
}
.project-card__body { padding: 24px; }
.project-card__body h3 { margin-bottom: 8px; font-size: 1rem; }
.project-card__body p { font-size: 0.875rem; color: var(--stone); line-height: 1.6; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
/* Review group wrappers must be transparent to the grid so cards flow
   directly into the grid columns. Hidden by default, revealed via JS. */
.reviews-extra { display: none; }
.reviews-extra.is-visible { display: contents; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--olive);
}
.testimonial-card .stars,
.testimonial-card__stars { margin-bottom: 16px; color: #F4A320; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card blockquote,
.testimonial-card__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--near-black);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card blockquote::before,
.testimonial-card__body::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--olive-light);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}
.testimonial-card__author,
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--stone);
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--olive-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--olive);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2px;
}
.testimonial-card__loc {
  font-size: 0.78rem;
  color: var(--stone);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--near-black);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(92, 138, 46, 0.08);
  pointer-events: none;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__text h2 { color: var(--bone); margin-bottom: 10px; }
.cta-banner__text p { color: rgba(245,241,234,0.65); }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Contact Form ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--near-black);
}
.form-group .field-hint {
  font-size: 0.78rem;
  color: var(--stone);
  margin-top: 4px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--near-black);
  background: var(--white);
  border: 1.5px solid rgba(28,28,25,0.2);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(92,138,46,0.12);
}
.form-control::placeholder { color: var(--stone); }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888880' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit-note {
  font-size: 0.78rem;
  color: var(--stone);
  margin-top: 10px;
  text-align: center;
}
.form-success {
  display: none;
  background: var(--olive-light);
  border: 1px solid var(--olive);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--olive);
  font-weight: 500;
}

/* ── Pre-form testimonial nudge ── */
.pre-form-quote {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 0 40px;
  text-align: center;
  border: none;
}
.pre-form-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--bone);
  line-height: 1.65;
  opacity: 0.9;
}
.pre-form-quote__attr {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(245,241,234,0.5);
  letter-spacing: 0.04em;
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info .lead { margin-bottom: 40px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(28,28,25,0.08);
}
.contact-detail:first-of-type { border-top: 1px solid rgba(28,28,25,0.08); }
.contact-detail svg {
  width: 22px; height: 22px;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail strong { display: block; font-size: 0.875rem; margin-bottom: 2px; }
.contact-detail span { font-size: 0.925rem; color: var(--stone); }
.contact-detail a { color: var(--near-black); }
.contact-detail a:hover { color: var(--olive); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { margin-bottom: 8px; color: var(--near-black); }
.contact-form-card .small { color: var(--stone); }
.contact-form-card .small { margin-bottom: 28px; display: block; }

/* ── Service Areas Strip ── */
.areas-strip { background: var(--near-black); padding: 48px 0; }
.areas-strip h2 { color: var(--bone); margin-bottom: 32px; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: background 0.2s, border-color 0.2s;
}
.area-card:hover {
  background: rgba(92,138,46,0.15);
  border-color: var(--olive);
}
.area-card h3 {
  color: var(--bone);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.area-card ul { display: flex; flex-direction: column; gap: 6px; }
.area-card ul li a {
  font-size: 0.825rem;
  color: rgba(245,241,234,0.55);
  transition: color 0.15s;
}
.area-card ul li a:hover { color: var(--olive); }

/* ── Footer ── */
.footer {
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(245,241,234,0.5);
  margin: 12px 0 24px;
  max-width: 260px;
  line-height: 1.7;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bone);
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,241,234,0.55);
  transition: all 0.2s;
}
.footer__social a:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.4);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.875rem;
  color: rgba(245,241,234,0.6);
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--bone); }
.footer__col p {
  font-size: 0.875rem;
  color: rgba(245,241,234,0.6);
  line-height: 1.7;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(245,241,234,0.35);
}

/* ── Footer Form ── */
.footer-form {
  background: rgba(92,138,46,0.12);
  border: 1px solid rgba(92,138,46,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
}
.footer-form h2 { color: var(--bone); margin-bottom: 8px; }
.footer-form p { color: rgba(245,241,234,0.65); margin-bottom: 28px; }
.footer-form .form-control {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--bone);
}
.footer-form .form-control::placeholder { color: rgba(245,241,234,0.35); }
.footer-form .form-control:focus {
  border-color: var(--olive);
  background: rgba(255,255,255,0.12);
}
.footer-form label { color: rgba(245,241,234,0.75); }
.footer-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer-form .form-submit-note { color: rgba(245,241,234,0.4); text-align: left; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--near-black);
  padding: clamp(80px, 10vw, 120px) 0 clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--olive), transparent);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { color: var(--bone); margin-bottom: 16px; }
.page-hero .lead { color: rgba(245,241,234,0.7); max-width: 620px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.8rem;
  color: rgba(245,241,234,0.45);
}
.breadcrumb a:hover { color: var(--bone); }
.breadcrumb svg { width: 12px; height: 12px; color: rgba(245,241,234,0.3); }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.process-step {
  counter-increment: step;
  position: relative;
  padding-left: 0;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--olive-light);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; color: var(--stone); }

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(28,28,25,0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--near-black);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--olive-light); }
.faq-question svg {
  width: 20px; height: 20px;
  color: var(--olive);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer__inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--stone);
}

/* ── Service page specific ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.service-sidebar {
  position: sticky;
  top: 90px;
}
.service-sidebar .contact-form-card { margin-bottom: 24px; }
.service-sidebar-card {
  background: var(--near-black);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--bone);
}
.service-sidebar-card h4 { color: var(--bone); margin-bottom: 12px; }
.service-sidebar-card ul { display: flex; flex-direction: column; gap: 10px; }
.service-sidebar-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(245,241,234,0.7);
}
.service-sidebar-card li svg {
  width: 14px; height: 14px;
  color: var(--olive);
  flex-shrink: 0;
}

/* ── Areas served on service pages ── */
.areas-served {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.area-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid rgba(28,28,25,0.1);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}
.area-link:hover {
  background: var(--olive-light);
  border-color: var(--olive);
  color: var(--olive);
}
.area-link svg { width: 14px; height: 14px; color: var(--olive); flex-shrink: 0; }

/* ── Comparison table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.comparison-table th {
  background: var(--near-black);
  color: var(--bone);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
}
.comparison-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(28,28,25,0.06);
}
.comparison-table tr:nth-child(even) td { background: var(--warm-mid); }
.comparison-table .check { color: var(--olive); font-weight: 600; }
.comparison-table .cross { color: #dc2626; }

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--olive);
  color: var(--white);
  padding: 8px 16px;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.mb-40 { margin-bottom: 40px; }
.divider {
  height: 1px;
  background: rgba(28,28,25,0.08);
  margin: 48px 0;
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--olive-light);
  color: var(--olive);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================================================
   HERO ENHANCEMENTS
   ============================================================ */

/* Rotating headline — two-line structure prevents layout shift */
.hero__h1-rotate {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 12px;
  /* Force two discrete lines */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__h1-static {
  display: block;
}
/* Fixed-height container — phrases swap inside here, nothing outside moves */
.hero__h1-pain-wrap {
  display: block;
  /* 2.6em = two full lines at the h1 line-height on the narrowest viewport.
     Phrases are always <= 2 lines so this is the true worst-case ceiling. */
  height: 2.6em;
  overflow: hidden;
  position: relative;
}
.hero__h1-pain {
  display: block;
  font-style: normal;
  color: var(--olive);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero__h1-pain.fade-swap {
  opacity: 0;
  transform: translateY(8px);
}

/* Progress bar under rotating headline */
.hero__rotate-bar {
  width: 280px;
  height: 2px;
  background: rgba(245,241,234,0.15);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}
.hero__rotate-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--olive);
  border-radius: 2px;
  transition: width linear;
}

/* Grass blade divider */
.hero__grass {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}
.hero__grass svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================================================
   STAT TICKER (animated counters)
   ============================================================ */
.stat-ticker {
  background: var(--near-black);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.stat-ticker__inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 48px;
}
.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-item__label {
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(245,241,234,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}


/* ============================================================
   MOTTO BREAK — two trapezoid photos flanking center motto text
   Both frames lean right (parallelogram-style). Dark background.
   ============================================================ */
.motto-break {
  background: var(--warm-mid);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px clamp(24px, 4vw, 56px);
  gap: 0;
}
.motto-trap {
  position: relative;
  height: 160px;
}
.motto-trap--left img  { clip-path: polygon(0% 0%, 86% 0%, 100% 100%, 0% 100%); }
.motto-trap--right img { clip-path: polygon(0% 100%, 14% 0%, 100% 0%, 100% 100%); }
.motto-trap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.motto-text {
  padding: 0 clamp(24px, 3vw, 40px);
  text-align: center;
  min-width: 200px;
  max-width: 280px;
}
.motto-eyebrow { display: none; }
.motto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--near-black);
  line-height: 1.3;
  font-weight: 400;
  font-style: italic;
  margin: 0;
}
.motto-sub { display: none; }
@media (max-width: 768px) {
  .motto-break { display: none; }
}

/* ============================================================
   PROBLEM SELECTOR
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.problem-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
}
.problem-tile:hover {
  border-color: var(--olive);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.problem-tile[aria-pressed="true"] {
  border-color: var(--olive);
  background: var(--olive-light);
  box-shadow: 0 0 0 4px rgba(92,138,46,0.15), var(--shadow-md);
}
.problem-tile__icon {
  width: 52px; height: 52px;
  background: var(--olive-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.problem-tile__icon svg { width: 24px; height: 24px; color: var(--olive); }
.problem-tile[aria-pressed="true"] .problem-tile__icon { background: var(--olive); }
.problem-tile[aria-pressed="true"] .problem-tile__icon svg { color: var(--white); }
.problem-tile__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--near-black);
  line-height: 1.3;
}
.problem-tile__sub {
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.3;
  margin-top: -6px;
}
.problem-grid--4 { grid-template-columns: repeat(4, 1fr); }
.problem-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Answer panel */
.problem-answer {
  background: var(--near-black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: slideDown 0.35s var(--ease) both;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.problem-answer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 40px;
  gap: 24px;
}
.problem-answer__content { flex: 1; }
.problem-answer__tag { color: rgba(245,241,234,0.5); margin-bottom: 8px; }
.problem-answer__content h3 { color: var(--bone); margin-bottom: 12px; font-size: 1.2rem; }
.problem-answer__content p { color: rgba(245,241,234,0.7); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.problem-answer__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.problem-answer__service-link { border-color: rgba(245,241,234,0.3); color: rgba(245,241,234,0.7); font-size: 0.875rem; padding: 10px 20px; }
.problem-answer__service-link:hover { background: rgba(245,241,234,0.1); color: var(--bone); }
.problem-answer__close {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(245,241,234,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 4px;
}
.problem-answer__close:hover { background: rgba(255,255,255,0.15); color: var(--bone); }

/* ============================================================
   PROJECT PFR CARDS (Problem / Fix / Result)
   ============================================================ */
.project-pfr {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.project-pfr__row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(28,28,25,0.06);
  align-items: baseline;
}
.project-pfr__row:last-child { border-bottom: none; }
.project-pfr dt {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  padding-top: 2px;
}
.project-pfr dd {
  font-size: 0.875rem;
  color: var(--near-black);
  line-height: 1.55;
  margin: 0;
}
.project-pfr__row--result dt { color: var(--olive); }
.project-pfr__row--result dd { font-weight: 500; color: var(--near-black); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], input, select, textarea, label { cursor: none; }
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--olive);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(92,138,46,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  will-change: transform;
}
.cursor-dot.cursor--hover {
  width: 12px; height: 12px;
  background: var(--olive-dark);
}
.cursor-ring.cursor--hover {
  width: 52px; height: 52px;
  border-color: rgba(92,138,46,0.8);
}
.cursor-dot.cursor--click {
  width: 6px; height: 6px;
}
.cursor-ring.cursor--click {
  width: 28px; height: 28px;
}

/* ============================================================
   MAGNETIC BUTTONS
   ============================================================ */
.magnetic-btn {
  will-change: transform;
  transition: transform 0.3s var(--ease), background 0.2s, box-shadow 0.2s;
}

/* ============================================================
   3D CARD TILT
   ============================================================ */
.service-card {
  transform-style: preserve-3d;
  perspective: 800px;
}

/* ============================================================
   DIAGONAL SECTION DIVIDERS
   ============================================================ */
/* All sections need position:relative so z-index works when
   adjacent to diagonal sections that bleed via negative margin */
.section {
  position: relative;
  z-index: 2;
}
.section--warm {
  position: relative;
  margin: -2.5vw 0;
  padding-top: calc(var(--section-pad) + 2.5vw);
  padding-bottom: calc(var(--section-pad) + 2.5vw);
  z-index: 1;
  background: transparent;
}
.section--warm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--warm-mid);
  clip-path: polygon(0 0, 100% 2.5vw, 100% 100%, 0 calc(100% - 2.5vw));
  z-index: -1;
}
/* Restore z-index stacking so diagonals layer correctly */
.section--green {
  position: relative;
  z-index: 1;
  margin: -2.5vw 0;
  padding-top: calc(var(--section-pad) + 2.5vw);
  padding-bottom: calc(var(--section-pad) + 2.5vw);
  background: transparent;
}
.section--green::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--olive-light);
  clip-path: polygon(0 2.5vw, 100% 0, 100% calc(100% - 2.5vw), 0 100%);
  z-index: -1;
}
.cta-banner {
  position: relative;
  z-index: 2;
  clip-path: polygon(0 2.5vw, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(48px, 6vw, 80px) + 2.5vw);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .problem-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 0 20px; }

  .nav__links { display: none; }
  .nav__cta  { display: none; }
  .nav__hamburger { display: flex; }
  .sticky-cta { display: block; }
  .nav__dropdown, .nav__mega { display: none !important; }

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

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-form .form-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }

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

  .nav__mega { width: 100%; left: 0; }

  body { padding-bottom: 65px; }
}

@media (max-width: 860px) {
  /* Flip cards: 2 columns on tablet */
  .florida-proof { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Hide simple sticky-cta — sticky-call (more detailed) takes over on mobile */
  .sticky-cta { display: none; }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .problem-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .problem-answer__inner { padding: 24px; flex-direction: column; }
  .stat-ticker__inner { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { padding: 12px 20px; }
  /* Disable diagonal clips on mobile — they cause overflow issues */
  .section--warm, .section--green, .cta-banner {
    clip-path: none;
    margin: 0;
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
  }
  .section--warm { background: var(--warm-mid); }
  .section--green { background: var(--olive-light); }
  .section--warm::before, .section--green::before { display: none; }

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

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }

  .areas-grid { grid-template-columns: 1fr; }
  .areas-served { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr; }

  .cred-strip__inner { gap: 16px; }
  .cred-divider { display: none; }

  .footer-form { padding: 24px; }
  .contact-form-card { padding: 24px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .problem-grid--3 { grid-template-columns: 1fr; }
  .areas-served { grid-template-columns: 1fr; }
  .hero__trust { flex-direction: column; gap: 12px; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  /* Tighten section header copy width on small screens */
  .section-header p { max-width: 100%; }
}

/* ============================================================
   COST OF WAITING CALCULATOR
   ============================================================ */
.calc-widget {
  max-width: 780px;
  margin: 0 auto;
}
.calc-slider-row {
  margin-bottom: 40px;
  text-align: center;
}
.calc-slider-label {
  display: block;
  color: rgba(245,241,234,0.8);
  font-size: 1rem;
  margin-bottom: 20px;
}
.calc-slider-track {
  position: relative;
  padding-bottom: 28px;
}
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(245,241,234,0.15);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--olive);
  cursor: grab;
  box-shadow: 0 0 0 4px rgba(92,138,46,0.25);
  transition: box-shadow 0.2s;
}
.calc-range:active::-webkit-slider-thumb {
  cursor: grabbing;
  box-shadow: 0 0 0 8px rgba(92,138,46,0.15);
}
.calc-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--olive);
  cursor: grab;
  border: none;
}
.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.75rem;
  color: rgba(245,241,234,0.4);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.calc-duration {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--olive);
  margin-top: 8px;
  min-height: 1.4em;
}
.calc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.calc-card {
  background: rgba(245,241,234,0.05);
  border: 1px solid rgba(245,241,234,0.1);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s;
}
.calc-card--highlight {
  border-color: var(--olive);
  background: rgba(92,138,46,0.1);
}
.calc-card__icon {
  color: var(--olive);
  margin-bottom: 12px;
}
.calc-card__num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 8px;
  min-height: 1.2em;
  transition: color 0.3s;
}
.calc-card--highlight .calc-card__num { color: var(--olive); }
.calc-card__label {
  font-size: 0.78rem;
  color: rgba(245,241,234,0.55);
  line-height: 1.4;
}
.calc-disclaimer {
  font-size: 0.72rem;
  color: rgba(245,241,234,0.35);
  text-align: center;
  margin-bottom: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .calc-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .calc-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .calc-card { padding: 16px 12px; }
}

/* ============================================================
   DREAM BUILDER
   ============================================================ */
.dream-builder {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  min-height: 320px;
}
.dream-step {
  display: none;
}
.dream-step.active {
  display: block;
  animation: fadeSlideUp 0.35s var(--ease) both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dream-step__q {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: var(--near-black);
  margin-bottom: 24px;
  text-align: center;
}
.dream-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dream-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bone);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--near-black);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(28,28,25,0.06);
}
.dream-choice:hover {
  border-color: var(--olive);
  background: #fff;
  transform: translateY(-2px);
}
.dream-choice__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
/* Result */
.dream-result {
  animation: fadeSlideUp 0.4s var(--ease) both;
}
.dream-result__inner {
  background: var(--near-black);
  border-radius: 16px;
  padding: 36px;
  color: var(--bone);
}
.dream-result__inner .eyebrow { color: var(--olive); margin-bottom: 8px; }
.dream-result__inner h3 { color: var(--bone); margin-bottom: 12px; }
.dream-result__inner p { color: rgba(245,241,234,0.8); margin-bottom: 20px; }
.dream-result__outcome {
  background: rgba(92,138,46,0.15);
  border-left: 3px solid var(--olive);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: rgba(245,241,234,0.9);
}
.dream-result__outcome strong { color: var(--olive); display: block; margin-bottom: 4px; }
.dream-result__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(245,241,234,0.25);
  color: rgba(245,241,234,0.6);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(245,241,234,0.5); color: var(--bone); }
/* Progress dots */
.dream-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dream-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(28,28,25,0.15);
  transition: background 0.2s, transform 0.2s;
}
.dream-dot.active {
  background: var(--olive);
  transform: scale(1.3);
}
@media (max-width: 480px) {
  .dream-choices { grid-template-columns: 1fr; }
  .dream-result__inner { padding: 24px; }
}

/* ============================================================
   YARD FINDER (combined problem selector + dream builder)
   ============================================================ */
.yard-finder { max-width: 700px; margin: 0 auto; }
.yf-progress {
  height: 4px;
  background: rgba(28,28,25,0.1);
  border-radius: 2px;
  margin-bottom: 36px;
  overflow: hidden;
}
.yf-progress__bar {
  height: 100%;
  background: var(--olive);
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}
.yf-step { display: none; }
.yf-step.active { display: block; animation: fadeSlideUp 0.35s var(--ease) both; }
.yf-step__q {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}
.yf-result { animation: fadeSlideUp 0.4s var(--ease) both; }
.yf-result__inner {
  background: var(--near-black);
  border-radius: 16px;
  padding: 40px;
  color: var(--bone);
}
.yf-result__inner .eyebrow { color: var(--olive); margin-bottom: 8px; }
.yf-result__inner h3 { color: var(--bone); margin-bottom: 12px; }
.yf-result__inner p { color: rgba(245,241,234,0.8); margin-bottom: 20px; }
.yf-result__outcome {
  background: rgba(92,138,46,0.15);
  border-left: 3px solid var(--olive);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: rgba(245,241,234,0.9);
}
.yf-result__outcome strong { color: var(--olive); display: block; margin-bottom: 4px; }
.yf-result__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.yf-result__actions .jm-restart-btn {
  color: rgba(245,241,234,0.6);
  border-color: rgba(245,241,234,0.2);
}
.yf-result__actions .jm-restart-btn:hover {
  color: var(--bone);
  border-color: rgba(245,241,234,0.5);
}
@media (max-width: 480px) {
  .yf-result__inner { padding: 24px; }
  .yf-result__actions { flex-direction: column; }
}

/* ============================================================
   JOB MATCHER
   ============================================================ */
.job-matcher { max-width: 640px; margin: 0 auto; }

/* Selector label */
.jm-selector__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
  display: block;
}

/* Form rows — scope-of-work document aesthetic */
.jm-form {
  border: 1px solid rgba(28,28,25,0.12);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(28,28,25,0.07);
  margin-bottom: 20px;
}
.jm-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(28,28,25,0.08);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s var(--ease), transform 0.28s var(--ease), opacity 0.28s var(--ease);
  user-select: none;
}
.jm-row:last-child { border-bottom: none; }
.jm-row:hover { background: rgba(92,138,46,0.04); }

/* Animated left accent bar */
.jm-row__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--olive);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 0 2px 2px 0;
}
.jm-row:has(.jm-row__input:checked) .jm-row__bar { transform: scaleY(1); }
.jm-row:has(.jm-row__input:checked) { background: rgba(92,138,46,0.06); }

.jm-row__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* SVG icon */
.jm-row__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  transition: color 0.2s;
}
.jm-row__icon svg { width: 20px; height: 20px; }
.jm-row:has(.jm-row__input:checked) .jm-row__icon { color: var(--olive); }

/* Text block */
.jm-row__text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.jm-row__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--near-black);
  transition: color 0.2s;
  line-height: 1.2;
}
.jm-row__desc {
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.3;
}
.jm-row:has(.jm-row__input:checked) .jm-row__name { color: var(--olive); }

/* Checkbox */
.jm-row__check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid rgba(28,28,25,0.2);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.jm-row__check svg { width: 13px; height: 13px; stroke: #fff; opacity: 0; transition: opacity 0.15s; }
.jm-row:has(.jm-row__input:checked) .jm-row__check {
  background: var(--olive);
  border-color: var(--olive);
  transform: scale(1.1);
}
.jm-row:has(.jm-row__input:checked) .jm-row__check svg { opacity: 1; }

/* Row exit/enter animations */
.jm-row--exit {
  transform: translateX(-40px);
  opacity: 0;
}
.jm-row--enter {
  animation: jmRowEnter 0.32s var(--ease) both;
}
@keyframes jmRowEnter {
  from { transform: translateX(-30px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

/* Footer: tally + submit */
.jm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.jm-tally {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--olive);
  min-width: 120px;
  transition: opacity 0.2s;
}

/* Submit button */
.jm-submit { flex-shrink: 0; }
.jm-submit:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
@keyframes jmPulse {
  0%   { box-shadow: 0 0 0 0 rgba(92,138,46,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(92,138,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(92,138,46,0); }
}
.jm-submit--pulse { animation: jmPulse 0.6s var(--ease); }

/* Result panel transitions */
.jm-result--enter {
  animation: jmResultIn 0.38s var(--ease) both;
}
.jm-result--exit {
  animation: jmResultOut 0.26s var(--ease) both;
}
@keyframes jmResultIn {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes jmResultOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(32px); }
}

/* Receipt */
.jm-receipt {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(28,28,25,0.14);
  overflow: hidden;
  font-family: 'Courier New', Courier, monospace;
}
.jm-receipt__header {
  background: var(--near-black);
  color: var(--bone);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.jm-receipt__store { display: flex; flex-direction: column; gap: 4px; }
.jm-receipt__store strong { font-size: 0.85rem; letter-spacing: 0.05em; color: var(--bone); }
.jm-receipt__store span { font-size: 0.72rem; color: rgba(245,241,234,0.55); }
.jm-receipt__match-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--olive);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.jm-receipt__photo-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--near-black);
}
.jm-receipt__photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jm-receipt__photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,28,25,0.75));
  color: var(--bone);
  font-size: 0.78rem;
  padding: 20px 16px 10px;
}
.jm-receipt__meta {
  display: flex;
  justify-content: space-between;
  padding: 14px 28px;
  font-size: 0.78rem;
  color: var(--stone);
  border-bottom: 1px dashed rgba(28,28,25,0.15);
}
.jm-receipt__divider {
  padding: 6px 28px;
  font-size: 0.65rem;
  color: rgba(28,28,25,0.18);
  overflow: hidden;
  white-space: nowrap;
}
.jm-receipt__lines { list-style: none; padding: 8px 0; margin: 0; }
.jm-receipt__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 7px 28px;
  font-size: 0.82rem;
  animation: fadeSlideUp 0.22s var(--ease) both;
}
.jm-receipt__line-label { color: var(--near-black); flex: 1; }
.jm-receipt__line-amount { color: var(--near-black); font-weight: 600; white-space: nowrap; }
.jm-receipt__total {
  display: flex;
  justify-content: space-between;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--near-black);
}
.jm-receipt__result-note {
  padding: 14px 28px;
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--stone);
  margin: 0;
  border-top: 1px dashed rgba(28,28,25,0.15);
}
.jm-receipt__disclaimer {
  margin: 0 28px 16px;
  padding: 12px 16px;
  background: #fffbea;
  border-left: 3px solid #e6b800;
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  color: #6b5a00;
  line-height: 1.5;
  border-radius: 0 6px 6px 0;
}
.jm-receipt__actions {
  display: flex;
  gap: 12px;
  padding: 20px 28px 28px;
  flex-wrap: wrap;
  align-items: center;
  font-family: Inter, sans-serif;
}
.jm-restart-btn {
  background: transparent;
  border: 1px solid rgba(28,28,25,0.2);
  color: var(--stone);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.jm-restart-btn:hover { border-color: var(--near-black); color: var(--near-black); }

@media (max-width: 600px) {
  .jm-footer { flex-direction: column; align-items: stretch; }
  .jm-submit { text-align: center; justify-content: center; }
  .jm-receipt__actions { flex-direction: column; }
  .jm-receipt__header { flex-direction: column; gap: 10px; }
  .jm-receipt__line, .jm-receipt__total, .jm-receipt__result-note, .jm-receipt__meta { padding-left: 16px; padding-right: 16px; }
  .jm-receipt__divider { padding-left: 16px; padding-right: 16px; }
  .jm-receipt__disclaimer { margin-left: 16px; margin-right: 16px; }
  .jm-receipt__actions { padding: 20px 16px 24px; }
}

/* ============================================================
   COMPLAINT MIRROR
   ============================================================ */
.cm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cm-card {
  perspective: 800px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  min-height: 220px;
}
.cm-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 16px;
}
.cm-card.flipped .cm-card__inner { transform: rotateY(180deg); }
.cm-card__front,
.cm-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cm-card__front {
  background: var(--white);
  border: 2px solid rgba(92,138,46,0.18);
  box-shadow: 0 4px 20px rgba(28,28,25,0.07);
}
.cm-card__back {
  background: var(--near-black);
  transform: rotateY(180deg);
}
.cm-card__quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--near-black);
  line-height: 1.55;
  flex: 1;
}
.cm-card__quote::before { content: '\201C'; }
.cm-card__quote::after  { content: '\201D'; }
.cm-card__tap {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 16px;
}
.cm-card__answer {
  font-size: 0.9rem;
  color: rgba(245,241,234,0.88);
  line-height: 1.6;
  margin: 0;
}
.cm-card__answer::before {
  content: 'How we handle it';
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .cm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cm-grid { grid-template-columns: 1fr; }
  .cm-card { min-height: 0; }
  .cm-card__inner { min-height: 0; position: static; }
  /* On mobile, show as accordion instead of flip */
  .cm-card__front { position: static; backface-visibility: visible; -webkit-backface-visibility: visible; }
  .cm-card__back  { position: static; backface-visibility: visible; -webkit-backface-visibility: visible; transform: none; display: none; border-radius: 0 0 16px 16px; }
  .cm-card.flipped .cm-card__inner { transform: none; }
  .cm-card.flipped .cm-card__back  { display: flex; }
  .cm-card.flipped .cm-card__front { border-radius: 16px 16px 0 0; border-bottom: none; }
}

/* ============================================================
   FLORIDA PROOF
   ============================================================ */
/* Florida Proof — flip card grid */
.florida-proof__hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--stone);
  font-style: italic;
  margin-bottom: 20px;
}
.florida-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Each card is a fixed-height flip container */
.fp-item {
  height: 220px;
  perspective: 900px;
  cursor: pointer;
}
/* The rotating inner wrapper holds front + back */
.fp-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.45, 0, 0.55, 1);
  border-radius: 12px;
}
.fp-item.flipped .fp-inner {
  transform: rotateY(180deg);
}
/* Shared face styles */
.fp-front,
.fp-back {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  text-align: center;
}
/* Front face */
.fp-front {
  background: var(--bone);
  border: 1.5px solid rgba(28,28,25,0.1);
}
.fp-front strong {
  font-size: 1rem;
  color: var(--near-black);
  line-height: 1.3;
}
.fp-front span {
  font-size: 0.8rem;
  color: var(--stone);
}
/* Back face — rotated 180deg, olive-tinted */
.fp-back {
  background: var(--olive);
  transform: rotateY(180deg);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.6;
}
.fp-back__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}
.fp-back p {
  margin: 0;
  color: #fff;
}
.fp-icon {
  color: var(--olive);
}
/* Status badges */
.fp-status {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: auto;
}
.fp-status--threat {
  background: rgba(220,38,38,0.1);
  color: #dc2626;
}
.fp-status--solved {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

/* ============================================================
   WHY EPIC HORIZONS — typewriter + signature
   ============================================================ */
.why-section {
  background: var(--near-black);
}
.why-cta {
  text-align: center;
  margin-top: 56px;
}

/* ── Affidavit container ── */
.affidavit {
  max-width: 660px;
  margin: 0 auto;
}
.affidavit-header {
  margin-bottom: 48px;
}
.affidavit-header .eyebrow { color: var(--olive); }
.affidavit-header h2 {
  color: var(--bone);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-top: 8px;
}

/* ── Typewriter lines ── */
.affidavit-lines {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.affidavit-line {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--bone);
  line-height: 1.5;
  min-height: 1.5em; /* reserves space before text appears */
  opacity: 0;
  /* Each line fades in as a whole once its text is done typing */
  transition: opacity 0.01s;
}
.affidavit-line.typing { opacity: 1; }

/* Blinking cursor appended during typing */
.affidavit-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--olive);
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.55s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Signature block ── */
.affidavit-sig {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.affidavit-sig.visible { opacity: 1; }

.sig-img {
  width: 180px;
  height: auto;
  display: block;
  opacity: 0.85;
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(600%) hue-rotate(60deg) brightness(0.7);
}

.sig-name {
  font-size: 0.78rem;
  color: var(--stone);
  font-style: italic;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(245,241,234,0.15);
  padding-top: 10px;
  width: 240px;
}


/* ============================================================
   TIMELAPSE SCRUBBER
   ============================================================ */

/* Tab strip */
.tl-tabs {
  display: flex;
  position: relative;
  max-width: 900px;
  margin: 0 auto 0;
  border-bottom: 1px solid rgba(245,241,234,0.12);
  gap: 0;
}
.tl-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: rgba(245,241,234,0.45);
  transition: color 0.25s var(--ease), background 0.2s;
  border-radius: 8px 8px 0 0;
}
.tl-tab:hover { color: rgba(245,241,234,0.75); background: rgba(245,241,234,0.04); }
.tl-tab.active { color: var(--bone); }
.tl-tab__num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--olive);
  opacity: 0.6;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.25s;
}
.tl-tab.active .tl-tab__num { opacity: 1; }
.tl-tab__info { display: flex; flex-direction: column; gap: 2px; }
.tl-tab__title {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}
.tl-tab__loc {
  font-size: 0.7rem;
  color: rgba(245,241,234,0.4);
  line-height: 1.2;
  transition: color 0.25s;
}
.tl-tab.active .tl-tab__loc { color: rgba(245,241,234,0.6); }

/* Sliding olive indicator */
.tl-tab__indicator {
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px 2px 0 0;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@media (max-width: 600px) {
  .tl-tab { padding: 12px 12px; gap: 8px; }
  .tl-tab__loc { display: none; }
  .tl-tab__title { font-size: 0.78rem; }
  .tl-tab__num { display: none; }
}

.tl-scrubber {
  max-width: 900px;
  margin: 0 auto 16px;
}
.tl-scrubber__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.tl-scrubber__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
  opacity: 1;
}
.tl-scrubber__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,28,25,0.45);
  transition: opacity 0.4s;
  pointer-events: none;
}
.tl-scrubber__overlay.hidden { opacity: 0; }
.tl-scrubber__hint {
  color: rgba(245,241,234,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 24px;
}
.tl-scrubber__label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28,28,25,0.75);
  color: var(--bone);
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.tl-scrubber__label.visible { opacity: 1; }
.tl-scrubber__controls {
  background: rgba(245,241,234,0.06);
  border-radius: 0 0 12px 12px;
  padding: 20px 24px 16px;
}
.tl-progress-track {
  position: relative;
  height: 6px;
  background: rgba(245,241,234,0.12);
  border-radius: 6px;
  margin-bottom: 8px;
  margin-top: 16px;
  cursor: pointer;
}
.tl-progress-fill {
  height: 100%;
  background: var(--olive);
  border-radius: 6px;
  width: 0%;
  transition: width 0.05s linear;
  pointer-events: none;
}
/* Visible scrub thumb that rides on the fill */
.tl-progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.45);
  pointer-events: none;
  left: 0%;
  transition: left 0.05s linear;
}
.tl-range {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 36px;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 2;
}
.tl-endpoints {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(245,241,234,0.4);
}
.tl-caption {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245,241,234,0.45);
  margin-bottom: 12px;
}
.tl-swap-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(245,241,234,0.3);
  margin-bottom: 0;
}
.tl-ffmpeg-block {
  max-width: 700px;
  margin: 16px auto 0;
  background: rgba(245,241,234,0.05);
  border: 1px solid rgba(245,241,234,0.1);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.8rem;
  color: rgba(245,241,234,0.6);
}
.tl-ffmpeg-block code {
  display: block;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--olive);
  font-family: monospace;
  word-break: break-all;
  margin-bottom: 8px;
}

/* ============================================================
   30-DAY PROMISE TIMELINE
   ============================================================ */
.promise-timeline {
  max-width: 680px;
  margin: 0 auto;
}
.pt-step {
  display: flex;
  gap: 0;
  position: relative;
}
.pt-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  margin-right: 28px;
}
.pt-step__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bone);
  border: 3px solid var(--olive);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s, transform 0.3s;
}
.pt-step__dot--final {
  background: var(--olive);
  width: 20px;
  height: 20px;
}
.pt-step.in-view .pt-step__dot {
  background: var(--olive);
  transform: scale(1.25);
}
.pt-step__line {
  width: 2px;
  flex: 1;
  background: rgba(92,138,46,0.2);
  margin-top: 4px;
  min-height: 40px;
}
.pt-step__content {
  padding-bottom: 40px;
  flex: 1;
}
.pt-step--final .pt-step__content { padding-bottom: 0; }
.pt-step__day {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 4px;
}
.pt-step__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 8px;
}
.pt-step__body {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 8px;
}
.pt-step__you {
  font-size: 0.82rem;
  color: var(--olive-dark);
  background: rgba(92,138,46,0.07);
  border-radius: 6px;
  padding: 8px 12px;
  display: inline-block;
}
.mt-20 { margin-top: 20px; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 16px;
  border-radius: 12px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: col-resize;
  /* Fixed aspect ratio so layout never shifts */
  aspect-ratio: 2 / 1;
  background: var(--near-black);
}
.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
}
.ba-slider__before img,
.ba-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}
/* After image clips from the right based on CSS variable */
.ba-slider__after {
  clip-path: inset(0 0 0 var(--ba-pos, 50%));
}
.ba-label {
  position: absolute;
  bottom: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-label--before {
  left: 14px;
  background: rgba(28,28,25,0.75);
  color: var(--bone);
}
.ba-label--after {
  right: 14px;
  background: var(--olive);
  color: #fff;
}
/* Drag handle */
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos, 50%);
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
}
.ba-handle__grip {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  pointer-events: none;
}
.ba-handle__grip svg { color: var(--near-black); }

/* Caption */
.ba-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 48px;
}

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.sticky-call {
  display: none; /* shown only on mobile via media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.sticky-call.visible {
  transform: translateY(0);
}
.sticky-call__link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--near-black);
  border-top: 2px solid var(--olive);
  padding: 14px 20px;
  color: var(--bone);
  text-decoration: none;
  font-weight: 500;
}
.sticky-call__text {
  flex: 1;
  font-size: 0.85rem;
  opacity: 0.8;
}
.sticky-call__num {
  font-size: 1rem;
  font-weight: 600;
  color: var(--olive);
  white-space: nowrap;
}
/* Pulsing green dot */
.sticky-call__pulse {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92,138,46,0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(92,138,46,0); }
}

@media (max-width: 768px) {
  .sticky-call { display: block; }
  footer { padding-bottom: 70px; }

  /* Calculator */
  .calc-cards { grid-template-columns: 1fr 1fr; }

  /* Promise timeline */
  .pt-step__marker { width: 28px; margin-right: 16px; }

  /* Timelapse */
  .tl-scrubber__controls { padding: 14px 16px 12px; }
}

@media (max-width: 480px) {
  /* Calculator */
  .calc-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .calc-card  { padding: 14px 10px; }
  .calc-card__num { font-size: 1.2rem; }

  /* Dream builder */
  .dream-choices { grid-template-columns: 1fr; }
  .dream-result__inner { padding: 20px; }
  .dream-result__actions { flex-direction: column; }

  /* Florida proof flip cards — 1 column on mobile */
  .florida-proof { grid-template-columns: 1fr; }
  .fp-item { height: 200px; }

  /* Timeline */
  .pt-step__marker { width: 24px; margin-right: 12px; }
  .pt-step__content { padding-bottom: 28px; }
}

/* ============================================================
   3 PILLARS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.pillar-card {
  position: relative;
  background: var(--bone);
  border-radius: 16px;
  padding: 40px 32px 36px;
  overflow: hidden;
}
.pillar-card__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(92,138,46,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.pillar-card__icon {
  color: var(--olive);
  margin-bottom: 20px;
}
.pillar-card h3 {
  font-size: 1.2rem;
  color: var(--near-black);
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillar-card  { padding: 28px 24px; }
}

/* ============================================================
   SELECTIVITY STATEMENT
   ============================================================ */
.selectivity-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.selectivity-block__text h2 { margin-bottom: 20px; }
.selectivity-block__signal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.signal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--near-black);
}
.signal-item svg { color: var(--olive); flex-shrink: 0; }
.signal-note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--stone);
  font-style: italic;
}
@media (max-width: 768px) {
  .selectivity-block { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   GUARANTEE STACK
   ============================================================ */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guarantee-card {
  background: var(--bone);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.guarantee-card:hover {
  border-color: var(--olive);
  transform: translateY(-3px);
}
.guarantee-card__icon { color: var(--olive); }
.guarantee-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--near-black);
  margin: 0;
}
.guarantee-card p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.guarantee-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--stone);
  background: transparent;
  border: 1px solid var(--warm-mid);
  border-radius: var(--radius);
  padding: 4px 12px;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .guarantee-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .guarantee-card { padding: 22px 18px; }
}
@media (max-width: 480px) {
  .guarantee-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS — load-more controls
   ============================================================ */
.reviews-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.reviews-count {
  font-size: 0.85rem;
  color: var(--stone);
}
/* Hidden batches: use visibility+position trick so text is in DOM
   for SEO crawlers but visually absent until revealed by JS */
.reviews-batch {
  display: contents;
  visibility: hidden;
  position: absolute;
}
.reviews-batch.revealed {
  visibility: visible;
  position: static;
}
/* Fade-in animation for newly revealed cards */
.reviews-batch.revealed .testimonial-card {
  animation: reviewFadeIn 0.35s var(--ease) both;
}
@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FEATURED TESTIMONIAL — Blueprint Section F
   Isolated single quote in Playfair italic. No CTA.
   Placed before the quote form at peak hesitation.
   ============================================================ */
.featured-testimonial {
  background: var(--bone);
  text-align: center;
}
.featured-testimonial__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.featured-testimonial__mark {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.6;
  color: var(--warm-mid);
  display: block;
  margin-bottom: 24px;
  user-select: none;
  pointer-events: none;
}
.featured-testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--near-black);
  margin-bottom: 28px;
}
.featured-testimonial__cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}
.featured-testimonial__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--near-black);
}
.featured-testimonial__location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--stone);
}

/* CTA Banner — phone as plain text link, not competing button */
.cta-banner__phone {
  font-size: 1rem;
  color: rgba(245,241,234,0.65);
}
.cta-banner__phone a {
  color: var(--bone);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Dark quote form — contact-detail overrides on dark bg */
.section--dark .contact-detail {
  color: rgba(245,241,234,0.8);
  border-bottom-color: rgba(245,241,234,0.1);
}
.section--dark .contact-detail:first-of-type {
  border-top-color: rgba(245,241,234,0.1);
}
.section--dark .contact-detail strong {
  color: var(--bone);
}
.section--dark .contact-detail span {
  color: rgba(245,241,234,0.65);
}
.section--dark .contact-detail a {
  color: rgba(245,241,234,0.8);
}
.section--dark .contact-detail a:hover {
  color: var(--bone);
}

/* Print */
@media print {
  .nav, .sticky-cta, .footer-form, .cta-banner, .sticky-call { display: none; }
}

/* ============================================================
   INTERNAL NAVIGATION COMPONENTS
   Three reusable components for driving visitors deeper:
   1. .next-steps   — post-form strip: "projects like this also include"
   2. .inline-pull  — mid-page contextual callout box with a link
   3. .also-in      — city/service cross-link grid at page bottom
   ============================================================ */

/* 1 — Next Steps strip */
.next-steps {
  padding: 56px 0;
  border-top: 1px solid var(--warm-mid);
}
.next-steps__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}
.next-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.next-step-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px;
  background: var(--white);
  border: 1px solid var(--warm-mid);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.next-step-card:hover {
  border-color: rgba(92,138,46,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.next-step-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--olive-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.next-step-card__icon svg {
  width: 16px;
  height: 16px;
  color: var(--olive);
}
.next-step-card__text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 3px;
}
.next-step-card__text span {
  font-size: 0.8rem;
  color: var(--stone);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .next-steps__grid { grid-template-columns: 1fr; gap: 10px; }
}

/* 2 — Inline pull callout */
.inline-pull {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--olive-light);
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  text-decoration: none;
}
.inline-pull__icon {
  font-size: 1rem;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 1px;
}
.inline-pull__body {
  font-size: 0.875rem;
  color: var(--near-black);
  line-height: 1.6;
}
.inline-pull__body strong {
  font-weight: 600;
}
.inline-pull__cta {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--olive);
}

/* 3 — Also-in cross-link grid */
.also-in {
  padding: 48px 0;
  border-top: 1px solid var(--warm-mid);
}
.also-in__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
}
.also-in__col-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--warm-mid);
}
.also-in__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.also-in__links a {
  font-size: 0.875rem;
  color: var(--near-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.also-in__links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--olive);
  flex-shrink: 0;
}
.also-in__links a:hover { color: var(--olive); }
@media (max-width: 640px) {
  .also-in__cols { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   TOUCH / MOBILE — :active feedback & hover-lift removal
   Replaces desktop hover effects that never fire on touch.
   ============================================================ */
@media (hover: none) {
  /* Buttons — instant press feedback */
  .btn-primary:active  { background: var(--olive-dark); transform: scale(0.97); }
  .btn-outline:active  { background: var(--near-black); color: var(--bone); transform: scale(0.97); }
  .btn-outline-light:active { background: var(--bone); color: var(--near-black); transform: scale(0.97); }

  /* Service cards — show active state like a tap highlight */
  .service-card:active { background: var(--olive-light); }
  .service-card:active::before { transform: scaleX(1); }
  .service-card:active .service-card__icon { background: var(--olive); }
  .service-card:active .service-card__icon svg { color: var(--white); }
  .service-card:active .service-card__link { gap: 10px; }

  /* Project cards — strip lift, add press */
  .project-card { transition: transform 0.15s var(--ease); }
  .project-card:active { transform: scale(0.98); }
  .project-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .project-card:hover .project-card__img img { transform: none; }

  /* Guarantee cards */
  .guarantee-card:hover { transform: none; border-color: transparent; }
  .guarantee-card:active { transform: scale(0.98); border-color: var(--olive); }

  /* Problem tiles — already have aria-pressed active state, just add :active */
  .problem-tile:hover { transform: none; border-color: transparent; box-shadow: var(--shadow-sm); }
  .problem-tile:active { transform: scale(0.97); border-color: var(--olive); }

  /* Dream choices */
  .dream-choice:hover { transform: none; border-color: transparent; background: inherit; }
  .dream-choice:active { transform: scale(0.97); border-color: var(--olive); background: #fff; }

  /* Area cards */
  .area-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
  .area-card:active { background: rgba(92,138,46,0.15); border-color: var(--olive); }

  /* Next-step cards */
  .next-step-card:hover { border-color: var(--warm-mid); box-shadow: none; }
  .next-step-card:active { border-color: rgba(92,138,46,0.35); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

  /* Nav — strip desktop hover dropdown (handled by JS click on mobile) */
  .nav__item:hover .nav__dropdown { opacity: 0; visibility: hidden; pointer-events: none; }
  .nav__item:hover .nav__mega { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ── Photo focal-point overrides ──────────────────────────────────────────────
   Portrait images (1080×1920) used inside fixed-height landscape containers
   default to center-center crop. These rules shift the crop to keep the
   meaningful subject visible (person's face / finished work area).
   Selectors match the WebP filename suffix so the rule applies everywhere
   the image appears, regardless of template or page.
   ─────────────────────────────────────────────────────────────────────────── */

/* Founder photo — face is centered horizontally, ~42% down the portrait frame */
img[src$="dennis-founder.webp"] {
  object-position: center 42%;
}

/* Center-top: subject/face in upper portion of frame */
img[src$="20260413_145329_exported_14470.webp"],
img[src$="20260303_124735_exported_2321.webp"],
img[src$="vid_20241228_171423277_exported_29750.webp"],
img[src$="grading_w_skidsteer.webp"],
img[src$="inshot_20240502_230840968_exported_9499-edit.webp"],
img[src$="20250503_131109_exported_34954.webp"],
img[src$="20260223_151543_exported_10411.webp"],
img[src$="20250517_134432_exported_11235.webp"],
img[src$="20260302_121532_exported_11666.webp"],
img[src$="20260302_121532_exported_35966.webp"],
img[src$="professional-paver-installation-in-north-port-venice-port-charlotte-and-englewood.webp"] {
  object-position: center top;
}

/* Center-bottom: key detail at bottom of frame */
img[src$="20260105_144219_exported_31862~2.webp"],
img[src$="retaining-walls-new.webp"] {
  object-position: center bottom;
}
