/* ============================================================
   GUTTER DONE — Site Styles
   Mobile-first. No frameworks. Plain CSS + custom properties.
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --gd-green:      #173b2c;
  --gd-green-dark: #0d2119;
  --gd-evergreen:  #10251d;
  --gd-orange:     #d8663d;
  --gd-orange-dark:#b94f2d;
  --gd-bg:         #f4f0e7;
  --gd-paper:      #fffaf1;
  --gd-charcoal:   #17201d;
  --gd-slate:      #5d675f;
  --gd-white:      #ffffff;
  --gd-border:     #ddd5c7;

  --gd-font-headline: 'Oswald', sans-serif;
  --gd-font-body:     'Lato', sans-serif;
  --gd-font-accent:   var(--gd-font-headline);

  --gd-radius:  8px;
  --gd-shadow:  0 18px 45px rgba(20, 28, 24, 0.10);
  --gd-transition: 0.18s ease;

  --gd-max-width: 1180px;
  --gd-gutter:    clamp(1rem, 4vw, 2rem);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--gd-font-body);
  background: var(--gd-bg);
  color: var(--gd-charcoal);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--gd-max-width);
  margin: 0 auto;
  padding: 0 var(--gd-gutter);
}

.section-pad {
  padding: clamp(4.25rem, 8vw, 7rem) var(--gd-gutter);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gd-font-headline);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.55rem;
  border-radius: var(--gd-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--gd-transition), color var(--gd-transition),
              border-color var(--gd-transition), transform var(--gd-transition),
              box-shadow var(--gd-transition);
  white-space: nowrap;
  text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20,28,24,0.18);
}
.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
  transition-duration: 0.08s;
}

.btn-primary {
  background: var(--gd-orange);
  color: var(--gd-white);
  border-color: var(--gd-orange);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gd-orange-dark);
  border-color: var(--gd-orange-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--gd-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost:hover, .btn-ghost:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--gd-white);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--gd-green);
  border-color: var(--gd-green);
}
.btn-ghost-dark:hover, .btn-ghost-dark:focus {
  background: var(--gd-green);
  color: var(--gd-white);
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  background: rgba(255, 250, 241, 0.96);
  border-bottom: 1px solid rgba(23, 32, 29, 0.10);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 28px rgba(20,28,24,0.06);
  backdrop-filter: blur(10px);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  border-radius: 4px;
  /* Clean focus ring — no jolt, keyboard-accessible */
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition: outline-color var(--gd-transition);
}
.nav-logo a:focus-visible {
  outline-color: var(--gd-green);
}

.nav-logo img {
  height: 48px;
  width: auto;
  /* Prevent subpixel blurriness on SVG logos scaled by CSS */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Phone — always visible */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone a.phone-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--gd-font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--gd-green);
  transition: color var(--gd-transition);
}
.nav-phone a.phone-link:hover { color: var(--gd-orange); }

.nav-phone .phone-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .nav-phone a.phone-link {
    width: 40px;
    height: 40px;
    justify-content: center;
    font-size: 0;
    letter-spacing: 0;
  }
  .nav-phone .phone-icon {
    width: 22px;
    height: 22px;
  }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gd-charcoal);
  border-radius: 2px;
  transition: all 0.22s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — height-animated open/close */
.nav-menu {
  display: block;
  background: var(--gd-white);
  border-top: 0px solid var(--gd-border);
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.28s ease, padding 0.22s ease, border-top-width 0.01s ease;
}
.nav-menu.open {
  max-height: 440px;
  padding: 1rem 0;
  border-top-width: 1px;
}

.nav-menu ul {
  display: flex;
  flex-direction: column;
}
.nav-menu ul li a {
  display: block;
  padding: 0.75rem var(--gd-gutter);
  font-family: var(--gd-font-headline);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--gd-charcoal);
  border-bottom: 1px solid var(--gd-border);
  transition: color var(--gd-transition), background var(--gd-transition);
}
.nav-menu ul li a:hover {
  color: var(--gd-orange);
  background: var(--gd-bg);
}
.nav-menu ul li:last-child a { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--gd-evergreen);
  color: var(--gd-white);
  padding: clamp(3rem, 7vw, 5.5rem) var(--gd-gutter) clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--gd-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

/* LEFT col */
.hero-content { flex: 1; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--gd-font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0b18c;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--gd-font-headline);
  font-weight: 900;
  font-size: clamp(2.65rem, 7vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  max-width: 10ch;
}

.hero-headline em {
  font-style: normal;
  color: var(--gd-orange);
}

.hero-sub {
  font-family: var(--gd-font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.9rem;
}

.hero-body {
  font-size: clamp(1.02rem, 1.7vw, 1.14rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 1.35rem;
}
.hero-body strong {
  color: var(--gd-white);
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0;
}
.hero-ctas .btn,
.pricing-ctas .btn,
.cta-band-actions .btn,
.schedule-submit {
  white-space: normal;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 30px;
}

.trust-badge svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--gd-orange);
}

.hero-photo-card {
  width: min(100%, 440px);
  margin: 0 auto;
  flex-shrink: 0;
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 10px;
  background: var(--gd-green-dark);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 28px 70px rgba(0,0,0,0.34);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-card figcaption {
  margin-top: 0.8rem;
  color: rgba(255,255,255,0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Review strip */
.review-strip {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0;
}

.review-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 18px; height: 18px;
  color: var(--gd-orange);
  fill: var(--gd-orange);
}

.review-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

.review-text span {
  color: var(--gd-orange);
}

.review-source {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services {
  background: var(--gd-bg);
  border-bottom: 1px solid var(--gd-border);
}

.section-header {
  text-align: center;
  margin: 0 auto clamp(2.25rem, 5vw, 3.75rem);
  max-width: 760px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gd-orange);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--gd-font-headline);
  font-weight: 900;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  text-transform: uppercase;
  color: var(--gd-charcoal);
  line-height: 1.04;
  letter-spacing: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--gd-paper);
  border: 1px solid var(--gd-border);
  border-radius: var(--gd-radius);
  padding: clamp(1.45rem, 3vw, 2rem);
  box-shadow: var(--gd-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--gd-transition), box-shadow var(--gd-transition),
              transform var(--gd-transition);
}
.service-card:hover {
  border-color: var(--gd-green);
  box-shadow: 0 22px 48px rgba(20,28,24,0.14);
  transform: translateY(-2px);
}

.service-icon {
  width: 46px; height: 46px;
  background: rgba(23, 59, 44, 0.08);
  border: 1px solid rgba(23, 59, 44, 0.16);
  border-radius: var(--gd-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gd-green);
}

.service-icon svg {
  width: 26px; height: 26px;
  flex-shrink: 0;
  stroke: var(--gd-green);
}

.service-title {
  font-family: var(--gd-font-headline);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gd-charcoal);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--gd-slate);
  line-height: 1.6;
  flex: 1;
}

.service-link {
  font-family: var(--gd-font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gd-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--gd-transition);
  margin-top: auto;
}
.service-link:hover { color: var(--gd-orange-dark); }
.service-link::after { content: " →"; }

/* ============================================================
   WHY GUTTER DONE
   ============================================================ */
.why-section {
  background: var(--gd-green);
  color: var(--gd-white);
}

.why-section .section-title { color: var(--gd-white); }
.why-section .section-label { color: rgba(255,107,53,0.9); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--gd-radius);
  padding: 1.35rem;
}

.why-icon {
  width: 44px; height: 44px;
  background: var(--gd-orange);
  border-radius: var(--gd-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gd-white);
}

.why-icon svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  stroke: var(--gd-white);
}
/* lightning bolt uses fill="currentColor" — force white explicitly */
.why-icon svg polygon {
  fill: var(--gd-white);
}

.why-content h3 {
  font-family: var(--gd-font-headline);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  color: var(--gd-white);
}

.why-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after {
  background: var(--gd-bg);
  border-top: 1px solid var(--gd-border);
  border-bottom: 1px solid var(--gd-border);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ba-item {
  position: relative;
  border-radius: var(--gd-radius);
  overflow: hidden;
  border: 1px solid var(--gd-border);
}

.ba-placeholder {
  width: 100%;
  padding-top: 66%;        /* ~3:2 ratio */
  background: var(--gd-green-dark);
  position: relative;
}

.ba-placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
}

.ba-placeholder-text svg {
  width: 28px; height: 28px;
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.ba-label {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-family: var(--gd-font-headline);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  z-index: 2;
}
.ba-label.before { background: var(--gd-charcoal); color: var(--gd-white); }
.ba-label.after  { background: var(--gd-orange);   color: var(--gd-white); }

.ba-caption {
  text-align: center;
  font-family: var(--gd-font-headline);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gd-slate);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--gd-green);
  color: var(--gd-white);
  text-align: center;
}

.cta-band-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-band-headline {
  font-family: var(--gd-font-headline);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.cta-band-headline em {
  font-style: normal;
  color: var(--gd-orange);
}

.cta-band-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.75rem;
}

.cta-band-phone {
  display: block;
  font-family: var(--gd-font-headline);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.03em;
  color: var(--gd-white);
  margin-bottom: 1.5rem;
  transition: color var(--gd-transition);
  cursor: pointer;
}
.cta-band-phone:hover { color: var(--gd-orange); }

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gd-charcoal);
  color: rgba(255,255,255,0.65);
  padding: 2.5rem var(--gd-gutter);
}

.footer-inner {
  max-width: var(--gd-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 36px;
  width: auto;
  /* Monochrome logo — invert for dark bg */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-name {
  font-family: var(--gd-font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gd-white);
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-phone-link {
  font-weight: 700;
  color: var(--gd-orange);
  font-size: 1rem;
  transition: color var(--gd-transition);
}
.footer-phone-link:hover { color: #ff8c60; }

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}

/* ============================================================
   HERO INLINE PROOF — review line above CTA
   ============================================================ */
.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.85rem;
}
.hero-proof strong {
  color: var(--gd-orange);
  font-weight: 800;
}
.hero-proof span:not(.hero-proof-stars) {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.2rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.hero-proof-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gd-orange);
}
.hero-proof-stars svg {
  width: 16px;
  height: 16px;
}

/* Phone-icon CTA — keep existing .btn-primary, just align icon */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-call svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   TRUST STRIP — sits between hero and services
   ============================================================ */
.trust-strip {
  background: #101815;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.35rem var(--gd-gutter);
}
.trust-strip-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 0.75rem;
  margin: 0;
  padding: 0;
}
.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  padding: 0.45rem;
}
.trust-strip-stat {
  font-family: var(--gd-font-headline);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--gd-white);
  text-transform: uppercase;
}
.trust-strip-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.35;
  max-width: 14rem;
}

/* ============================================================
   SERVICES — featured + upsell variants
   ============================================================ */
.service-card {
  position: relative;
}
.service-card-flag {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  font-family: var(--gd-font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gd-orange);
  color: var(--gd-white);
  padding: 0.25rem 0.7rem;
  border-radius: 30px;
  white-space: nowrap;
}
.service-card-flag-upsell {
  background: var(--gd-charcoal);
}
.service-card-featured {
  border-color: var(--gd-green);
  border-width: 2px;
  background: var(--gd-white);
}
.service-card-upsell {
  background: #FFF7F2;
  border-color: rgba(255,107,53,0.35);
}
.service-bullets {
  list-style: none;
  margin: 0.25rem 0 0.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--gd-charcoal);
  line-height: 1.5;
}
.service-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gd-orange);
  font-weight: 800;
}
.service-card-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 0.5rem;
}
.service-card-ctas .btn { padding: 0.7rem 1.25rem; font-size: 0.9rem; }

/* ============================================================
   WHAT TO EXPECT — 4-step process
   ============================================================ */
.expect {
  background: var(--gd-bg);
  border-bottom: 1px solid var(--gd-border);
}
.expect-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  counter-reset: expect;
}
.expect-step {
  position: relative;
  background: var(--gd-white);
  border: 1px solid var(--gd-border);
  border-radius: var(--gd-radius);
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: var(--gd-shadow);
}
.expect-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gd-green);
  color: var(--gd-white);
  font-family: var(--gd-font-headline);
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.expect-step h3 {
  font-family: var(--gd-font-headline);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gd-charcoal);
  margin-bottom: 0.4rem;
}
.expect-step p {
  font-size: 0.95rem;
  color: var(--gd-slate);
  line-height: 1.55;
}
.expect-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  text-align: center;
}
.expect-cta-note {
  font-size: 0.85rem;
  color: var(--gd-slate);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================================
   INSPECTION-FIRST CONTENT
   ============================================================ */
.quote-policy,
.included,
.risk-section,
.photo-gallery,
.faq-section {
  background: var(--gd-bg);
  border-bottom: 1px solid var(--gd-border);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.split-copy {
  max-width: 42rem;
}

.split-copy .section-title {
  margin-bottom: 1rem;
}

.split-copy p {
  color: var(--gd-charcoal);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.price-panel {
  background: var(--gd-white);
  border: 2px solid var(--gd-green);
  border-radius: var(--gd-radius);
  box-shadow: 0 12px 30px rgba(27,67,50,0.12);
  padding: 1.5rem;
}

.price-panel-kicker {
  display: inline-block;
  font-family: var(--gd-font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gd-orange);
  margin-bottom: 0.8rem;
}

.price-panel strong {
  display: block;
  font-family: var(--gd-font-headline);
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--gd-green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.price-panel p {
  color: var(--gd-slate);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-grid li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--gd-white);
  border: 1px solid var(--gd-border);
  border-radius: var(--gd-radius);
  padding: 1rem;
  box-shadow: var(--gd-shadow);
}

.included-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: var(--gd-green);
  color: var(--gd-white);
  border-radius: 50%;
  font-family: var(--gd-font-headline);
  font-weight: 800;
}

.included-grid strong {
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--gd-charcoal);
}

.inspection-advantage {
  background: var(--gd-green);
  color: var(--gd-white);
}

.inspection-advantage .section-title,
.inspection-advantage .split-copy p {
  color: var(--gd-white);
}

.inspection-advantage .split-copy p {
  color: rgba(255,255,255,0.78);
}

.advantage-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.proof-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--gd-radius);
  padding: 1.25rem;
}

.proof-card h3,
.risk-card h3,
.faq-item h3 {
  font-family: var(--gd-font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.proof-card h3 {
  color: var(--gd-white);
}

.proof-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.risk-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.risk-card,
.faq-item {
  background: var(--gd-white);
  border: 1px solid var(--gd-border);
  border-radius: var(--gd-radius);
  box-shadow: var(--gd-shadow);
  padding: 1.35rem;
}

.risk-card-dark {
  background: var(--gd-charcoal);
  border-color: var(--gd-charcoal);
}

.risk-card h3,
.faq-item h3 {
  color: var(--gd-charcoal);
}

.risk-card-dark h3 {
  color: var(--gd-white);
}

.risk-card p,
.faq-item p {
  color: var(--gd-slate);
  font-size: 0.96rem;
  line-height: 1.6;
}

.risk-card-dark p {
  color: rgba(255,255,255,0.76);
}

.pricing-lead-secondary {
  margin-top: 0.55rem;
}

.gallery-lead {
  max-width: 46rem;
  margin: 0.85rem auto 0;
  color: var(--gd-slate);
  font-size: 1.04rem;
  line-height: 1.6;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.proof-card {
  background: var(--gd-paper);
  border: 1px solid var(--gd-border);
  border-radius: var(--gd-radius);
  overflow: hidden;
  box-shadow: var(--gd-shadow);
  transition: transform var(--gd-transition), box-shadow var(--gd-transition), border-color var(--gd-transition);
}

.proof-card:hover {
  border-color: rgba(23, 59, 44, 0.35);
  box-shadow: 0 24px 56px rgba(20,28,24,0.14);
  transform: translateY(-2px);
}

.proof-media {
  aspect-ratio: 4 / 3;
  width: 100%;
  background: #d8d0c0;
  overflow: hidden;
}

.proof-media-tall {
  aspect-ratio: 4 / 5;
}

.proof-media-wide {
  aspect-ratio: 4 / 3;
}

.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.15rem;
}

.proof-card figcaption strong {
  font-family: var(--gd-font-headline);
  font-size: 1.08rem;
  color: var(--gd-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.12;
}

.proof-card figcaption span:not(.proof-tag) {
  color: var(--gd-slate);
  font-size: 0.92rem;
  line-height: 1.45;
}

.proof-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gd-green);
  background: rgba(23, 59, 44, 0.08);
  border: 1px solid rgba(23, 59, 44, 0.14);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
}

/* ============================================================
   PRICING — flat-rate tiers
   ============================================================ */
.pricing {
  background: var(--gd-bg);
  border-top: 1px solid var(--gd-border);
  border-bottom: 1px solid var(--gd-border);
}
.pricing-lead {
  font-size: 1.02rem;
  color: var(--gd-charcoal);
  max-width: 42rem;
  margin: 0.85rem auto 0;
  line-height: 1.6;
}
.pricing-lead strong { color: var(--gd-orange); }

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.pricing-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--gd-white);
  border: 1.5px solid var(--gd-border);
  border-radius: var(--gd-radius);
  padding: 1.25rem 1.1rem;
  box-shadow: var(--gd-shadow);
}
.pricing-tier-popular {
  border-color: var(--gd-orange);
  border-width: 2px;
  background: #FFFBF7;
}
.pricing-tier-flag {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  background: var(--gd-orange);
  color: var(--gd-white);
  font-family: var(--gd-font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 30px;
}
.pricing-tier-label {
  font-family: var(--gd-font-headline);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gd-charcoal);
}
.pricing-tier-price {
  font-family: var(--gd-font-headline);
  font-size: 1.15rem;
  color: var(--gd-slate);
}
.pricing-tier-price strong {
  color: var(--gd-green);
  font-size: 1.4rem;
  font-weight: 800;
}
.pricing-tier-detail {
  font-size: 0.92rem;
  color: var(--gd-slate);
  line-height: 1.5;
}
.pricing-bundle {
  font-size: 0.95rem;
  color: var(--gd-charcoal);
  background: rgba(255,107,53,0.08);
  border-left: 3px solid var(--gd-orange);
  padding: 0.75rem 1rem;
  border-radius: var(--gd-radius);
  margin-bottom: 1.5rem;
}
.pricing-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.sticky-call {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--gd-evergreen);
  color: var(--gd-white);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 16px 38px rgba(0,0,0,0.32);
  text-align: left;
  transform: translateY(0);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.sticky-call:hover { background: var(--gd-green); }
.sticky-call svg { width: 22px; height: 22px; flex-shrink: 0; }
.sticky-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sticky-call-text strong {
  font-family: var(--gd-font-headline);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sticky-call-text small {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.92;
}
.sticky-call.is-hidden {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
/* Desktop — hide entirely; nav phone CTA + hero CTA are always visible */
@media (min-width: 900px) {
  .sticky-call { display: none; }
}

/* Reserve space at the bottom of the page on mobile so the sticky bar
   never covers the footer's last line or the CTA band's actions. */
body {
  padding-bottom: 5.25rem;
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

/* ============================================================
   FOOTER ENRICHMENT
   ============================================================ */
.footer-stars {
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.footer-stars span[role="img"] {
  color: var(--gd-orange);
  letter-spacing: 0.15em;
  margin-right: 0.35rem;
}
.footer-guarantee {
  font-style: italic;
  color: rgba(255,255,255,0.7);
  max-width: 28rem;
}

/* ============================================================
   SCHEDULE / REQUEST A TIME FORM
   ============================================================ */
.schedule {
  background: var(--gd-white);
  border-bottom: 1px solid var(--gd-border);
}

.schedule-sub {
  font-size: 1rem;
  color: var(--gd-slate);
  max-width: 36rem;
  margin: 0.75rem auto 0;
  line-height: 1.55;
}

.schedule-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Honeypot — render-hidden but technically focusable so naive bots fill it */
.schedule-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.schedule-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.schedule-field label {
  font-family: var(--gd-font-headline);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gd-charcoal);
}

.schedule-field label small {
  font-family: var(--gd-font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gd-slate);
  font-size: 0.78rem;
}

.schedule-field label span[aria-hidden] {
  color: var(--gd-orange);
  margin-left: 0.15rem;
}

.schedule-field input[type="text"],
.schedule-field input[type="tel"],
.schedule-field input[type="date"],
.schedule-field select,
.schedule-field textarea {
  font-family: var(--gd-font-body);
  font-size: 1rem;
  color: var(--gd-charcoal);
  background: var(--gd-bg);
  border: 1.5px solid var(--gd-border);
  border-radius: var(--gd-radius);
  padding: 0.75rem 0.85rem;
  width: 100%;
  transition: border-color var(--gd-transition), box-shadow var(--gd-transition);
}

.schedule-field input:focus,
.schedule-field select:focus,
.schedule-field textarea:focus {
  outline: none;
  border-color: var(--gd-orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.18);
}

.schedule-field input[aria-invalid="true"],
.schedule-field select[aria-invalid="true"],
.schedule-field textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

.schedule-field textarea {
  resize: vertical;
  min-height: 90px;
}

.schedule-error {
  font-size: 0.82rem;
  color: #c0392b;
  font-weight: 600;
  min-height: 1em;     /* reserve space — no layout shift on validation */
}

.schedule-radios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.schedule-radio {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--gd-border);
  border-radius: var(--gd-radius);
  background: var(--gd-bg);
  cursor: pointer;
  font-family: var(--gd-font-body) !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--gd-charcoal);
  transition: border-color var(--gd-transition), background var(--gd-transition);
}
.schedule-radio:hover { border-color: var(--gd-orange); }
.schedule-radio input { accent-color: var(--gd-orange); }
.schedule-radio small {
  color: var(--gd-slate);
  font-weight: 400;
  margin-left: 0.25rem;
}
.schedule-radio:has(input:checked) {
  border-color: var(--gd-orange);
  background: rgba(255,107,53,0.06);
}

.schedule-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 0.5rem;
}

.schedule-submit { padding: 0.95rem 2rem; font-size: 1rem; }

.schedule-fallback {
  font-size: 0.92rem;
  color: var(--gd-slate);
}
.schedule-fallback a {
  color: var(--gd-charcoal);
  border-bottom: 2px solid var(--gd-orange);
}
.schedule-fallback a:hover { color: var(--gd-orange); }

.schedule-fineprint {
  font-size: 0.78rem;
  color: var(--gd-slate);
  line-height: 1.5;
}

.schedule-status:empty { display: none; }
.schedule-status {
  padding: 1rem 1.1rem;
  border-radius: var(--gd-radius);
  font-weight: 600;
}
.schedule-status[data-state="success"] {
  background: rgba(27,67,50,0.08);
  border: 1px solid var(--gd-green);
  color: var(--gd-green-dark);
}
.schedule-status[data-state="error"] {
  background: rgba(192,57,43,0.08);
  border: 1px solid #c0392b;
  color: #8b2a1f;
}

/* ============================================================
   DESKTOP — min-width: 640px
   ============================================================ */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .trust-strip-list {
    grid-template-columns: repeat(5, 1fr);
  }

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

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

  /* Form: 2-up rows on tablets+ */
  .schedule-row {
    grid-template-columns: 1fr 1fr;
  }
  .schedule-radios {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Pricing: 3 tiers across */
  .pricing-tiers {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* ============================================================
   DESKTOP — min-width: 900px
   ============================================================ */
@media (min-width: 900px) {

  /* Nav */
  .site-nav .container { height: 76px; }
  .nav-logo img { height: 56px; }
  .nav-toggle { display: none; }

  .nav-menu {
    display: block !important;
    background: transparent;
    border: none;
    padding: 0;
    max-height: none;
    overflow: visible;
    transition: none;
  }
  .nav-menu ul {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }
  .nav-menu ul li a {
    padding: 0.4rem 0.75rem;
    border: none;
    font-size: 0.82rem;
    border-radius: 4px;
    color: var(--gd-charcoal);
  }
  .nav-menu ul li a:hover {
    background: var(--gd-bg);
    color: var(--gd-green);
  }
  #nav-menu-mobile {
    display: none !important;
  }

  /* Hero */
  .hero {
    padding: clamp(3.5rem, 6vw, 5rem) var(--gd-gutter) clamp(3.5rem, 5vw, 4.75rem);
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-photo-card {
    width: 440px;
    flex-shrink: 0;
    align-self: center;
    margin-bottom: 0;
  }

  /* Services — featured (gutter cleaning) gets 2 cols, the other two stack on the right */
  .services-grid {
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: auto;
    align-items: stretch;
  }
  .service-card-featured {
    grid-row: span 2;
  }

  /* Why */
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* What to Expect — 4 steps across */
  .expect-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 3rem;
  }

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

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

  .proof-card-featured {
    grid-column: span 2;
    grid-row: span 2;
  }

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

  /* Footer */
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

/* ============================================================
   SCROLL REVEAL
   JS adds .gd-reveal to off-screen elements, then .gd-visible
   when they enter the viewport.
   ============================================================ */
.gd-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}
.gd-reveal.gd-visible {
  opacity: 1;
  transform: none;
}

/* Stagger siblings inside a grid */
.gd-stagger .gd-reveal:nth-child(2) { transition-delay: 0.09s; }
.gd-stagger .gd-reveal:nth-child(3) { transition-delay: 0.18s; }
.gd-stagger .gd-reveal:nth-child(4) { transition-delay: 0.27s; }

/* ============================================================
   REDUCED MOTION — override all motion-dependent transitions
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  /* Kill reveal animation */
  .gd-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  /* Kill button motion */
  .btn {
    transition: background var(--gd-transition), color var(--gd-transition),
                border-color var(--gd-transition);
  }
  .btn:hover { transform: none; box-shadow: none; }
  .btn:active { transform: none; box-shadow: none; }
  /* Kill card lift */
  .service-card {
    transition: border-color var(--gd-transition), box-shadow var(--gd-transition);
  }
  .service-card:hover { transform: none; }
  /* Kill hamburger animation */
  .nav-toggle span { transition: none; }
  /* Kill nav slide */
  .nav-menu { transition: none; }
  /* Kill scroll-behavior */
  html { scroll-behavior: auto; }
}
