/* ====================================================================
   ABOVE ALL — "BUILT FOR GOOD NEIGHBORS" REDESIGN
   Warm vintage Americana / PNW national-park vibe:
   cream paper, deep pine green, harvest gold, rust wood accents.
   ==================================================================== */

/* Skip-to-content link (a11y, indirect SEO trust signal) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #243E22;
  color: #E9C46A;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 22px;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 10px 0;
  border: 2px solid #E9C46A;
  border-top: 0;
  border-left: 0;
}
.skip-link:focus { top: 0; outline: none; }

:root {
  --mint:      #4A6B43;      /* mid pine green (legacy var name) */
  --mint-dk:   #36522F;
  --mint-lt:   #E5DCC3;      /* warm tan panel */
  --yellow:    #D9A03F;      /* harvest gold */
  --yellow-dk: #B5812C;
  --tomato:    #A85B2B;      /* warm rust / cedar */
  --tomato-dk: #8A4920;
  --navy:      #2A4327;      /* deep forest green — primary ink */
  --navy-dk:   #1C2F1A;      /* darkest pine (footer / truck green) */
  --cream:     #F2EBD8;      /* cream paper */
  --cream-dk:  #E5DBBF;
  --pink:      #E9DFC6;      /* parchment tint (legacy var name) */
  --white:     #FAF6E9;
  --black:     #181711;

  --display:   "Bevan", "Georgia", serif;
  --slab:      "Oswald", "Arial Narrow", sans-serif;
  --hand:      "Caveat", cursive;
  --body:      "Lora", Georgia, serif;

  --shadow-hard: 0 4px 14px rgba(28, 47, 26, 0.14);
  --shadow-hard-lg: 0 10px 30px rgba(28, 47, 26, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { overflow-x: clip; }

section[id], [id="quote"] { scroll-margin-top: 110px; }

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--tomato); text-decoration: none; font-weight: 700; }
a:hover { color: var(--tomato-dk); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ===== TYPE ===== */
h1, h2, h3, h4 { font-family: var(--display); color: var(--navy); font-weight: 400; line-height: 1.08; letter-spacing: 0.5px; }
h1 { font-size: clamp(40px, 5.6vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 54px); }
h3 { font-size: clamp(20px, 2.3vw, 28px); }

.slab { font-family: var(--slab); }
.hand { font-family: var(--hand); font-weight: 700; }

/* ====================================================================
   DECORATIVE COMPONENTS
   ==================================================================== */

/* Sticker — vintage label badge */
.sticker {
  display: inline-block;
  position: relative;
  background: var(--cream);
  color: var(--navy);
  padding: 14px 26px;
  font-family: var(--slab);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  border-radius: 6px;
  box-shadow: var(--shadow-hard);
}
.sticker--yellow { background: var(--yellow); }
.sticker--red    { background: var(--tomato); color: var(--cream); }
.sticker--mint   { background: var(--mint); color: var(--cream); }

/* Scrolling ribbon divider */
.ribbon {
  background: var(--navy);
  color: var(--cream);
  padding: 10px 0;
  font-family: var(--slab);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  overflow: hidden;
}
.ribbon-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  width: max-content;
}
.ribbon-track span { display: inline-flex; align-items: center; gap: 32px; }
.ribbon-track .star { color: var(--yellow); font-size: 18px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* Double-ruled vintage frame */
.pearl-frame {
  position: relative;
  border: 3px solid var(--navy);
  border-radius: 12px;
  padding: 36px;
  background: var(--cream);
}
.pearl-frame::before {
  content: "";
  position: absolute; inset: 7px;
  border: 1px solid rgba(42, 67, 39, 0.45);
  border-radius: 8px;
  pointer-events: none;
}

/* Buttons — sturdy, letterpress-style */
.btn {
  --btn-shadow: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--slab);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 8px;
  border: 2px solid var(--navy-dk);
  background: var(--yellow);
  color: var(--navy-dk);
  cursor: pointer;
  box-shadow: 0 var(--btn-shadow) 0 var(--navy-dk);
  transition: transform .1s ease, box-shadow .1s ease, background .1s ease;
  text-decoration: none;
  user-select: none;
  position: relative;
  white-space: nowrap;
}
.btn:hover,
.btn:active {
  transform: translateY(var(--btn-shadow));
  box-shadow: none;
  background: var(--yellow-dk);
  color: var(--navy-dk);
}
.btn:focus-visible {
  outline: 3px dashed var(--tomato);
  outline-offset: 4px;
}
.btn--red   { background: var(--tomato); color: var(--white); }
.btn--red:hover { background: var(--tomato-dk); color: var(--white); }
.btn--mint  { background: var(--mint); color: var(--white); }
.btn--mint:hover { background: var(--mint-dk); color: var(--white); }
.btn--navy  { background: var(--navy); color: var(--yellow); }
.btn--navy:hover { background: var(--navy-dk); color: var(--yellow); }
.btn--lg    { font-size: 18px; padding: 17px 34px; --btn-shadow: 4px; }
.btn--sm    { font-size: 13px; padding: 10px 18px; --btn-shadow: 2px; }

/* Hand-drawn underline */
.underline-swoosh {
  position: relative;
  display: inline-block;
}
.underline-swoosh::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -6px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  z-index: -1;
  transform: skewX(-6deg);
  opacity: 0.85;
}

/* Section labels */
.eyebrow {
  display: inline-block;
  font-family: var(--slab);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding: 7px 4px;
  border-radius: 0;
  margin-bottom: 18px;
}

/* ====================================================================
   TOP BAR
   ==================================================================== */
.topbar {
  background: var(--navy-dk);
  color: var(--cream);
  font-family: var(--slab);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.topbar a { color: var(--yellow); font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar .dot { color: var(--yellow); margin: 0 8px; font-weight: 700; opacity: 0.7; }
.topbar .tb-ico {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
  fill: var(--yellow);
}

/* ====================================================================
   HEADER
   ==================================================================== */
.header {
  background: var(--cream);
  border-bottom: 3px double var(--navy);
  position: sticky;
  top: 0; z-index: 100;
  padding: 2px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  overflow: visible;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  line-height: 0;
  margin: 8px 0;
  position: relative;
  z-index: 2;
}
.header-logo img { height: 92px; width: auto; display: block; }
.header-badge { height: 78px !important; width: auto !important; border-radius: 0; object-fit: contain; display: block; }

.nav { display: flex; gap: 4px; flex-wrap: nowrap; align-items: center; }
.nav a {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  padding: 10px 13px;
  border-radius: 0;
  border: 0;
  border-bottom: 3px solid transparent;
  box-shadow: none;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  transition: color .12s ease, border-color .12s ease;
}
.nav a:hover,
.nav a:active {
  color: var(--tomato);
  border-bottom-color: var(--yellow);
  background: transparent;
  box-shadow: none;
  transform: none;
}
.nav a.active { border-bottom-color: var(--yellow); }

.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.header-cta .btn { --btn-shadow: 3px; padding: 12px 22px; font-size: 14px; letter-spacing: 1.6px; }

@media (max-width: 1100px) {
  .header-logo img { height: 78px; }
  .header-logo { margin: 6px 0; }
  .nav a { font-size: 13px; letter-spacing: 1.4px; padding: 8px 9px; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .header-logo { margin: 6px 0; }
  .header-logo img { height: 70px; }
}

/* ====================================================================
   HERO — warm backyard panel
   ==================================================================== */
.hero {
  background-color: var(--cream);
  padding: 90px 0 140px;
  position: relative;
  overflow: visible;
  min-height: clamp(560px, 74vh, 820px);
  display: flex;
  align-items: center;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.25) 0, transparent 14%),
    radial-gradient(circle at 88% 70%, rgba(217,160,63,0.18) 0, transparent 22%);
}
.hero > .container { width: 100%; }
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  pointer-events: none;
  z-index: 1;
}
/* warm vignette so the photo sits in the page's palette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(28,47,26,0.18), transparent 22%, transparent 80%, rgba(28,47,26,0.22));
}
.stats-strip {
  position: relative;
  z-index: 5;
}
.hero::before { content: none; }

.hero-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }

.hero-card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 14px;
  padding: 36px 36px 40px;
  box-shadow: var(--shadow-hard-lg);
  min-width: 0;
  transform: translateX(-60px);
}
.hero-card::before {
  content:""; position:absolute; inset: 8px;
  border: 1px solid rgba(42, 67, 39, 0.4);
  border-radius: 9px;
  pointer-events:none;
}
.hero-card-inner { position: relative; }

.hero-tagline {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 8px;
}
.hero-card h1 {
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 52px);
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.05;
}
.hero-card h1 .yellow-hl {
  color: var(--tomato);
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: inline-block;
  transform: none;
  box-shadow: none;
  margin-top: 4px;
}
.hero-script {
  font-family: var(--hand);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--yellow-dk);
  margin: 2px 0 4px;
  line-height: 1.1;
}
.hero-sub {
  font-family: var(--body);
  font-size: 16px;
  color: var(--navy);
  margin: 14px 0 0;
  max-width: 520px;
  line-height: 1.55;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.hero-buttons .btn { --btn-shadow: 3px; font-size: 14px; padding: 13px 22px; letter-spacing: 1.4px; }

.hero-meta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(42, 67, 39, 0.3);
  font-family: var(--slab); font-weight: 600; font-size: 11px;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--navy);
}
.hero-meta-row span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-row .dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; border: 1px solid var(--navy); }

/* Floating badge stamps */
.hero-stamp {
  position: absolute;
  width: 150px; height: 150px;
  z-index: 3;
  filter: drop-shadow(0 5px 10px rgba(28,47,26,0.3));
}
.hero-stamp.c1 { top: -80px; right: -80px; transform: rotate(8deg); }
.hero-stamp.c2 { bottom: -80px; left: -80px; transform: rotate(-6deg); }

.stamp-arc {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 1.5px;
}
.stamp-big {
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: 0.5px;
}
.stamp-mid {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 3px;
}

@media (max-width: 640px) {
  .hero-stamp { width: 116px; height: 116px; }
  .hero-stamp.c1 { top: -36px; right: -20px; }
  .hero-stamp.c2 { bottom: -36px; left: -20px; }
}

/* Mascot panel (unused in Neighborhood brand) */
.hero-mascot-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mascot-badge {
  width: auto;
  height: 420px;
  border-radius: 0;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.35));
  flex-shrink: 0;
}

/* ====================================================================
   STATS BANNER
   ==================================================================== */
.stats-strip {
  background: var(--navy);
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}
.stat-card {
  position: relative;
  padding: 8px 8px;
}
.stat-card:not(:last-child)::after {
  content:""; position:absolute; right:0; top:18%; bottom:18%;
  width:0; border-right: 1px solid rgba(242,235,216,0.3);
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 60px);
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-family: var(--slab);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 10px;
}

/* ====================================================================
   ABOUT BLURB
   ==================================================================== */
.about-blurb {
  padding: 90px 0 30px;
  background: var(--cream);
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { margin-top: 10px; margin-bottom: 18px; }
.about-lead {
  font-family: var(--hand);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--tomato);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-text p { font-size: 17px; color: var(--navy); margin-bottom: 16px; line-height: 1.65; }
.about-text .btn { margin-top: 10px; }

.about-img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.about-craftsman {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 14px;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-hard-lg);
  display: block;
}
.about-ccb-tag {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--navy);
  border-radius: 999px;
  padding: 8px 20px;
  text-align: center;
}
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-craftsman { max-width: 480px; margin: 0 auto; }
}

/* ====================================================================
   SERVICES
   ==================================================================== */
.services {
  padding: 30px 0 100px;
  background: var(--cream);
  position: relative;
}
.services > .container { position: relative; z-index: 2; }
.services::before { content: none; }

/* ====================================================================
   SECTION DIVIDER — vintage typographic break between sections
   ==================================================================== */
.section-divider {
  background: var(--cream);
  padding: 12px 0 8px;
}
.section-divider .container {
  display: flex;
  align-items: center;
  gap: 18px;
}
.section-divider__line {
  flex: 1;
  height: 0;
  border-top: 2px solid var(--navy);
  opacity: 0.35;
}
.section-divider__medallion {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 10px 24px;
  box-shadow: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.section-divider__medallion .dia {
  color: var(--yellow-dk);
  font-size: 16px;
  line-height: 1;
}
.section-divider__medallion .lbl {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
}
@media (max-width: 640px) {
  .section-divider { padding: 32px 0 16px; }
  .section-divider .container { gap: 10px; }
  .section-divider__medallion { padding: 8px 14px; }
  .section-divider__medallion .lbl { font-size: 11px; letter-spacing: 2px; }
  .section-divider__medallion .dia { font-size: 14px; }
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.section-head h2 { margin-top: 12px; }
.section-head p { max-width: 640px; margin: 20px auto 0; font-size: 18px; color: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc {
  position: relative;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-hard-lg); }
.svc:nth-child(odd) { transform: none; }
.svc:nth-child(odd):hover { transform: translateY(-5px); }
.svc:nth-child(even) { transform: none; }
.svc:nth-child(even):hover { transform: translateY(-5px); }

.svc-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid var(--navy);
  position: relative;
}
.svc-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--yellow);
  color: var(--navy-dk);
  font-family: var(--slab);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border: 1px solid var(--navy-dk);
  border-radius: 4px;
  text-transform: uppercase;
  transform: none;
}
.svc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-family: var(--display); font-size: 24px; margin-bottom: 10px; }
.svc-body p { color: var(--navy); margin-bottom: 16px; flex: 1; }
.svc-foot { display: flex; justify-content: space-between; align-items: center; }
.svc-price {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--navy);
  background: var(--cream);
  padding: 6px 12px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  text-transform: uppercase;
}
.svc-link { font-family: var(--slab); font-weight: 600; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ====================================================================
   WHY US — three perks
   ==================================================================== */
.why {
  background: var(--navy);
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
}
.why .section-head h2 { color: var(--cream); }
.why .section-head p { color: var(--cream); }
.why .section-head .eyebrow { color: var(--yellow); border-color: var(--yellow); }
.why .underline-swoosh::after { background: var(--yellow); }

.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.perk {
  background: var(--cream);
  color: var(--navy);
  border: 2px solid var(--navy-dk);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-hard-lg);
  position: relative;
}
.perk-icon {
  width: 88px; height: 88px;
  background: var(--mint);
  border: 3px solid var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: -70px auto 18px;
  box-shadow: 0 4px 10px rgba(28,47,26,0.35);
}
.perk-icon svg { width: 44px; height: 44px; }
.perk-icon--spot {
  width: 120px; height: 120px;
  background: var(--cream);
  border: 3px solid var(--navy);
  border-radius: 50%;
  overflow: hidden;
  margin: -80px auto 18px;
  padding: 0;
  box-shadow: 0 6px 18px rgba(28,47,26,0.4);
}
.perk-icon--spot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.perk-icon--dark {
  background: #111;
}
.perk h3 { margin-bottom: 12px; font-family: var(--display); font-size: 24px; }
.perk p { color: var(--navy); }

/* ====================================================================
   PROCESS — 3 steps
   ==================================================================== */
.process {
  padding: 100px 0;
  background: var(--mint-lt);
  position: relative;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-hard);
}
.step-num {
  display: inline-grid; place-items: center;
  width: 76px; height: 76px;
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 34px;
  color: var(--navy-dk);
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(28,47,26,0.2);
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step:nth-child(2) .step-num { background: var(--tomato); color: var(--cream); }
.step:nth-child(3) .step-num { background: var(--mint); color: var(--cream); }

/* ====================================================================
   REVIEWS
   ==================================================================== */
.reviews { padding: 100px 0; background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 26px;
  position: relative;
  box-shadow: var(--shadow-hard);
}
.review:nth-child(6n+1) { background: var(--white); }
.review:nth-child(6n+2) { background: var(--navy); color: var(--cream); }
.review:nth-child(6n+2) p, .review:nth-child(6n+2) .review-name { color: var(--cream); }
.review:nth-child(6n+3) { background: var(--pink); }
.review:nth-child(6n+4) { background: var(--pink); }
.review:nth-child(6n+5) { background: var(--white); }
.review:nth-child(6n+6) { background: var(--navy); color: var(--cream); }
.review:nth-child(6n+6) p, .review:nth-child(6n+6) .review-name { color: var(--cream); }
.review-stars { color: var(--yellow-dk); font-size: 22px; letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-size: 17px; line-height: 1.55; margin-bottom: 18px; color: var(--navy); font-style: italic; }
.review-name { font-family: var(--slab); font-weight: 600; font-size: 14px; letter-spacing: 2px; color: var(--navy); text-transform: uppercase; }
.review-loc { font-family: var(--slab); font-weight: 400; font-size: 13px; opacity: 0.7; letter-spacing: 1px; }

/* ====================================================================
   GALLERY
   ==================================================================== */
.gallery { padding: 100px 0; background: var(--navy-dk); color: var(--cream); }
.gallery .section-head h2 { color: var(--cream); }
.gallery .section-head p { color: var(--cream); }
.gallery .section-head .eyebrow { color: var(--yellow); border-color: var(--yellow); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border: 2px solid var(--cream);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: transform .2s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item span {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--yellow);
  color: var(--navy-dk);
  font-family: var(--slab);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--navy-dk);
  text-transform: uppercase;
}

/* ====================================================================
   FINAL CTA
   ==================================================================== */
.cta-block {
  padding: 100px 0;
  background: var(--yellow);
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content:""; position:absolute; inset:0;
  background-image: repeating-linear-gradient(45deg, transparent 0 22px, rgba(42,67,39,0.05) 22px 23px);
  pointer-events:none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative; z-index: 1;
}
.cta-inner h2 { font-size: clamp(36px, 4.6vw, 64px); color: var(--navy-dk); }
.cta-inner p { font-size: 19px; margin: 18px 0 28px; max-width: 540px; color: var(--navy-dk); }
.cta-form {
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow-hard-lg);
  position: relative;
}
.cta-form::before {
  content:""; position:absolute; inset:8px;
  border: 1px solid rgba(42, 67, 39, 0.4);
  border-radius: 9px;
  pointer-events:none;
}
.cta-form h3 { text-align: center; margin-bottom: 18px; font-size: 28px; }
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 16px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  background: var(--cream);
  margin-bottom: 12px;
  color: var(--navy);
}
.cta-form textarea { resize: vertical; min-height: 80px; }
.cta-form .btn { width: 100%; justify-content: center; }
.cta-block .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  background: var(--navy-dk);
  color: var(--cream);
  padding: 70px 0 30px;
  position: relative;
}
.footer::before {
  content:""; position:absolute; top:0; left:0; right:0;
  height: 6px;
  background: repeating-linear-gradient(90deg,
    var(--yellow) 0 40px,
    var(--tomato) 40px 80px,
    var(--mint) 80px 120px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 30px;
}
.footer-brand img {
  height: auto;
  width: auto;
  max-width: 200px;
  max-height: 140px;
  margin-bottom: 18px;
  display: block;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.footer-badge {
  width: auto !important;
  height: 210px !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0;
  object-fit: contain;
}
.footer-brand p { color: rgba(242,235,216,0.75); margin-bottom: 16px; }
.footer-script {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 10px;
}
.footer-phone {
  display: inline-block;
  font-family: var(--display);
  font-size: 26px;
  color: var(--yellow);
}
.footer h4 {
  color: var(--yellow);
  font-family: var(--slab);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--cream); font-weight: 500; transition: color .15s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bot {
  border-top: 1px solid rgba(242,235,216,0.25);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: rgba(242,235,216,0.6);
}

/* ====================================================================
   FLOATING ELEMENTS
   ==================================================================== */
.float-flower {
  position: absolute;
  width: 70px;
  opacity: 0.9;
  pointer-events: none;
}

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

/* --- Laptop / medium desktop: keep hero+stats inside one viewport --- */
@media (max-width: 1440px) {
  .hero { padding: 56px 0 72px; }
}

@media (max-width: 1024px) {
  .hero { padding: 24px 0 36px; }
  .hero-inner, .cta-inner { grid-template-columns: 1fr; }
  .hero-card { transform: none; }
  .services-grid, .perks, .steps, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; row-gap: 30px; }
  .stat-card:nth-child(2n)::after { display: none; }
  .hero-mascot-bg { width: 380px; height: 380px; }
  .hero-mascot-img { max-width: 340px; }
  .hero-mascot-wrap { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
}

/* --- Tablet: replace nav links with hamburger --- */
@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .container { padding: 0 16px; }

  /* Compact header band */
  .header { padding: 2px 0; }

  /* Center the logo, float the hamburger button to the right edge.
     NOTE: `.header .nav-toggle` (specificity 0,2,0) is used on purpose so it
     beats the later base rule `.nav-toggle { display:none }`. z-index keeps the
     button tappable above the centered logo. */
  .header .container { position: relative; justify-content: center; }
  .header-logo { margin: 6px 0; }
  .header-logo img { height: 64px; }
  .header-badge { height: 60px !important; width: auto !important; }
  .header .nav-toggle {
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
  }
  .header .nav-toggle:hover { transform: translateY(-50%) translateY(2px); }
}

/* --- Mobile --- */
@media (max-width: 640px) {
  .services-grid, .perks, .steps, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 28px 0 36px; min-height: 0; }
  .hero-card { padding: 28px 20px; transform: none; }
  .hero-card h1 { font-size: clamp(28px, 7.6vw, 40px); }
  .hero-sub { font-size: 15px; }
  .hero-tagline { font-size: 12px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; }
  .hero-bg-img { display: none; }
  .hero-stamp { width: 100px; height: 100px; }
  .hero-stamp.c1 { top: -38px; right: -14px; }
  .hero-stamp.c2 { bottom: -38px; left: -14px; }
  .review:nth-child(2) { transform: none; }

  .header { padding: 2px 0; }
  .header .container { padding: 0 14px; }
  .header-logo { margin: 6px 0; }
  .header-logo img { height: 58px; }
  .header-badge { height: 52px !important; width: auto !important; }
  .header .nav-toggle { right: 14px; padding: 8px 10px; }

  /* topbar: hide the ratings copy, keep only the phone line */
  .topbar .container > div:first-child { display: none; }
  .topbar .container { justify-content: center; }
  .topbar { font-size: 11px; letter-spacing: 1px; padding: 8px 0; }

  /* Slim down the scrolling ribbon */
  .ribbon {
    font-size: 10px;
    letter-spacing: 1.2px;
    padding: 4px 0;
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
  .ribbon-track { gap: 18px; }
  .ribbon-track span { gap: 18px; }
  .ribbon-track .star { font-size: 13px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; row-gap: 22px; }
  .stats-strip { padding: 22px 0; }
  .stat-num { font-size: clamp(32px, 9vw, 46px); }
  .stat-label { font-size: 11px; letter-spacing: 1.6px; margin-top: 4px; }

  .section-head h2 { font-size: clamp(24px, 6.6vw, 36px); }
  .section-head p { font-size: 14px; }

  .footer { padding: 50px 0 30px; }
  .footer-brand img { max-width: 160px; max-height: 110px; }
  .footer-badge { width: auto !important; height: 170px !important; }
  .footer-bot { flex-direction: column; align-items: flex-start; gap: 8px; }

  .cta-inner { gap: 28px; }
  .cta-form { padding: 28px 20px; }
  .why { padding: 60px 0; }
  .process { padding: 60px 0; }
  .reviews { padding: 60px 0; }
  .gallery { padding: 60px 0; }
  .about-blurb { padding: 50px 0 20px; }
}

@media (max-width: 420px) {
  .hero-card { padding: 24px 16px; }
  .hero-card h1 { font-size: clamp(26px, 7.6vw, 36px); }
  .container { padding: 0 12px; }
  .hero-stamp { width: 84px; height: 84px; }
  .hero-stamp.c1 { top: -32px; right: -10px; }
  .hero-stamp.c2 { bottom: -32px; left: -10px; }
  .stat-num { font-size: 32px; }
  /* keep the centered logo clear of the hamburger on narrow phones */
  .header-logo { margin: 6px 0; }
  .header-logo img { height: 52px; }
  .header-badge { height: 46px !important; width: auto !important; }
  .header .nav-toggle { right: 12px; }
}

/* ====================================================================
   MOBILE NAV — HAMBURGER + DROPDOWN
   ==================================================================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--yellow);
  border: 2px solid var(--navy-dk);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: 0 3px 0 var(--navy-dk);
  flex-shrink: 0;
  transition: transform .08s ease, box-shadow .08s ease;
}
.nav-toggle:hover { transform: translateY(2px); box-shadow: none; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--navy-dk);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-dropdown {
  background: var(--navy-dk);
  border-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown.is-open { max-height: 600px; border-bottom: 3px solid var(--yellow); }
.nav-dropdown .container {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 24px;
}
.nav-dd-link {
  display: block;
  font-family: var(--slab);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 14px 0;
  border-bottom: 1px dotted rgba(217,160,63,0.25);
  text-decoration: none;
}
.nav-dd-link:hover { color: var(--cream); }
.nav-dd-cta {
  margin-top: 18px;
  display: flex;
  align-self: stretch;
  justify-content: center;
}

/* ====================================================================
   SPRING SPECIAL POPUP
   ==================================================================== */
.spring-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.spring-popup.is-open { opacity: 1; visibility: visible; }
.spring-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 47, 26, 0.65);
  backdrop-filter: blur(3px);
}
.spring-popup__card {
  position: relative;
  background: var(--cream);
  border: 3px solid var(--navy);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  padding: 48px 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(0.85);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.spring-popup.is-open .spring-popup__card { transform: scale(1); }
.spring-popup__card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(42, 67, 39, 0.4);
  border-radius: 9px;
  pointer-events: none;
}
.spring-popup__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 0;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 10px;
  z-index: 2;
}
.spring-popup__close:hover { color: var(--tomato); transform: rotate(90deg); transition: transform .2s, color .2s; }
.spring-popup__stamp {
  width: 130px;
  height: 130px;
  display: block;
  margin: 0 auto 14px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 5px 10px rgba(28,47,26,0.3));
}
.spring-popup__eyebrow {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 6px;
}
.spring-popup__card h2 {
  font-family: var(--display);
  color: var(--navy);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.spring-popup__sub {
  font-family: var(--body);
  color: var(--navy);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 22px;
  padding: 0 4px;
}
.spring-popup__sub strong { color: var(--tomato); }
.spring-popup__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}
.spring-popup__buttons .btn { width: 100%; max-width: 320px; }
.spring-popup__skip {
  background: transparent;
  border: 0;
  color: var(--navy);
  font-family: var(--slab);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.6;
  padding: 6px 12px;
}
.spring-popup__skip:hover { opacity: 1; text-decoration: underline; }
.spring-popup__fineprint {
  font-family: var(--slab);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--navy);
  opacity: 0.55;
}
@media (max-width: 540px) {
  .spring-popup__card { padding: 40px 24px 28px; }
  .spring-popup__card h2 { font-size: 26px; }
  .spring-popup__stamp { width: 110px; height: 110px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   BRANDING FLOURISHES — vintage badge identity on inner pages.
   Purely decorative (aria-hidden / CSS only). No page copy is changed (SEO-safe).
   ══════════════════════════════════════════════════════════════════════════ */

/* Brand strip with a centered badge medallion — sits at the top of
   every inner page, just under the header. */
.brand-strip {
  position: relative;
  height: 104px;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(rgba(42,67,39,0.92), rgba(42,67,39,0.92)),
    var(--navy);
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  overflow: hidden;
}
.brand-strip::before {
  /* fine gold rule for that printed-label feel */
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  border-top: 1px solid rgba(217,160,63,0.5);
  transform: translateY(-50%);
}
.brand-strip-logo {
  position: relative; z-index: 2;
  height: 124px; width: auto;
  background: var(--cream);
  border: 4px solid var(--yellow);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transform: none;
}

/* Soft texture + tree-line silhouette behind each page header. */
.about-blurb { overflow: hidden; }
.about-blurb::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, var(--yellow) 0 5px, transparent 6px),
    radial-gradient(circle, var(--mint) 0 5px, transparent 6px);
  background-size: 280px 280px, 340px 340px;
  background-position: 30px 40px, 160px 150px;
  opacity: 0.07;
}
.about-blurb::after {
  content: ""; position: absolute; right: 0; bottom: 0; left: 0; z-index: 0;
  height: 90px; pointer-events: none;
  background:
    linear-gradient(to top, rgba(42,67,39,0.10), transparent);
}
.about-inner { position: relative; z-index: 1; }

@media (max-width: 700px) {
  .brand-strip { height: 84px; }
  .brand-strip-logo { height: 96px; padding: 8px; }
}

/* ====================================================================
   MOBILE TOUCH-TARGET HARDENING
   Scoped to small/touch viewports only — desktop layout is unchanged.
   Brings interactive elements to the ~44px minimum recommended for taps
   and removes the 300ms tap delay.
   ==================================================================== */
@media (max-width: 900px) {
  a, button, .btn, input, select, textarea { touch-action: manipulation; }

  /* Topbar phone / utility links — primary "tap to call" target */
  .topbar a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* "Get a quote" links inside service cards */
  .svc-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 0;
  }

  /* Footer navigation links (leave non-link city spans alone) */
  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* Hamburger button — nudge from 39px up to the 44px minimum */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }
}

/* ====================================================================
   HERO LEAD-CAPTURE FORM (conversion)
   Sits in the hero's right column; stacks below the hero card on mobile.
   ==================================================================== */
.hero-lead { position: relative; z-index: 2; min-width: 0; }
.hero-lead-form {
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 14px;
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-hard-lg);
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
}
.hero-lead-form::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid rgba(42, 67, 39, 0.4);
  border-radius: 9px; pointer-events: none;
}
.hero-lead-head { text-align: center; margin-bottom: 2px; }
.hero-lead-eyebrow {
  font-family: var(--slab); font-weight: 600; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--tomato);
}
.hero-lead-title {
  font-family: var(--display); font-size: clamp(24px, 2.2vw, 30px);
  color: var(--navy); margin: 6px 0 4px; line-height: 1.08; letter-spacing: 0.5px;
}
.hero-lead-sub { font-family: var(--body); font-size: 14px; color: var(--navy); margin: 0; line-height: 1.4; }
.hero-lead-form input,
.hero-lead-form select {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--body);
  font-size: 16px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  background: var(--cream);
  color: var(--navy);
}
.hero-lead-form select { appearance: auto; }
.hero-lead-form .btn { width: 100%; justify-content: center; }
.hero-lead-trust {
  display: flex; flex-wrap: wrap; gap: 4px 14px; justify-content: center;
  font-family: var(--slab); font-weight: 600; font-size: 11px;
  letter-spacing: 0.8px; text-transform: uppercase; color: var(--mint-dk);
  margin-top: 2px;
}

/* Give the hero columns a touch more balance now that the right side is a form */
@media (min-width: 1025px) {
  .hero-inner { grid-template-columns: 1.4fr 1fr; gap: 44px; }
  .hero-card { transform: translateX(-40px); }
}
@media (max-width: 1024px) {
  .hero-lead { max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-inner { gap: 28px; }
}

/* ====================================================================
   STICKY MOBILE CTA BAR (conversion) — phones/small tablets only
   ==================================================================== */
.mobile-cta-bar { display: none; }
@media (max-width: 900px) {
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 200;
    border-top: 2px solid var(--navy-dk);
    box-shadow: 0 -4px 18px rgba(28, 47, 26, 0.28);
  }
  .mcta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 56px;
    font-family: var(--slab); font-weight: 600; font-size: 15px;
    letter-spacing: 1.4px; text-transform: uppercase; text-decoration: none;
  }
  .mcta--call { background: var(--navy); color: var(--yellow); }
  .mcta--quote { background: var(--tomato); color: var(--white); }
  .mcta--call:hover { color: var(--yellow); }
  .mcta--quote:hover { color: var(--white); }
  /* keep page content clear of the fixed bar */
  body { padding-bottom: 58px; }
}
