/* YardMasters v4 — Light Base · Pill Nav · DM Sans · v5-inspired */
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');

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

:root {
  --ink:          #0f1012;
  --dark:         #2C4A36;
  --green-deep:   #547B4A;
  --green-mid:    #7BAE6E;
  --green-neon:   #CFE3BD;
  --orange:       #7BAE6E;
  --orange-dark:  #547B4A;
  --cream:        #F4F1E8;
  --gray-light:   #f4f5f7;
  --gray-soft:    #fafbfc;
  --gray-border:  #eaebef;
  --white:        #ffffff;
  --text:         #0f1012;
  --text-sub:     #353841;
  --text-muted:   #6b7280;

  --s-xs: 8px;  --s-sm: 12px;  --s-md: 16px;  --s-lg: 24px;
  --s-xl: 32px; --s-2xl: 48px; --s-3xl: 64px;
  --s-4xl: 80px; --s-5xl: 120px;

  --r-pill: 99px;
  --r-card: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  --max-w: 1200px;
}

html { scroll-behavior: auto; }

body {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

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

.container {
  max-width: var(--max-w); margin: 0 auto;
  padding-left: 40px; padding-right: 40px;
}

/* ── PILL BUTTONS ── */
.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #7BAE6E; color: var(--white);
  font-family: inherit; font-size: 14px; font-weight: 700;
  padding: 10px 24px; border-radius: var(--r-pill);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.14px; border: none; cursor: pointer;
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(84, 123, 74, 0.28); }

/* ── REVEAL ON SCROLL (shared) ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.btn-pill--lg { font-size: 16px; padding: 16px 36px; }
.btn-pill--dark { background: var(--ink); color: var(--white); }
.btn-pill--dark:hover { box-shadow: 0 8px 24px rgba(15, 16, 18, 0.2); }
.btn-pill--ghost {
  background: transparent; color: var(--text-sub);
  border: 1.5px solid var(--gray-border);
}
.btn-pill--ghost:hover { border-color: var(--text-sub); color: var(--ink); box-shadow: none; }
.btn-pill--white { background: var(--white); color: var(--ink); }
.btn-pill--white:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.18); }

/* ── FLOATING PILL NAV ── */
.nav-wrapper {
  position: fixed; top: 16px; left: 50%;
  transform: translateX(-50%); z-index: 200;
  width: calc(100% - 32px); max-width: 1160px;
}

nav.pill-nav {
  display: flex; align-items: center; gap: var(--s-lg);
  background: var(--white); border-radius: var(--r-pill);
  padding: 6px 14px 6px 20px;
  box-shadow: rgba(23, 26, 87, 0.10) 0px 12px 64px 0px;
  border: 1px solid rgba(255,255,255,0.6);
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-img {
  height: 56px; width: auto;
  display: block; flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800; font-size: 18px;
  color: var(--ink); letter-spacing: -0.5px;
}

.nav-links {
  list-style: none; display: flex; gap: 4px; margin-left: auto;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-sub); text-decoration: none;
  padding: 8px 16px; border-radius: var(--r-pill);
  transition: background 0.2s, color 0.2s;
  letter-spacing: -0.28px;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--gray-light); color: var(--ink);
}

.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav-phone {
  font-size: 14px; font-weight: 600;
  color: var(--text-sub); text-decoration: none;
  letter-spacing: -0.28px; padding: 8px 12px;
}
.nav-phone:hover { color: var(--ink); }

.nav-toggle {
  display: none; background: transparent; border: none;
  width: 36px; height: 36px; border-radius: 0;
  cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 16px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ── HERO (dark base + centered text + pill buttons — v4/v5 merge) ── */
.hero {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero { background: #0f1012; }
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('photos/ym-38.jpg');
  background-size: cover; background-position: center 35%;
  transform: scale(1.06);
  opacity: 0;
  animation:
    heroBgFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0ms forwards,
    heroZoom 14s ease-out 0ms forwards;
}
@keyframes heroBgFadeIn { to { opacity: 1; } }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,16,18,0.55) 0%, rgba(15,16,18,0.85) 100%);
  opacity: 0;
  animation: heroDimIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) 600ms forwards;
}
@keyframes heroDimIn { to { opacity: 1; } }

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  padding: 8px 20px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85); margin-bottom: var(--s-xl);
  letter-spacing: -0.26px;
}
.hero-label .dot {
  width: 6px; height: 6px;
  background: #7BAE6E; border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

.hero-h1 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(48px, 7.5vw, 88px);
  line-height: 1.02; letter-spacing: -2.5px;
  color: var(--white); margin-bottom: var(--s-lg);
  max-width: 980px; margin-left: auto; margin-right: auto;
}
.hero-h1 .light { font-weight: 300; color: rgba(255,255,255,0.85); }
.hero-h1 .bold  { font-weight: 900; }
.hero-h1 .accent { color: #7BAE6E; font-weight: 900; }

.hero-sub {
  font-size: 18px; font-weight: 400;
  color: #ffffff; line-height: 1.6;
  max-width: 580px; margin: 0 auto var(--s-xl);
  letter-spacing: -0.18px;
}

.hero-actions {
  display: flex; justify-content: center;
  gap: var(--s-sm); margin-bottom: var(--s-4xl);
  flex-wrap: wrap;
}
.hero-actions .btn-pill--ghost {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.22);
}
.hero-actions .btn-pill--ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* Hero photo strip — flat row, no 3D tilt */
.hero-3d-wrapper {
  display: flex; justify-content: center;
  margin: 0 auto; max-width: 1100px;
  padding: 0 24px;
}
.hero-3d-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 240px));
  gap: 14px;
}
.hero-3d-card {
  border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255,255,255,0.05);
  transition: transform 0.4s cubic-bezier(0.33, 0, 0, 1), box-shadow 0.4s;
}
.hero-3d-card:hover {
  transform: translateZ(20px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}
.hero-3d-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Pill-nav over dark hero needs subtle adjustment so logo still reads light */
.hero + .proof-bar { border-top: none; }

/* ── PAGE BANNER (light) ── */
.page-banner {
  padding: 160px 0 60px;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--gray-border);
}
.page-banner h1 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05; letter-spacing: -2.5px;
  color: var(--ink); margin-bottom: var(--s-md);
  max-width: 880px; margin-left: auto; margin-right: auto;
}
.page-banner h1 .light { font-weight: 300; }
.page-banner h1 .bold { font-weight: 900; }
.page-banner h1 .accent { color: #7BAE6E; font-weight: 900; }
.page-banner .banner-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.65; max-width: 640px;
  margin: 0 auto; letter-spacing: -0.17px;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gray-light); border-radius: var(--r-pill);
  padding: 6px 16px; font-size: 12px; font-weight: 600;
  color: var(--text-sub); margin-bottom: var(--s-lg);
  letter-spacing: -0.24px;
}
.breadcrumb a { color: var(--text-sub); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--text-muted); }

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  padding: 56px 40px;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.proof-bar-label {
  text-align: center; font-size: 13px; font-weight: 500;
  color: var(--text-muted); letter-spacing: -0.13px;
  margin-bottom: var(--s-xl);
}
.proof-bar-stats {
  display: flex; justify-content: center;
  gap: var(--s-4xl); flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat-num {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 48px; font-weight: 900;
  color: var(--ink); letter-spacing: -2px; line-height: 1;
}
.proof-stat-num .accent { color: #7BAE6E; }
/* "+" / "y+" suffix on big stats: subordinate to the number, not the same size */
.stat-plus { font-size: 0.55em; font-weight: inherit; letter-spacing: 0; }
.proof-stat-label {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted); margin-top: 8px;
  letter-spacing: -0.14px;
}

/* ── SECTION SHELL ── */
.section { padding: var(--s-5xl) 0; }
.section-light { background: var(--white); }
.section-soft { background: var(--gray-light); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--white); }
.section-deep { background: var(--dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: var(--s-3xl); }
.section-h2 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800; letter-spacing: -2.56px;
  line-height: 1.05; color: var(--ink);
  font-size: clamp(40px, 5.5vw, 64px);
}
.section-h2--light { color: var(--white); }
.section-h2 .light { font-weight: 300; }
.section-h2 .accent { color: #7BAE6E; }
.section-sub {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.65; max-width: 560px;
  margin: var(--s-md) auto 0; letter-spacing: -0.16px;
}
.section-sub--light { color: rgba(255,255,255,0.65); }

/* Inline section header (left-aligned) */
.section-h2--inline {
  text-align: left; max-width: 700px;
}

/* ── FEATURE CARDS GRID (services) ── */
.features { padding: var(--s-5xl) 0 var(--s-4xl); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg);
}
.feature-card {
  background: var(--gray-light); border-radius: var(--r-card);
  padding: var(--s-xl);
  transition: transform 0.3s cubic-bezier(0.33, 0, 0, 1), box-shadow 0.3s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: var(--s-md);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(23, 26, 87, 0.08) 0px 24px 48px 0px;
  background: var(--white);
}
.feature-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: #7BAE6E;
  box-shadow: rgba(23, 26, 87, 0.06) 0px 4px 16px 0px;
}
.feature-card-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -1px; color: var(--ink);
  line-height: 1.2;
}
.feature-card p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.55; letter-spacing: -0.15px;
}
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.feature-tag {
  font-size: 11px; font-weight: 600; letter-spacing: -0.11px;
  color: var(--text-sub);
  background: var(--white); padding: 4px 12px;
  border-radius: var(--r-pill);
}
.feature-card-link {
  font-size: 13px; font-weight: 700; color: #7BAE6E;
  letter-spacing: -0.13px; display: inline-flex; align-items: center; gap: 4px;
}
.feature-card-link::after { content: '→'; transition: transform .2s; }
.feature-card:hover .feature-card-link::after { transform: translateX(4px); }

/* ── BIG PROOF / CONTRAST SECTION ── */
.contrast-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl); align-items: center;
  padding: var(--s-5xl) 0;
}
.contrast-img {
  border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: rgba(23, 26, 87, 0.10) -16px 24px 48px;
}
.contrast-img img { width: 100%; height: 100%; object-fit: cover; }
.contrast-text h2 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2.4px; color: var(--ink); margin-bottom: var(--s-md);
}
.contrast-text h2 .accent { color: #7BAE6E; }
.contrast-text p {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.65; letter-spacing: -0.17px; margin-bottom: var(--s-md);
}
.contrast-stats {
  display: flex; gap: var(--s-2xl);
  margin-top: var(--s-xl); padding-top: var(--s-lg);
  border-top: 1px solid var(--gray-border);
}
.contrast-stat-num {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 36px; font-weight: 900;
  color: var(--ink); letter-spacing: -1.5px; line-height: 1;
}
.contrast-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ── GALLERY (horizontal scroll, light) ── */
.gallery {
  background: var(--gray-light);
  padding: var(--s-5xl) 0;
  overflow: hidden;
}
.gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--s-2xl); flex-wrap: wrap; gap: 20px;
}
.gallery-heading {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800; letter-spacing: -2.5px;
  color: var(--ink); line-height: 1.05;
}
.gallery-count {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text-sub); letter-spacing: -0.14px;
}
.gallery-scroll {
  display: flex; gap: var(--s-md);
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding-bottom: var(--s-md);
  scrollbar-width: none;
  overscroll-behavior: auto;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-card {
  flex: 0 0 380px; scroll-snap-align: start;
  position: relative; overflow: hidden;
  border-radius: var(--r-card); cursor: pointer; aspect-ratio: 4/3;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,16,18,0.85) 0%, rgba(15,16,18,0.05) 55%, transparent 75%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--s-lg);
  opacity: 1; transition: opacity 0.3s;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-label {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px; font-weight: 800; color: var(--white);
  letter-spacing: -0.5px;
}
.gallery-card-sub { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }

.gallery-full {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gallery-full .gallery-card { flex: none; aspect-ratio: 4/3; }
.gallery-filter {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: var(--s-xl);
  justify-content: center;
}
.gallery-filter button {
  background: var(--white); border: 1px solid var(--gray-border);
  color: var(--text-sub); padding: 10px 20px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: -0.13px; cursor: pointer;
  border-radius: var(--r-pill); transition: all .2s;
}
.gallery-filter button:hover {
  background: var(--gray-light); color: var(--ink);
}
.gallery-filter button.active {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}

/* ── PROCESS (light cards) ── */
.process {
  background: var(--gray-light);
  padding: var(--s-5xl) 0;
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
}
.process-step {
  background: var(--white); padding: var(--s-xl);
  border-radius: var(--r-card); position: relative;
  display: flex; flex-direction: column; gap: var(--s-md);
}
.process-step-num {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; font-weight: 700;
  color: #7BAE6E; letter-spacing: 1.5px;
}
.process-step h4 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -1px; color: var(--ink);
  line-height: 1.2;
}
.process-step p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6; letter-spacing: -0.14px;
}

/* ── PHOTO BREAK ── */
.photo-break {
  position: relative; height: 480px; overflow: hidden;
  margin: var(--s-3xl) 0;
}
.photo-break img { width: 100%; height: 100%; object-fit: cover; }
.photo-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(15,16,18,0.4));
}
.photo-break-text {
  position: absolute; bottom: var(--s-xl); left: 40px;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); }
.review-card {
  background: var(--white); padding: var(--s-xl);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-card);
  transition: transform .2s, box-shadow .2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(23, 26, 87, 0.08) 0px 16px 40px 0px;
}
.review-stars { color: #7BAE6E; letter-spacing: 3px; font-size: 16px; margin-bottom: 16px; }
.review-text {
  font-size: 16px; line-height: 1.6; color: var(--text);
  margin-bottom: 20px; letter-spacing: -0.16px;
}
.review-author {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.5px;
}
.review-meta { font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: -0.12px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--gray-light); border-radius: var(--r-md);
  padding: var(--s-lg) var(--s-xl);
  transition: background .2s;
}
.faq-item.open { background: var(--white); box-shadow: rgba(23, 26, 87, 0.06) 0px 8px 32px 0px; }
.faq-q {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.5px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after {
  content: '+'; color: #7BAE6E;
  font-size: 24px; font-weight: 300;
  transition: transform .25s;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: 50%; flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-item.open .faq-q::after { background: var(--gray-light); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 600px; padding-top: 14px; }
.faq-a p { font-size: 15px; line-height: 1.65; color: var(--text-muted); letter-spacing: -0.15px; }

/* ── FORMS ── */
.form-card {
  background: var(--white); padding: var(--s-2xl);
  border-radius: var(--r-card); border: 1px solid var(--gray-border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-md); margin-bottom: var(--s-md); }
.form-row--single { grid-template-columns: 1fr; }
.form-field label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-sub); margin-bottom: 6px;
  letter-spacing: -0.12px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--gray-light);
  border: 1.5px solid transparent; padding: 14px 16px;
  font-family: inherit; font-size: 15px; color: var(--text);
  outline: none; border-radius: var(--r-md);
  transition: border-color .2s, background .2s;
  letter-spacing: -0.15px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(15, 16, 18, 0.32);
  font-weight: 400;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--ink); background: var(--white);
}
.form-row--checkbox-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: var(--s-lg);
}
.checkbox-tile {
  display: block; cursor: pointer;
  background: var(--gray-light); border: 1.5px solid transparent;
  padding: 14px 16px; border-radius: var(--r-md);
  transition: all .2s;
}
.checkbox-tile input { display: none; }
.checkbox-tile span {
  font-size: 13px; font-weight: 600;
  color: var(--text-sub); letter-spacing: -0.13px;
}
.checkbox-tile input:checked + span { color: var(--ink); }
.checkbox-tile:has(input:checked) { background: var(--white); border-color: var(--ink); }
.form-submit {
  margin-top: 8px; width: 100%; padding: 18px 24px;
  background: #7BAE6E; color: var(--white);
  border: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 700;
  letter-spacing: -0.15px; transition: background .2s;
  border-radius: var(--r-pill);
}
.form-submit:hover { background: var(--orange-dark); }

/* Contact card — bright green card matching email-signup pattern (no black on funnel) */
.contact-card {
  background: #7BAE6E; color: var(--white);
  padding: var(--s-2xl); border-radius: var(--r-card);
  box-shadow: 0 16px 56px rgba(15,16,18,0.12);
}
.contact-card h3 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 28px; font-weight: 800;
  letter-spacing: -1.4px; margin-bottom: var(--s-lg);
}
.contact-block { padding: var(--s-md) 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-block:last-child { border-bottom: none; }
.contact-block .label {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.5);
  letter-spacing: 1px; margin-bottom: 4px;
}
.contact-block .value, .contact-block a {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px; font-weight: 700; color: var(--white);
  text-decoration: none; letter-spacing: -0.5px;
}
.contact-block a:hover { color: #7BAE6E; }
.contact-block p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* Map */
/* ── MAP (Lenny Boy v8 style: rounded frame + floating address card) ── */
.map-band {
  background: #ffffff;
  padding: 28px;
}
.map-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(15,16,18,0.08);
  box-shadow: 0 16px 40px rgba(15,16,18,0.08);
  max-width: 1200px;
  margin: 0 auto;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}
.map-frame.is-active iframe { pointer-events: auto; }
.map-frame .map-card {
  position: absolute;
  bottom: 22px; left: 22px;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(15,16,18,0.16);
  max-width: 320px;
  border: 1px solid rgba(15,16,18,0.06);
}
.map-card-label {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #547B4A;
  margin-bottom: 10px;
}
.map-frame .map-card h3 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px; font-weight: 600;
  color: #0f1012;
  margin: 0 0 6px;
  line-height: 1.1;
}
.map-card-addr {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13.5px;
  color: rgba(15,16,18,0.66);
  margin: 0 0 14px;
  line-height: 1.5;
}
.map-card-cta {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  color: #0f1012 !important;
  text-decoration: none;
  border-bottom: 1.5px solid #547B4A;
  padding-bottom: 3px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.map-card-cta:hover { color: #547B4A !important; }

@media (max-width: 768px) {
  .map-band { padding: 16px; }
  .map-frame { height: 280px; border-radius: 16px; }
  .map-frame .map-card { bottom: 14px; left: 14px; right: 14px; max-width: none; padding: 14px 16px; }
  .map-frame .map-card h3 { font-size: 17px; }
  .map-card-addr { font-size: 12.5px; margin-bottom: 10px; }
}

/* Legacy .map-wrap fallback (anything still using the old class) */
.map-wrap { width: 100%; height: 340px; background: #f4f4f4; position: relative; overflow: hidden; border-radius: 16px; margin: 0 auto; max-width: 1200px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; pointer-events: none; }
.map-wrap.is-active iframe { pointer-events: auto; }

/* Service area zones */
.zone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-md); }
.zone-card {
  background: var(--white); padding: var(--s-xl);
  border-radius: var(--r-card); border: 1px solid var(--gray-border);
  transition: transform .2s, box-shadow .2s;
}
.zone-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(23, 26, 87, 0.08) 0px 16px 40px 0px;
}
.zone-card h4 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -1px; color: var(--ink); margin-bottom: 8px;
}
.zone-card .zone-cities { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.zone-card .zone-distance {
  display: inline-block; margin-top: 16px;
  font-size: 11px; font-weight: 700; color: #7BAE6E;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(212, 100, 42, 0.08); padding: 4px 12px;
  border-radius: var(--r-pill);
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); }
.price-card {
  background: var(--white); padding: var(--s-2xl) var(--s-xl);
  border-radius: var(--r-card); border: 1px solid var(--gray-border);
  position: relative; transition: transform .2s, box-shadow .2s;
}
.price-card.featured {
  background: var(--ink); color: var(--white);
  border-color: var(--ink); transform: translateY(-12px);
  box-shadow: rgba(23, 26, 87, 0.18) 0px 32px 64px 0px;
}
.price-card.featured h3 { color: var(--white); }
.price-card.featured ul li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.08); }
.price-card.featured .price-sub { color: rgba(255,255,255,0.6); }
.price-tag {
  position: absolute; top: -12px; left: 24px;
  background: #7BAE6E; color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 6px 14px; border-radius: var(--r-pill);
}
.price-card h3 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 26px; font-weight: 800;
  letter-spacing: -1.3px; color: var(--ink); margin-bottom: 6px;
}
.price-card .price-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.price-card ul { list-style: none; margin-bottom: 24px; }
.price-card ul li {
  position: relative; padding: 10px 0 10px 24px;
  font-size: 14px; color: var(--text-sub); line-height: 1.5;
  border-bottom: 1px solid var(--gray-border);
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: '✓'; position: absolute; left: 0; top: 10px;
  color: #7BAE6E; font-weight: 700;
}

/* Side card (service detail pages) — sticky position with breathing
   room below the floating nav pill. Nav sits ~88px from viewport top
   (16px offset + 60px nav + banner-h via JS), so 132px gives a clear
   gap so the card doesn't crowd the nav as you scroll. */
.side-card {
  background: var(--gray-light); padding: var(--s-xl);
  border-radius: var(--r-card); position: sticky; top: 132px;
}
.side-card h4 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px; font-weight: 800;
  letter-spacing: -1px; color: var(--ink); margin-bottom: var(--s-lg);
}
.side-card-list { list-style: none; }
.side-card-list li {
  font-size: 14px; padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
  color: var(--text-muted); display: flex; justify-content: space-between;
  letter-spacing: -0.14px;
}
.side-card-list li:last-child { border-bottom: none; }
.side-card-list li span { color: var(--ink); font-weight: 700; }
.side-card-cta {
  display: flex; align-items: center; justify-content: center;
  margin-top: 20px; padding: 14px 24px;
  background: #7BAE6E; color: var(--white);
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.14px; text-decoration: none;
  transition: background .2s; border-radius: var(--r-pill);
}
.side-card-cta:hover { background: var(--orange-dark); }

/* Content prose for service pages */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3xl); align-items: start; }
.content-grid-3-2 { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s-3xl); align-items: start; }
.content-prose p {
  font-size: 16px; line-height: 1.7; color: var(--text-sub);
  margin-bottom: var(--s-md); letter-spacing: -0.16px;
}
.content-prose h3 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 26px; font-weight: 800;
  letter-spacing: -1.3px; color: var(--ink);
  margin: var(--s-xl) 0 var(--s-sm);
  line-height: 1.15;
}
.content-prose ul { list-style: none; margin: var(--s-md) 0 var(--s-lg); }
.content-prose ul li {
  position: relative; padding-left: 28px;
  font-size: 15px; line-height: 1.65;
  color: var(--text-sub); margin-bottom: 8px;
  letter-spacing: -0.15px;
}
.content-prose ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: #7BAE6E; font-weight: 800;
}
.content-prose strong { color: var(--ink); font-weight: 700; }

/* ── SEASONAL CTA STRIP ── */
.seasonal-cta {
  background: #7BAE6E; padding: var(--s-2xl) 0;
  text-align: center; color: var(--white);
}
.seasonal-cta h2 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 8px;
}
.seasonal-cta p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: var(--s-lg); }

/* ── FINAL CTA (dark) ── */
.cta-final {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink); color: var(--white);
  padding: var(--s-5xl) 0;
  text-align: center;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background: url('photos/ym-49.jpg') center 40% / cover no-repeat;
}
.cta-final::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,16,18,0.55) 0%, rgba(15,16,18,0.85) 100%);
}
.cta-final h2 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800; letter-spacing: -2.5px; line-height: 1.05;
  margin-bottom: var(--s-md);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.cta-final h2 .light { font-weight: 300; }
.cta-final h2 .accent { color: #7BAE6E; }
.cta-final p {
  font-size: 17px; color: rgba(255,255,255,0.65);
  line-height: 1.6; max-width: 580px; margin: 0 auto var(--s-xl);
  letter-spacing: -0.17px;
}
.cta-final-actions { display: flex; justify-content: center; gap: var(--s-sm); flex-wrap: wrap; }

/* ── UTILITY PAGES ── */
.utility-page {
  min-height: calc(100vh - 80px);
  padding: 200px 0 100px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); text-align: center;
}
.utility-inner { max-width: 640px; padding: 0 24px; }
.utility-pretitle {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gray-light); border-radius: var(--r-pill);
  padding: 8px 20px; font-size: 13px; font-weight: 600;
  color: var(--text-sub); margin-bottom: var(--s-xl);
}
.utility-pretitle .dot { width: 6px; height: 6px; background: #7BAE6E; border-radius: 50%; }
.utility-title {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(72px, 12vw, 168px);
  font-weight: 900; letter-spacing: -5px; line-height: 1;
  color: var(--ink); margin-bottom: var(--s-md);
}
.utility-title .light { font-weight: 300; }
.utility-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: var(--s-xl);
  letter-spacing: -0.17px;
}
.utility-ctas { display: flex; gap: var(--s-sm); justify-content: center; flex-wrap: wrap; }

/* Legal */
.legal-section {
  padding: var(--s-4xl) 40px; background: var(--white);
  max-width: 920px; margin: 0 auto;
}
.legal-section h2 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px; font-weight: 800;
  letter-spacing: -1.2px; color: var(--ink);
  margin: var(--s-xl) 0 var(--s-sm);
}
.legal-section p, .legal-section li {
  font-size: 15.5px; line-height: 1.75;
  color: var(--text-sub); margin-bottom: var(--s-sm);
  letter-spacing: -0.155px;
}
.legal-section ul { padding-left: 24px; margin-bottom: var(--s-md); }

/* Tags */
.tag-cluster { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag-cluster .tag-pill {
  font-size: 12px; font-weight: 600; letter-spacing: -0.12px;
  color: var(--text-sub); background: var(--gray-light);
  padding: 6px 14px; border-radius: var(--r-pill);
}

/* About feature (founder split) */
.about-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: var(--s-3xl);
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--s-5xl) 40px;
}
.about-feature-photo {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden; border-radius: var(--r-card);
  box-shadow: rgba(23, 26, 87, 0.10) -16px 24px 48px;
}
.about-feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-feature-photo .tag-overlay {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: -0.11px;
  padding: 8px 14px; border-radius: var(--r-pill);
}

/* ── NEWSLETTER PREVIEW (3-col magazine grid above footer) ── */
.newsletter-preview {
  background: var(--cream);
  padding: var(--s-4xl) 0;
}
.newsletter-preview-header {
  text-align: center; max-width: 720px; margin: 0 auto var(--s-3xl);
}
.newsletter-preview-eyebrow {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px; font-weight: 700; color: #7BAE6E;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.newsletter-preview-header h2 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 800;
  color: var(--ink); line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 16px;
}
.newsletter-preview-header h2 .accent { color: #7BAE6E; }
.newsletter-preview-header p {
  font-size: 17px; line-height: 1.6; color: var(--text-sub);
  letter-spacing: -0.17px;
}
.newsletter-issues {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2xl);
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 40px;
}
.newsletter-issue {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.newsletter-issue:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,16,18,0.10);
}
.newsletter-issue-img {
  aspect-ratio: 4/3; overflow: hidden;
  position: relative;
}
.newsletter-issue-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.newsletter-issue:hover .newsletter-issue-img img { transform: scale(1.04); }
.newsletter-issue-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--white); color: var(--ink);
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.newsletter-issue-body {
  padding: 24px;
}
.newsletter-issue-meta {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px; font-weight: 700; color: #7BAE6E;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}
.newsletter-issue h3 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.7px; line-height: 1.2; margin-bottom: 12px;
}
.newsletter-issue p {
  font-size: 14px; line-height: 1.6; color: var(--text-muted);
  margin-bottom: 16px; letter-spacing: -0.14px;
}
.newsletter-issue-link {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; font-weight: 700; color: #7BAE6E;
  text-decoration: none; letter-spacing: -0.13px;
}
.newsletter-issue-link:hover { color: var(--ink); }

/* ── EMAIL SIGNUP (big bold dark green section) ── */
.email-signup {
  background: var(--dark);
  padding: var(--s-5xl) 0;
  position: relative;
  overflow: hidden;
}
.email-signup::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: #7BAE6E; opacity: 0.3;
  border-radius: 50%;
  pointer-events: none;
}
.email-signup::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: #7BAE6E; opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}
.email-signup-inner {
  max-width: 880px; margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative; z-index: 2;
}
.email-signup-eyebrow {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px; font-weight: 700; color: #7BAE6E;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px;
}
.email-signup h2 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(48px, 7vw, 84px); font-weight: 900;
  color: var(--white); line-height: 1.0; letter-spacing: -3px;
  margin-bottom: 24px;
}
.email-signup h2 .accent { color: #7BAE6E; }
.email-signup p.email-signup-sub {
  font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 600px; margin: 0 auto var(--s-2xl);
  letter-spacing: -0.2px;
}
.email-signup-form {
  display: flex; gap: 12px; max-width: 520px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.email-signup-form input {
  flex: 1; min-width: 240px;
  padding: 18px 24px;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: inherit; font-size: 16px;
  outline: none;
  transition: border-color .2s, background .2s;
  letter-spacing: -0.16px;
}
.email-signup-form input::placeholder { color: rgba(255,255,255,0.5); }
.email-signup-form input:focus {
  border-color: #7BAE6E;
  background: rgba(255,255,255,0.12);
}
.email-signup-form button {
  background: #7BAE6E; color: var(--dark);
  border: none; border-radius: var(--r-pill);
  padding: 18px 38px;
  font-family: inherit; font-size: 16px; font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  letter-spacing: -0.16px;
}
.email-signup-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 213, 168, 0.35);
}
.email-signup-disclaimer {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-top: 20px; letter-spacing: -0.13px;
}

/* Mobile responsive for new sections */
@media (max-width: 900px) {
  .newsletter-issues { grid-template-columns: 1fr; padding: 0 20px; gap: var(--s-lg); }
  .email-signup { padding: var(--s-4xl) 0; }
  .email-signup-form { flex-direction: column; }
  .email-signup-form input, .email-signup-form button { width: 100%; }
}

/* ── FOOTER (Levain multi-rectangle, white) ── */
footer.site-footer {
  background: var(--gray-soft); color: var(--text-sub);
  padding: var(--s-3xl) var(--s-lg) var(--s-3xl);
}
footer.site-footer > .container {
  max-width: var(--max-w); margin: 0 auto;
  background: var(--white);
  border-radius: 18px;
  padding: var(--s-3xl) var(--s-2xl);
  box-shadow: 0 12px 48px rgba(15, 16, 18, 0.06);
  border: 1px solid var(--gray-border);
  margin-bottom: var(--s-md);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-2xl);
}
.footer-brand-name {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800; font-size: 24px;
  color: var(--ink); letter-spacing: -0.5px; margin-bottom: 4px;
}
.footer-brand-tag {
  font-size: 12px; color: #7BAE6E; margin-bottom: var(--s-md);
  font-weight: 600; letter-spacing: -0.12px;
}
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 280px; color: var(--text-muted); }
.footer-phone {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px; font-weight: 800; color: #7BAE6E;
  text-decoration: none; display: block; margin-top: var(--s-lg);
  letter-spacing: -0.5px; transition: color .2s;
}
.footer-phone:hover { color: var(--ink); }
.footer-newsletter {
  margin-top: var(--s-md);
  display: flex; gap: 8px; align-items: center;
  max-width: 320px;
}
.footer-newsletter input {
  flex: 1; padding: 12px 16px;
  border-radius: var(--r-pill); border: 1px solid var(--gray-border);
  background: var(--gray-soft);
  font-family: inherit; font-size: 13px; color: var(--ink);
  outline: none; transition: border-color .2s, background .2s;
}
.footer-newsletter input:focus {
  border-color: #7BAE6E; background: var(--white);
}
.footer-newsletter button {
  background: #7BAE6E; color: var(--white);
  border: none; border-radius: var(--r-pill);
  padding: 12px 22px;
  font-family: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .2s;
  letter-spacing: -0.13px;
}
.footer-newsletter button:hover { background: var(--ink); transform: translateY(-1px); }
.footer-newsletter-label {
  font-size: 13px; color: var(--text-muted); margin-top: var(--s-md); margin-bottom: 8px;
  font-weight: 500; letter-spacing: -0.13px;
}
.footer-col h4 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--ink); margin-bottom: var(--s-md);
  letter-spacing: -0.13px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li span {
  font-size: 14px; color: var(--text-muted);
  text-decoration: none; transition: color .2s; letter-spacing: -0.14px;
}
.footer-col li a:hover { color: #7BAE6E; }
.footer-bottom {
  padding-top: var(--s-md); display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--text-muted); letter-spacing: -0.12px;
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: #7BAE6E; }
.footer-strip {
  max-width: var(--max-w); margin: var(--s-md) auto 0;
  background: #7BAE6E;
  border-radius: 14px;
  padding: var(--s-md) var(--s-2xl);
  border: none;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: #ffffff; letter-spacing: -0.12px;
}
.footer-strip a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color .2s; }
.footer-strip a:hover { color: #ffffff; }

/* Mobile drawer base (hidden by default — v3.2 mobile rules at line ~2730 take over on mobile) */
.mobile-drawer { display: none; }
.mobile-drawer.open { display: flex; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding-left: 32px; padding-right: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contrast-block { grid-template-columns: 1fr; gap: 32px; }
  .content-grid, .content-grid-3-2 { grid-template-columns: 1fr; gap: 32px; }
  .side-card { position: static; }
  .about-feature { grid-template-columns: 1fr; gap: 32px; }
  .hero-3d-grid {
    grid-template-columns: repeat(3, minmax(0, 200px));
    transform: scale(0.85) rotate(-5deg) rotateX(12deg) rotateY(10deg);
  }
}

@media (max-width: 768px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .nav-wrapper { top: 12px; width: calc(100% - 24px); }
  nav.pill-nav { padding: 8px 8px 8px 16px; gap: 12px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none !important; }
  .nav-toggle { display: flex; }
  .logo-text { font-size: 16px; }

  .hero { padding: 140px 0 60px; }
  .hero-h1 { font-size: clamp(40px, 11vw, 60px); letter-spacing: -1.5px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { gap: 8px; }
  .hero-3d-wrapper { padding: 0 12px; }
  .hero-3d-grid {
    grid-template-columns: repeat(3, minmax(0, 110px));
    transform: scale(0.95) rotate(-4deg) rotateX(8deg) rotateY(6deg);
    gap: 8px;
  }

  .page-banner { padding: 130px 0 40px; }

  .proof-bar { padding: 32px 24px; }
  .proof-bar-stats { gap: 24px; }
  .proof-stat-num { font-size: 36px; }

  .section { padding: 60px 0; }
  .features { padding: 60px 0 40px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px; }

  .gallery { padding: 60px 0; }
  .gallery-card { flex: 0 0 280px; }
  .gallery-full { grid-template-columns: 1fr; gap: 16px; }
  .gallery-filter { gap: 6px; }
  .gallery-filter button { padding: 8px 14px; font-size: 12px; }

  .process { padding: 60px 0; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }

  .photo-break { height: 280px; margin: 32px 0; }
  .photo-break-text { left: 20px; font-size: 12px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card.featured { transform: none; }
  .zone-grid { grid-template-columns: 1fr; gap: 12px; }

  .contrast-block { padding: 60px 0; }
  .contrast-stats { gap: 24px; }

  .seasonal-cta { padding: 32px 24px; }

  .cta-final { padding: 60px 0; }
  .cta-final h2 { font-size: clamp(36px, 9vw, 56px); letter-spacing: -1.5px; }

  .form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .form-row--checkbox-row { grid-template-columns: 1fr 1fr; }

  footer.site-footer { padding: 48px 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; justify-content: center; align-items: center; }

  .utility-page { padding: 140px 0 60px; }
  .utility-title { font-size: clamp(56px, 18vw, 96px); letter-spacing: -2px; }

  .legal-section { padding: 60px 24px; }
  .about-feature { padding: 60px 24px; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-3d-grid {
    grid-template-columns: repeat(3, minmax(0, 88px));
    transform: scale(1) rotate(-3deg) rotateX(6deg) rotateY(4deg);
    gap: 6px;
  }
  .proof-bar-stats { flex-direction: column; gap: 24px; }
  .gallery-card { flex: 0 0 240px; }
}

/* ╔════════════════════════════════════════════════════════════════╗
   ║  v3.1 MOBILE COMPACT PASS — appended 2026-05-13                ║
   ║  Goal: faster read, tighter cards/photos, footer aligned,      ║
   ║  hamburger right + bigger, smaller pill nav, no oversized      ║
   ║  proof-bar on phones, newsletter not huge.                     ║
   ╚════════════════════════════════════════════════════════════════╝ */
@media (max-width: 768px) {
  /* ── NAV: shorter pill, hamburger flush right and bigger ── */
  .nav-wrapper { top: 10px; width: calc(100% - 20px); }
  nav.pill-nav { padding: 5px 12px 5px 14px; gap: 0; min-height: 48px; }
  .logo-img { max-height: 34px; width: auto; }
  .nav-toggle {
    margin-left: auto;
    width: 44px !important;
    height: 44px !important;
  }
  .nav-toggle span {
    width: 22px !important;
    left: 11px !important;
  }

  /* ── HERO: tighter top padding + compact actions ── */
  .hero { padding: 96px 0 36px; }
  .hero-h1 { font-size: clamp(34px, 9.2vw, 48px); letter-spacing: -1px; }
  .hero-sub { font-size: 14px; line-height: 1.55; padding: 0 8px; }
  .hero-actions { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .hero-actions .btn-pill { font-size: 14px; padding: 12px 22px; }
  .hero-label { font-size: 11px; padding: 6px 14px; }

  /* Hero 3D grid 2x2 ─ centered, slightly larger sweet spot */
  .hero-3d-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 0 16px !important;
  }
  .hero-3d-grid {
    grid-template-columns: repeat(2, minmax(0, 148px)) !important;
    gap: 10px !important;
    margin: 0 auto !important;
    justify-content: center !important;
    place-content: center !important;
  }
  .hero-3d-card img,
  .hero-3d-card { height: 102px !important; }

  /* ── PROOF BAR: compact 2x2 grid, smaller everything ── */
  .proof-bar { padding: 30px 16px 28px !important; }
  .proof-bar-label { font-size: 13px !important; margin-bottom: 22px !important; }
  .proof-bar-stats {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 12px !important;
  }
  .proof-stat {
    flex: 0 1 calc(50% - 8px) !important;
    min-width: 0 !important;
    max-width: 160px !important;
  }
  .proof-stat-icon {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 10px !important;
    border-radius: 10px !important;
  }
  .proof-stat-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .proof-stat-num { font-size: 26px !important; letter-spacing: -0.5px !important; }
  .proof-stat-accent {
    width: 22px !important;
    margin: 7px 0 6px !important;
  }
  .proof-stat-label { font-size: 12.5px !important; }
  .proof-bar-cta { margin-top: 18px !important; }
  .proof-bar-cta .btn-pill { font-size: 14px; padding: 12px 24px; }

  /* ── SECTION HEADERS scaled ── */
  .section-header { margin-bottom: 28px; padding: 0 4px; }
  .section-h2 { font-size: clamp(28px, 7vw, 38px) !important; line-height: 1.05 !important; }
  .section-sub { font-size: 14px !important; line-height: 1.55 !important; }

  /* ── FEATURES (services) compact: shrink CARDS + bigger words ── */
  .features { padding: 24px 0 22px !important; }
  .features-grid { gap: 10px !important; }
  .feature-card {
    padding: 18px 18px 18px !important;
    border-radius: 12px !important;
    min-height: 0 !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  .feature-card h3 {
    font-size: 18px !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
  }
  .feature-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 2px 0 4px !important;
  }
  .feature-card-icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 4px !important;
  }
  .feature-card-icon svg { width: 18px !important; height: 18px !important; }
  .feature-tags { gap: 4px !important; margin: 2px 0 4px !important; }
  .feature-tag {
    font-size: 11px !important;
    padding: 3px 9px !important;
    letter-spacing: 0.02em !important;
  }
  .feature-card-link {
    font-size: 13px !important;
    margin-top: 2px !important;
    font-weight: 500 !important;
  }

  /* ── BIGNUM (Quality Work / 27 Years) compact ── */
  .bignum-section { padding: 56px 0 !important; min-height: auto !important; }
  .bignum-grid { padding: 0 20px !important; gap: 28px !important; }
  .bignum-text .meta { font-size: 10px !important; margin-bottom: 14px !important; }
  .bignum-text h2 { font-size: clamp(30px, 7.5vw, 42px) !important; margin-bottom: 18px !important; }
  .bignum-text p { font-size: 14px !important; line-height: 1.6 !important; margin-bottom: 12px !important; }
  .bignum-stats {
    gap: 18px !important;
    padding: 16px 0 !important;
    margin: 22px 0 !important;
    flex-wrap: wrap;
  }
  .bignum-stat-num { font-size: 22px !important; }
  .bignum-stat-label { font-size: 10px !important; margin-top: 4px !important; }
  .bignum-watermark { font-size: 42vw !important; top: 14% !important; bottom: auto !important; right: 4% !important; }
  .bignum-photo { border-radius: 4px !important; }
  .bignum-photo .caption { padding: 16px 14px 14px !important; font-size: 14px !important; }
  .bignum-photo .caption-meta { font-size: 9px !important; margin-bottom: 6px !important; }

  /* ── GALLERY compact ── */
  .gallery { padding: 28px 0 14px !important; }
  .gallery-header { padding: 0 4px; margin-bottom: 18px; }
  .gallery-heading { font-size: clamp(28px, 7vw, 38px) !important; }
  .gallery-card { flex: 0 0 200px !important; }
  .gallery-card-label { font-size: 13px !important; }
  .gallery-card-sub { font-size: 10.5px !important; }
  .gallery-cta { margin-top: 14px !important; }
  .gallery-cta-lead { font-size: 16.5px !important; padding: 0 12px; }
  .gallery-scroll .breakout-left,
  .gallery-scroll .breakout-right { margin-left: 0 !important; margin-right: 0 !important; }

  /* ── PROCESS compact: shrink cards + kill extra space above heading ── */
  .process { padding: 16px 0 28px !important; }
  .process .section-header { margin-bottom: 22px !important; }
  .process .section-h2 { margin-top: 0 !important; padding-top: 0 !important; }
  .process-grid { gap: 10px !important; }
  .process-step { padding: 16px 16px 14px !important; border-radius: 12px !important; }
  .process-step h4 { font-size: 16px !important; margin: 4px 0 4px !important; line-height: 1.2 !important; font-weight: 600 !important; }
  .process-step p { font-size: 13.5px !important; line-height: 1.5 !important; }
  .process-step-num { font-size: 10px !important; letter-spacing: 0.18em !important; }

  /* ── PHOTO BREAK shorter ── */
  .photo-break { height: 220px !important; margin: 24px 0 !important; }
  .photo-break-text { left: 18px !important; bottom: 60px !important; font-size: 11px !important; padding: 6px 12px !important; }
  .photo-break--bright .photo-break-text { padding: 6px 12px !important; }

  /* ── SEASONAL CTA compact (diagonal slant) ── */
  .seasonal-cta {
    padding: 90px 24px !important;
    margin-top: 60px !important;
    clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%) !important;
  }
  .seasonal-cta h2 { font-size: clamp(26px, 7vw, 36px) !important; line-height: 1.1 !important; }
  .seasonal-cta p { font-size: 13.5px !important; margin-bottom: 16px !important; }

  /* ── NEWSLETTER PREVIEW compact + properly padded ── */
  .newsletter-preview {
    padding: 56px 0 32px !important;
    clip-path: none !important;
  }
  .newsletter-preview-header {
    padding: 0 22px !important;
    margin-bottom: 24px !important;
    text-align: left !important;
  }
  .newsletter-preview-eyebrow {
    font-size: 10.5px !important;
    letter-spacing: 0.18em !important;
    display: inline-block !important;
    padding-left: 0 !important;
    margin-bottom: 10px !important;
  }
  .newsletter-preview h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
    line-height: 1.15 !important;
    margin: 0 0 10px !important;
  }
  .newsletter-preview p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
  }
  .newsletter-issues {
    padding: 0 20px !important;
    gap: 12px !important;
    grid-template-columns: 1fr !important;
  }
  .newsletter-issue { border-radius: 12px !important; }
  .newsletter-issue-img { height: 180px !important; width: 100% !important; aspect-ratio: auto !important; }
  .newsletter-issue-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
  .newsletter-issue-body { padding: 12px 14px 14px !important; }
  .newsletter-issue h3 { font-size: 15px !important; line-height: 1.25 !important; margin: 4px 0 5px !important; }
  .newsletter-issue p { font-size: 12.5px !important; line-height: 1.45 !important; margin-bottom: 8px !important; }
  .newsletter-issue-meta { font-size: 10px !important; margin-bottom: 4px !important; }
  .newsletter-issue-tag { font-size: 9px !important; padding: 3px 8px !important; }
  .newsletter-issue-link { font-size: 12px !important; }

  /* ── EMAIL SIGNUP compact ── */
  .email-signup { padding: 28px 14px 32px !important; }
  .email-signup-inner { padding: 50px 22px !important; border-radius: 16px !important; }
  .email-signup-eyebrow { font-size: 10px !important; }
  .email-signup h2 { font-size: clamp(26px, 7.5vw, 38px) !important; line-height: 1.1 !important; }
  .email-signup p.email-signup-sub { font-size: 13.5px !important; }
  .email-signup-form {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .email-signup-form input { padding: 12px 16px !important; font-size: 14px !important; }
  .email-signup-form button { padding: 12px 24px !important; font-size: 14px !important; }
  .email-signup-disclaimer { font-size: 11px !important; }

  /* ── CTA FINAL compact ── */
  .cta-final { padding: 60px 0 !important; }
  .cta-final h2 { font-size: clamp(30px, 8vw, 44px) !important; line-height: 1.05 !important; }
  .cta-final p { font-size: 14px !important; padding: 0 12px; }
  .cta-final-actions { gap: 8px !important; flex-wrap: wrap; justify-content: center; }

  /* ── FOOTER compact + aligned (tightened) ── */
  footer.site-footer { padding: 28px 0 0 !important; }
  /* Pull the inner container in: desktop's 48px horizontal padding was
     pushing content far right on mobile. 14px gives content room to
     start near the left edge without crowding the rounded card border. */
  footer.site-footer > .container { padding: 32px 14px !important; }
  .footer-grid {
    padding: 0 6px 20px !important;
    gap: 18px !important;
    grid-template-columns: 1fr !important;
    text-align: left;
  }
  .footer-brand-name { font-size: 20px !important; margin-bottom: 4px !important; }
  .footer-brand-tag { font-size: 10.5px !important; margin-bottom: 6px !important; }
  .footer-brand p { font-size: 12.5px !important; line-height: 1.5 !important; max-width: 100%; margin-bottom: 8px !important; }
  .footer-phone { font-size: 17px !important; }
  .footer-col { padding-top: 4px !important; }
  .footer-col h4 { font-size: 11px !important; margin-bottom: 8px !important; letter-spacing: 0.16em; }
  .footer-col ul { padding: 0; gap: 5px !important; }
  .footer-col ul li { font-size: 13px !important; line-height: 1.45 !important; }
  .footer-strip {
    padding: 10px 6px !important;
    flex-direction: column !important;
    gap: 4px !important;
    text-align: center !important;
    font-size: 10.5px !important;
    border-top: 1px solid var(--gray-border);
  }
  .footer-bottom {
    padding: 10px 6px 14px !important;
    flex-direction: column !important;
    gap: 4px !important;
    text-align: center !important;
    font-size: 10.5px !important;
  }

  /* ── VERTICAL PAGINATION labels: hide on mobile (rule from existing CSS was already 1100px, reaffirming) ── */
  .vpage { display: none !important; }
}

@media (max-width: 480px) {
  /* Even tighter on phones < 480 */
  .hero { padding: 90px 0 28px !important; }
  .hero-h1 { font-size: clamp(32px, 10vw, 42px) !important; }
  .hero-actions { width: 100%; padding: 0 16px; }
  .hero-actions .btn-pill { flex: 1 1 auto; min-width: 130px; }
  .hero-3d-grid {
    grid-template-columns: repeat(2, minmax(0, 112px)) !important;
    gap: 6px !important;
  }
  .hero-3d-card img,
  .hero-3d-card { height: 78px !important; }

  .proof-bar { padding: 24px 12px !important; }
  .proof-bar-stats { gap: 22px 8px !important; }
  .proof-stat-num { font-size: 24px !important; }
  .proof-stat-icon { width: 34px !important; height: 34px !important; }
  .proof-stat-icon svg { width: 16px !important; height: 16px !important; }
  .proof-stat-label { font-size: 12px !important; }

  .bignum-stat-num { font-size: 20px !important; }
  .bignum-text h2 { font-size: clamp(28px, 8.5vw, 38px) !important; }

  .photo-break { height: 180px !important; }

  .feature-card { padding: 18px 16px !important; }
  .feature-card h3 { font-size: 16px !important; }

  .gallery-card { flex: 0 0 200px !important; }

  .newsletter-issue-img { height: 200px !important; width: 100% !important; aspect-ratio: auto !important; }
  .newsletter-issue h3 { font-size: 15.5px !important; }

  .email-signup-inner { padding: 44px 18px !important; }
}

/* ╔════════════════════════════════════════════════════════════════╗
   ║  v3.1 PASS C — FONT RESET + HERO RESTRUCTURE + SECTION CLEANUP ║
   ║  - No cursive (Fraunces italic killed)                         ║
   ║  - Weights capped at 600                                       ║
   ║  - Emphasis via color, not italic/weight                       ║
   ║  - Hero: side-by-side cards on wide, stacked on phone          ║
   ║  - Photo breaks + vpage labels + watermark removed (in HTML)   ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* ── GLOBAL FONT: Inter everywhere (Eddy hated DM Sans, kill Fraunces) ── */
html, body,
h1, h2, h3, h4, h5, h6,
p, a, span, div, li, button, input, textarea, select, label,
.feature-card h3, .process-step h4, .newsletter-issue h3,
.hero-h1, .section-h2, .gallery-heading, .bignum-text h2,
.cta-final h2, .newsletter-preview h2, .seasonal-cta h2, .email-signup h2,
.btn-pill, .nav-links a, .nav-phone, .logo, .footer-brand-name,
.footer-col h4, .footer-brand-tag, .footer-brand p,
.proof-stat-num, .proof-stat-label, .proof-bar-label,
.bignum-stat-num, .bignum-stat-label, .bignum-text .meta,
.section-label, .hero-label, .newsletter-preview-eyebrow,
.email-signup-eyebrow, .caption-meta, .newsletter-issue-meta,
.newsletter-issue-tag, .process-step-num, .photo-break-text,
.feature-tag, .feature-card-link, .gallery-card-label, .gallery-card-sub,
.gallery-cta-lead, .bignum-photo .caption {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
}

/* ── BRAND GREEN: ONE shade used as accent across the site ── */
:root {
  --brand-green: #547B4A;
  --brand-green-mid: #7BAE6E;
  --brand-green-soft: #CFE3BD;
}

/* KILL old green variable overrides so the unified accent wins */
:root {
  --orange: #7BAE6E !important;
  --green-deep: #7BAE6E !important;
  --green-neon: #7BAE6E !important;
  --green-mid: #7BAE6E !important;
}

/* SINGLE green for ALL accents site-wide — matches the Free Estimate button (#7BAE6E) */
.h-italic,
.accent,
h1 .accent, h2 .accent, h3 .accent, h4 .accent,
.hero-h1 .accent, .hero .h-italic, .hero .accent,
.section-h2 .h-italic, .section-h2 .accent,
.bignum-text h2 .h-italic, .bignum-text h2 .accent,
.gallery-heading .h-italic, .gallery-heading .accent,
.cta-final h2 .h-italic, .cta-final h2 .accent,
.seasonal-cta h2 .h-italic, .seasonal-cta h2 .accent,
.newsletter-preview h2 .h-italic, .newsletter-preview h2 .accent,
.email-signup h2 .h-italic, .email-signup .h-italic, .email-signup h2 .accent,
.page-banner h1 .accent, .page-banner h1 .h-italic,
.gallery-cta-lead em,
.proof-stat-num .accent,
.bignum-stat-num .accent,
section[class*="cta-final"] h2 .accent,
section[class*="contrast-block"] h2 .accent,
[data-on-dark] .accent,
[data-on-dark] .h-italic,
.num-orange, .stat-orange {
  color: #7BAE6E !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
}

/* Heading defaults — Inter across the board for every h1 in subpage banners */
.page-banner h1,
section h1, section h2, section h3, section h4 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
}
.page-banner h1 {
  font-weight: 600 !important;
  letter-spacing: -1.2px !important;
}
.page-banner h1 .light {
  font-weight: 300 !important;
  color: rgba(15,16,18,0.55) !important;
}

/* (Removed dark-bg lighter green override — Eddy wants ONE green everywhere matching the button #7BAE6E) */

/* ── FONT RESET: Kill Fraunces italic accents, normalize weight ── */
.h-italic,
.bignum-text h2 .h-italic,
.section-h2 .h-italic,
.gallery-heading .h-italic,
.cta-final h2 .h-italic,
.newsletter-preview h2 .h-italic,
.seasonal-cta h2 .h-italic,
.email-signup h2 .h-italic,
.email-signup .h-italic,
.gallery-cta-lead {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  color: #7BAE6E !important;
  letter-spacing: -0.5px !important;
}

/* Big headlines: drop from 900 to 600 (less heavy, more confident) */
.hero-h1,
.section-h2,
.gallery-heading,
.bignum-text h2,
.cta-final h2,
.newsletter-preview h2,
.seasonal-cta h2,
.email-signup h2 {
  font-weight: 600 !important;
}
.hero-h1 .bold { font-weight: 600 !important; }
.hero-h1 .light { font-weight: 300 !important; color: rgba(255,255,255,0.85) !important; }
.bignum-text h2 .light,
.section-h2 .light,
.cta-final h2 .light {
  font-weight: 300 !important;
}

/* Body and supporting text: pin to clean weights */
body, p, .feature-card p, .process-step p, .newsletter-issue p,
.hero-sub, .section-sub, .email-signup-sub, .cta-final p,
.footer-brand p, .seasonal-cta p, .bignum-text p {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 400 !important;
}

/* Feature card headings, process step headings — semibold not extrabold */
.feature-card h3, .process-step h4, .newsletter-issue h3 {
  font-weight: 600 !important;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
}

/* Section eyebrows and tags — pure caps, no italic */
.section-label, .hero-label, .newsletter-preview-eyebrow,
.email-signup-eyebrow, .bignum-text .meta, .caption-meta,
.newsletter-issue-meta, .newsletter-issue-tag,
.footer-col h4, .process-step-num, .photo-break-text {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
}

/* Captions inside bignum photo — stop italic */
.bignum-photo .caption {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 15px !important;
}

/* Proof bar labels → Inter, no cursive */
.proof-stat-label,
.proof-bar-label {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: -0.1px !important;
}
.proof-stat-num,
.bignum-stat-num {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
}

/* Gallery cta lead Fraunces → DM Sans 500 */
.gallery-cta-lead {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  color: #0f1012 !important;
}

/* ── HERO STRIP: 4 photos stretched across bottom of hero ── */
section.hero {
  min-height: auto !important;
  padding: 110px 0 36px !important;
}
.hero-strip-wrapper {
  width: 100%;
  padding: 36px 32px 0;
  display: flex;
  justify-content: center;
}
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 1200px;
}
.hero-strip-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s ease;
}
.hero-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.45);
}
.hero-strip-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide the old hero-3d-wrapper completely */
.hero-3d-wrapper { display: none !important; }

/* Tablet/medium: still 4 in a row but tighter */
@media (max-width: 900px) {
  .hero-strip-wrapper { padding: 28px 22px 0; }
  .hero-strip { gap: 10px; }
  .hero-strip-card { aspect-ratio: 1 / 1; border-radius: 12px; }
}

/* Phone: 2x2 grid */
@media (max-width: 600px) {
  section.hero { padding: 96px 0 28px !important; }
  .hero-strip-wrapper { padding: 24px 20px 0; }
  .hero-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero-strip-card { aspect-ratio: 4 / 3; }
}

@media (max-width: 380px) {
  .hero-strip { gap: 8px; }
}

/* ── elements kept (photos, vpage labels, watermark all stay per Eddy) ── */

/* ── BUTTON STANDARDIZATION ── */
.btn-pill {
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}
.btn-pill--ghost {
  background: transparent !important;
  font-weight: 500 !important;
}

/* ── SECTION PADDING STANDARDIZATION (consistent rhythm) ──
   72px top/bottom = 144px section gaps (80% of the old 180px — less airy, still breathing). */
@media (min-width: 821px) {
  .features, .bignum-section, .gallery, .process,
  .newsletter-preview, .email-signup, .cta-final {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .proof-bar { padding: 56px 40px !important; }
  .seasonal-cta {
    margin-top: 0 !important;
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
}

/* Newsletter preview stays visible (Eddy: keep all sections) */

/* ── QUOTE PAGE STEP CARDS: psych-correct spacing + visual hierarchy ── */
.quote-steps-heading {
  font-size: clamp(32px, 4vw, 44px) !important;
  margin: 0 0 36px !important;
  letter-spacing: -0.6px !important;
}
.quote-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-step {
  background: #F4F6F4;
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid rgba(15,16,18,0.04);
}
.quote-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.quote-step-num {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #547B4A;
  background: rgba(84,123,74,0.10);
  padding: 4px 9px;
  border-radius: 6px;
  flex-shrink: 0;
  line-height: 1;
}
.quote-step h3 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: #0f1012 !important;
  letter-spacing: -0.3px !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}
.quote-step p {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: rgba(15,16,18,0.62) !important;
  margin: 0 !important;
  padding-left: 0 !important;
}
@media (max-width: 768px) {
  .quote-steps-heading { margin-bottom: 28px !important; }
  .quote-step { padding: 18px 18px; }
  .quote-step h3 { font-size: 16px !important; }
  .quote-step p { font-size: 13.5px !important; }
}

/* ── STICKY FAQ HEADING: "Common questions." card follows scroll ── */
.content-grid {
  align-items: start !important;
}
.content-grid > div:first-child {
  position: sticky;
  top: 110px;
  align-self: start;
}
.content-grid .section-h2,
.content-grid .section-h2--inline {
  margin: 0 !important;
}
@media (max-width: 980px) {
  .content-grid > div:first-child {
    position: static;
    top: auto;
  }
}

/* ── NAV SPREAD + SCROLL ANIMATION (v3.1) ── */
nav.pill-nav {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  transition: padding .6s cubic-bezier(0.22, 1, 0.36, 1),
              transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Default (top of page): items centered evenly */
nav.pill-nav .logo {
  flex: 0 0 auto;
  margin-right: 20px;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}
nav.pill-nav .logo-img {
  transition: max-height .6s cubic-bezier(0.22, 1, 0.36, 1);
}
nav.pill-nav .nav-links {
  flex: 1 1 auto;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  gap: 0 !important;
  padding: 0 24px;
  list-style: none;
  margin: 0;
  transition: justify-content .6s cubic-bezier(0.22, 1, 0.36, 1),
              padding .6s cubic-bezier(0.22, 1, 0.36, 1);
}
nav.pill-nav .nav-links li {
  transition: margin .6s cubic-bezier(0.22, 1, 0.36, 1);
  margin: 0 12px;
}
nav.pill-nav .nav-cta {
  flex: 0 0 auto;
  margin-left: auto;
}

/* ── HERO HEADLINE: Lora (warm serif, craft feel, no tech vibe) ── */
.hero-h1 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -1.5px !important;
  font-size: clamp(48px, 6.8vw, 96px) !important;
  line-height: 1.08 !important;
}
.hero-h1 .light {
  font-weight: 400 !important;
}
.hero-h1 .bold {
  font-weight: 600 !important;
}
.hero-h1 .accent,
.hero-h1 .h-italic {
  font-style: normal !important;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 600 !important;
  color: #7BAE6E !important;
}

/* Hero — fits viewport, no white gap below */
section.hero {
  padding: 120px 0 80px !important;
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}
section.hero .hero-sub {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 18px !important;
  letter-spacing: -0.1px !important;
  color: #ffffff !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px !important;
}
section.hero .hero-actions {
  margin-top: 32px !important;
}

/* Virginia outline mark below the hero */
.hero-va-mark {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  animation: heroSoftFade .5s cubic-bezier(0.22, 1, 0.36, 1) 1100ms forwards;
}
.hero-va-mark svg {
  width: 220px;
  height: auto;
  display: block;
}
.hero-va-label {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* Bigger buttons on mobile */
@media (max-width: 768px) {
  .hero-actions .btn-pill,
  .hero-actions .btn-pill--lg {
    font-size: 15px !important;
    padding: 14px 26px !important;
    min-width: 160px;
    text-align: center;
  }
  .hero-va-mark { margin-top: 40px; }
  .hero-va-mark svg { width: 170px; }
}
section.hero .hero-label {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.22em !important;
}

@media (max-width: 768px) {
  .hero-h1 {
    font-size: clamp(44px, 11vw, 64px) !important;
    letter-spacing: -1.5px !important;
  }
  section.hero { padding: 110px 0 60px !important; }
}

/* ── YM TICKER (replaces AI-template proof-bar with editorial marquee) ── */
.ym-ticker {
  background: #ffffff;
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.ym-ticker::before,
.ym-ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ym-ticker::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.ym-ticker::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.ym-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ymTickerScroll 38s linear infinite;
  will-change: transform;
}
/* Marquee runs continuously — does NOT pause on hover */
.ym-ticker-group {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.ym-ticker-item {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 500;
  color: #0f1012;
  letter-spacing: -0.4px;
  padding: 0 28px;
}
.ym-ticker-item:nth-child(6n+1) { color: #7BAE6E; font-weight: 600; }
.ym-ticker-dot {
  color: #7BAE6E;
  font-size: 8px;
  opacity: 0.55;
  flex-shrink: 0;
}
@keyframes ymTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .ym-ticker { padding: 22px 0; }
  .ym-ticker-item { padding: 0 20px; font-size: 16px; }
  .ym-ticker::before,
  .ym-ticker::after { width: 60px; }
  .ym-ticker-track { animation-duration: 30s; }
}
@media (prefers-reduced-motion: reduce) {
  .ym-ticker-track { animation: none; }
}

/* SCROLL-DRIVEN nav (JS interpolates top/width/padding/logo/shadow inline).
   Links stay centered against the FULL nav width via absolute positioning. */
nav.pill-nav { position: relative; }
nav.pill-nav .nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex: 0 0 auto !important;
  padding: 0 !important;
  width: max-content;
}

/* Wrapper also tightens slightly on scroll */
.nav-wrapper {
  transition: top .6s cubic-bezier(0.22, 1, 0.36, 1),
              width .6s cubic-bezier(0.22, 1, 0.36, 1);
}
body:not(.at-top) .nav-wrapper {
  /* small width pinch for visual lightness */
}

@media (max-width: 768px) {
  nav.pill-nav .nav-links { display: none !important; }
}

/* ── FLOATING PHONE BUTTON (Athletic Brewing style, bottom-right) ── */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #7BAE6E;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(84, 123, 74, 0.32), 0 4px 10px rgba(15, 16, 18, 0.12);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
  transition: opacity .65s cubic-bezier(0.22, 1, 0.36, 1),
              transform .65s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow .25s ease,
              background .2s ease;
}
.floating-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.floating-call:hover {
  background: #6FA063;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 44px rgba(84, 123, 74, 0.42), 0 6px 14px rgba(15, 16, 18, 0.16);
}
.floating-call svg {
  width: 26px; height: 26px;
  stroke: #ffffff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.floating-call::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #7BAE6E;
  opacity: 0; transform: scale(1);
  animation: ringPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0%   { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.55); }
}
.floating-call-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #0f1012; color: #ffffff;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; font-weight: 500;
  padding: 8px 14px;
  border-radius: 9px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  letter-spacing: 0.01em;
}
.floating-call-tooltip::after {
  content: "";
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #0f1012;
}
.floating-call:hover .floating-call-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 768px) {
  .floating-call { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .floating-call svg { width: 22px; height: 22px; }
  .floating-call-tooltip { display: none; }
}

/* ── NAV DROPDOWN: Services hover menu ── */
.nav-links li.has-dropdown { position: relative; }
.nav-links li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  vertical-align: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.65;
  transition: transform .2s ease;
}
.nav-links li.has-dropdown.open > a::after,
.nav-links li.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(15,16,18,0.14), 0 0 0 1px rgba(15,16,18,0.04);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 200;
}
.nav-links li.has-dropdown.open .nav-dropdown,
.nav-links li.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #0f1012 !important;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background .18s ease, color .18s ease;
}
.nav-dropdown a:hover {
  background: rgba(84, 123, 74, 0.08);
  color: #547B4A !important;
}
@media (max-width: 768px) {
  .nav-dropdown { display: none !important; }
  .nav-links li.has-dropdown > a::after { display: none !important; }
}

/* ── SERVICES PAGE BANNER PHOTOS: 3-up flex row, no inline-block whitespace ── */
.banner-gallery {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
  width: 100%;
}
.banner-gallery .gallery-card {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  height: 220px !important;
  margin: 0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  position: relative;
  display: block !important;
  width: auto !important;
  vertical-align: top !important;
}
/* Fallback for any page-banner .gallery-card NOT inside .banner-gallery */
.page-banner .gallery-card:not(.banner-gallery .gallery-card) {
  display: inline-block !important;
  width: clamp(180px, 30%, 360px) !important;
  height: 220px !important;
  margin: 12px 6px 0 !important;
  vertical-align: top !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  position: relative;
}
.page-banner .gallery-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.page-banner .gallery-card .gallery-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.page-banner .gallery-card-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.page-banner .gallery-card-sub {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 768px) {
  /* 3-across compact flex row on mobile. flex: 1 1 0 with min-width: 0
     guarantees they share the available width evenly without overflow. */
  .banner-gallery { gap: 6px !important; margin-top: 14px !important; }
  .banner-gallery .gallery-card { height: 120px !important; }
  .page-banner .gallery-card-label { font-size: 11px !important; line-height: 1.15 !important; }
  .page-banner .gallery-card-sub { font-size: 9px !important; letter-spacing: 0.1em !important; }
  .page-banner .gallery-card .gallery-card-overlay { padding: 10px 8px 8px !important; }
}

@media (max-width: 400px) {
  .banner-gallery .gallery-card { height: 100px !important; }
  .page-banner .gallery-card-label { font-size: 10px !important; }
  .page-banner .gallery-card-sub { display: none !important; }
}

/* Reviews page stats — 4-up on desktop, 2x2 on mobile, never overflows */
.reviews-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .reviews-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; margin-bottom: 36px !important; }
  .reviews-stats > div { padding: 20px 14px !important; }
  .reviews-stats > div > div:first-child { font-size: 36px !important; }
}

/* ── Bento services grid (Woodberry-inspired) ────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 40px;
}
.bento-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;
  min-height: 240px;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.bento-tile:hover { transform: translateY(-3px); }
/* Photo tiles now use a real <img loading="lazy"> instead of inline
   background-image (which Netlify's HTML optimizer/CDN was mangling).
   Same loading mechanism as the Read-our-story photo that loads reliably. */
.bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.bento-tile:hover .bento-img { transform: none; }
.bento-tile--photo .bento-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.72) 100%);
  transition: opacity .4s ease;
}
.bento-tile--photo:hover .bento-overlay { opacity: 0.92; }
.bento-tile--solid {
  background: #7BAE6E;
  color: #fff;
}
.bento-tile--solid .bento-content {
  color: #fff;
}
.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.bento-tile--solid .bento-content {
  justify-content: center;
}
.bento-label {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.bento-label--dark { color: rgba(255,255,255,0.9); }
.bento-h3 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
  color: #fff;
}
.bento-p {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 36ch;
}
.bento-link {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 6px;
}
.bento-link--dark { color: #fff; }

/* Tile positions: 12-col grid, 3 rows of varying heights */
/* Row 1: hardscaping wide + maintenance narrow */
.bento-a { grid-column: span 7; grid-row: 1; min-height: 380px; }
.bento-b { grid-column: span 5; grid-row: 1; min-height: 380px; }
/* Row 2: green CTA + irrigation + drainage */
.bento-c { grid-column: span 4; grid-row: 2; min-height: 280px; }
.bento-d { grid-column: span 4; grid-row: 2; min-height: 280px; }
.bento-e { grid-column: span 4; grid-row: 2; min-height: 280px; }
/* Row 3: design-build full-width */
.bento-f { grid-column: span 12; grid-row: 3; min-height: 320px; }

/* Tablet */
@media (max-width: 1024px) {
  .bento-a { grid-column: span 7; min-height: 320px; }
  .bento-b { grid-column: span 5; min-height: 320px; }
  .bento-c, .bento-d, .bento-e { min-height: 240px; }
  .bento-f { min-height: 280px; }
}

/* Mobile: 2-col bento — featured tiles span 2, paired tiles span 1 */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 28px;
  }
  .bento-a {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 260px;
  }
  .bento-b, .bento-c, .bento-d, .bento-e {
    grid-column: span 1;
    grid-row: auto;
    min-height: 180px;
  }
  .bento-f {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }
  .bento-content { padding: 16px 16px; gap: 4px; }
  .bento-h3 { font-size: 17px; line-height: 1.2; letter-spacing: -0.3px; }
  .bento-p { font-size: 12px; line-height: 1.45; max-width: 100%; }
  .bento-label { font-size: 9.5px; letter-spacing: 0.18em; }
  .bento-link { font-size: 12px; }
  .bento-tile--solid .bento-content { justify-content: center; gap: 5px; }
  /* Small paired tiles: hide body copy for compactness */
  .bento-b .bento-p,
  .bento-d .bento-p,
  .bento-e .bento-p { display: none; }
  /* Featured tile keeps fuller content */
  .bento-a .bento-h3 { font-size: 22px; }
  .bento-a .bento-p { display: block; font-size: 13px; }
}
@media (max-width: 400px) {
  .bento-grid { gap: 8px; }
  .bento-a { min-height: 240px; }
  .bento-b, .bento-c, .bento-d, .bento-e { min-height: 160px; }
  .bento-f { min-height: 200px; }
  .bento-content { padding: 14px 14px; }
  .bento-h3 { font-size: 15.5px; }
  .bento-a .bento-h3 { font-size: 20px; }
}

/* ── HERO SPLIT v4 — text left, Virginia photo-clip right ───────────────── */
.hero .hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
  text-align: left !important;
  padding-top: 24px;
  padding-bottom: 24px;
}
.hero-left { text-align: left; }
.hero-left .hero-label {
  margin: 0 0 20px 0 !important;
  justify-content: flex-start !important;
  display: inline-flex !important;
}
.hero .hero-actions {
  justify-content: flex-start !important;
  margin-top: 28px !important;
}
.hero .hero-sub {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 480px;
}

/* v1-style Barlow Condensed headline, all caps, white + green */
.hero-h1,
section.hero .hero-h1 {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(54px, 5.9vw, 84px) !important;
  line-height: 1.0 !important;
  letter-spacing: -1px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 !important;
}
.hero-h1 .accent,
section.hero .hero-h1 .accent {
  color: #7BAE6E !important;
  font-style: normal !important;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 900 !important;
}
.hero-h1 .h-outline,
section.hero .hero-h1 .h-outline {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 500 !important;
  font-style: normal !important;
  color: var(--white) !important;
  -webkit-text-stroke: 0 !important;
  text-stroke: 0 !important;
  /* Match RICHMOND'S and STANDARD scale exactly. font-size: 1em and
     line-height: inherit so OUTDOOR sits in the same line cadence as
     its siblings, not in its own isolated vertical box. */
  font-size: 1em !important;
  line-height: inherit !important;
  display: inline;
  letter-spacing: -1px;
  vertical-align: baseline;
}

/* Right column — VA outline holding a photo */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-va-clip {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.35));
  opacity: 0;
  transform: translateY(12px);
  animation: heroSoftFade .65s cubic-bezier(0.22, 1, 0.36, 1) 1200ms forwards;
}
.hero-right .hero-va-label {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateY(6px);
  animation: heroSoftFade .6s cubic-bezier(0.22, 1, 0.36, 1) 1400ms forwards;
}

/* Tablet */
@media (max-width: 980px) {
  .hero .hero-split {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .hero-left { text-align: center !important; }
  .hero-left .hero-label {
    justify-content: center !important;
    margin: 0 auto 14px !important;
  }
  .hero .hero-actions {
    justify-content: center !important;
    margin-top: 18px !important;
  }
  .hero .hero-sub {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 560px;
  }
  .hero-va-clip { max-width: 360px; }
}

/* Mobile — compress to fit one viewport */
@media (max-width: 768px) {
  section.hero { padding: 100px 0 40px !important; }
  .hero .hero-split {
    gap: 14px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .hero-h1,
  section.hero .hero-h1 {
    font-size: clamp(44px, 12vw, 64px) !important;
    line-height: 0.95 !important;
  }
  section.hero .hero-sub {
    font-size: 14px !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    line-height: 1.45 !important;
    max-width: 320px;
  }
  .hero-va-clip { max-width: 240px; }
  .hero-right { gap: 6px !important; }
  .hero-right .hero-va-label { font-size: 9.5px !important; letter-spacing: 0.22em !important; }
}
@media (max-width: 400px) {
  section.hero { padding: 90px 0 28px !important; }
  .hero-h1,
  section.hero .hero-h1 {
    font-size: clamp(38px, 11vw, 56px) !important;
  }
  .hero-va-clip { max-width: 200px; }
}

/* ── Mobile drawer v3.2 (shared across all pages) ───────────────────────── */
@media (max-width: 1100px) {
  .mobile-drawer {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 998 !important;
    background: #ffffff !important;
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1),
                transform .5s cubic-bezier(0.22, 1, 0.36, 1);
    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden;
  }
  .mobile-drawer.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-drawer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 90% 8%, rgba(123,174,110,0.10), transparent 40%),
      radial-gradient(circle at 5% 95%, rgba(123,174,110,0.08), transparent 38%);
    pointer-events: none;
    z-index: 0;
  }

  .mobile-drawer-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 10px;
    border-bottom: 1px solid rgba(15,16,18,0.06);
  }
  .mobile-drawer-logo {
    max-height: 32px;
    width: auto;
    display: block;
  }
  .mobile-drawer-wordmark {
    display: flex;
    flex-direction: column;
    font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.3px;
    color: #0f1012;
    text-transform: uppercase;
    margin-left: 0;
  }
  .mobile-drawer-wordmark-est {
    font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 8.5px;
    font-weight: 500;
    color: #7BAE6E;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 3px;
  }
  .mobile-drawer-close {
    background: transparent !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #0f1012;
    cursor: pointer;
    border-radius: 999px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    padding: 0 !important;
  }
  .mobile-drawer-close svg { width: 20px; height: 20px; }
  .mobile-drawer-close:hover {
    background: #F4F7EE !important;
    color: #547B4A;
    transform: rotate(90deg);
  }
  .mobile-drawer-nav {
    position: relative;
    z-index: 2;
    padding: 14px 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    align-items: flex-end;
    text-align: right;
  }
  .mobile-drawer-primary {
    font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: #0f1012;
    letter-spacing: -0.3px;
    line-height: 1;
    text-decoration: none;
    padding-bottom: 2px;
    align-self: flex-end;
  }
  .mobile-drawer-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding-top: 8px;
    border-top: 1px solid rgba(15,16,18,0.06);
    align-items: flex-end;
    text-align: right;
    width: 100%;
  }
  .mobile-drawer-eyebrow {
    font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #7BAE6E;
    margin-bottom: 4px;
  }
  .mobile-drawer-group a {
    font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: #0f1012;
    letter-spacing: -0.2px;
    line-height: 1.2;
    text-decoration: none;
    padding: 1px 0;
    position: relative;
    transition: color .2s ease, padding-left .25s ease;
  }
  .mobile-drawer-group a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: #7BAE6E;
    transition: width .3s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(-50%);
  }
  .mobile-drawer-group a:hover {
    color: #547B4A;
    padding-right: 18px;
  }
  .mobile-drawer-group a:hover::before { width: 12px; }
  .mobile-drawer-cta {
    position: relative;
    z-index: 2;
    padding: 12px 20px 16px;
    border-top: 1px solid rgba(15,16,18,0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-drawer-quote {
    width: 100%;
    text-align: center;
    font-size: 14px !important;
    padding: 11px 22px !important;
  }
  .mobile-drawer-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    border-radius: 10px;
    background: #F4F7EE;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
  }
  .mobile-drawer-phone:hover {
    background: #E6EFDD;
    transform: translateY(-2px);
  }
  .mobile-drawer-phone-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #7BAE6E;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mobile-drawer-phone-icon svg { width: 15px; height: 15px; }
  .mobile-drawer-phone-text {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .mobile-drawer-phone-label {
    font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #547B4A;
  }
  .mobile-drawer-phone-num {
    font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0f1012;
    letter-spacing: -0.2px;
  }
  .mobile-drawer-header,
  .mobile-drawer-primary,
  .mobile-drawer-group,
  .mobile-drawer-cta {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1),
                transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .mobile-drawer.open .mobile-drawer-header  { opacity: 1; transform: translateY(0); transition-delay: 80ms; }
  .mobile-drawer.open .mobile-drawer-primary { opacity: 1; transform: translateY(0); transition-delay: 160ms; }
  .mobile-drawer.open .mobile-drawer-group:nth-of-type(1) { opacity: 1; transform: translateY(0); transition-delay: 220ms; }
  .mobile-drawer.open .mobile-drawer-group:nth-of-type(2) { opacity: 1; transform: translateY(0); transition-delay: 290ms; }
  .mobile-drawer.open .mobile-drawer-cta    { opacity: 1; transform: translateY(0); transition-delay: 360ms; }
}

/* HQ card sits BELOW the map (so it doesn't cover the pin) */
.map-card--below {
  position: static !important;
  margin: 18px auto 0 !important;
  max-width: 480px !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
}
@media (max-width: 768px) {
  .map-card--below {
    margin: 14px 14px 0 !important;
    max-width: none !important;
  }
}

/* ── Stripe-style moving green lines (top-right hero corner) ───────────── */
.hero-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  max-width: 720px;
  height: 360px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: heroLinesIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) 800ms forwards;
}
.hero-lines svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-lines path {
  stroke-dasharray: 12 6;
  animation: heroLineFlow 12s linear infinite;
}
.hero-lines .hl-1 { animation-duration: 11s; animation-delay: -1s; }
.hero-lines .hl-2 { animation-duration: 13s; animation-delay: -4s; }
.hero-lines .hl-3 { animation-duration: 9s;  animation-delay: -7s; }
.hero-lines .hl-4 { animation-duration: 15s; animation-delay: -2s; }
.hero-lines .hl-5 { animation-duration: 10s; animation-delay: -5s; }
@keyframes heroLineFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -200; }
}
@keyframes heroLinesIn { to { opacity: 1; } }
@media (max-width: 768px) {
  .hero-lines { width: 75vw; height: 220px; opacity: 0; animation: heroLinesIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) 800ms forwards; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-lines path { animation: none; }
}

/* ── Quote popup modal (shared across pages) ───────────────────────────── */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.quote-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,16,18,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.quote-modal-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 24px);
  padding: 22px 26px 20px;
  box-shadow: 0 30px 80px rgba(15,16,18,0.30);
  transform: translateY(14px) scale(0.98);
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.quote-modal.open .quote-modal-card { transform: translateY(0) scale(1); }
.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f1012;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.quote-modal-close:hover {
  background: #F4F7EE;
  color: #547B4A;
  transform: rotate(90deg);
}
.quote-modal-close svg { width: 18px; height: 18px; }
.quote-modal-eyebrow {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7BAE6E;
  margin-bottom: 4px;
}
.quote-modal-title {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: #0f1012;
  margin: 0 0 4px;
}
.quote-modal-title .accent { color: #7BAE6E; }
.quote-modal-sub {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0 0 12px;
  letter-spacing: -0.13px;
}
.quote-modal-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.quote-modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quote-modal-field label {
  display: block;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-sub);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.quote-modal-field input,
.quote-modal-field textarea {
  width: 100%;
  padding: 8px 11px;
  border-radius: 8px;
  border: 1px solid rgba(15,16,18,0.12);
  background: #fafafa;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #0f1012;
  transition: border-color .2s, background .2s;
}
.quote-modal-field input::placeholder,
.quote-modal-field textarea::placeholder {
  color: rgba(15, 16, 18, 0.30);
  font-weight: 400;
}
.quote-modal-field input:focus,
.quote-modal-field textarea:focus {
  outline: none;
  border-color: #7BAE6E;
  background: #ffffff;
}
.quote-modal-field textarea {
  resize: vertical;
  min-height: 70px;
}
.quote-modal-services-label {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-sub);
  text-transform: uppercase;
  margin-top: 4px;
}
.quote-modal-services {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.quote-modal-services label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,16,18,0.12);
  background: #fafafa;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-sub);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.quote-modal-services label input { display: none; }
.quote-modal-services label:has(input:checked) {
  background: #F4F7EE;
  border-color: #7BAE6E;
  color: #547B4A;
}
.quote-modal-submit {
  width: 100%;
  padding: 11px 22px;
  border-radius: 999px;
  background: #7BAE6E;
  color: #ffffff;
  border: none;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-top: 4px;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.quote-modal-submit:hover {
  background: #6a9d5e;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(123,174,110,0.30);
}
.quote-modal-consent {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  letter-spacing: -0.05px;
}
.quote-modal-consent a {
  color: #7BAE6E;
  text-decoration: none;
}
.quote-modal-consent a:hover { color: #547B4A; }
.quote-modal-footer {
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
  letter-spacing: -0.1px;
}
.quote-modal-footer a {
  color: #7BAE6E;
  text-decoration: none;
}
.quote-modal-footer a:hover { color: #547B4A; }

/* Lock body when modal is open */
body.quote-modal-open { overflow: hidden; }

@media (max-width: 560px) {
  .quote-modal { padding: calc(var(--banner-h, 0px) + 24px) 10vw 24px; align-items: flex-start; }
  .quote-modal-card { padding: 18px 18px 16px; border-radius: 14px; max-width: 80vw; max-height: calc(100vh - var(--banner-h, 0px) - 48px); }
  .quote-modal-title { font-size: 24px; }
  .quote-modal-form-row { grid-template-columns: 1fr; }
  .quote-modal-form { gap: 7px; }
  .quote-modal-sub { font-size: 12px; margin-bottom: 8px; }
  .quote-modal-eyebrow { font-size: 10px; }
}

/* Compact "Open in Maps" link below the map (replaces duplicate HQ card) */
.map-band .map-open-link {
  display: block;
  text-align: center;
  margin: 14px auto 0;
  padding: 8px 0;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #547B4A;
  text-decoration: none;
  transition: color .2s ease;
}
.map-band .map-open-link:hover { color: #7BAE6E; }

/* Footer social icons — now their own centered row at the bottom of
   the footer card (sibling of .footer-grid, above .footer-strip). */
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  padding-top: 4px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F4F7EE;
  color: #547B4A;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  background: #7BAE6E;
  color: #ffffff;
  transform: translateY(-2px);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .footer-social { margin-top: 10px; }
  .footer-social a { width: 32px; height: 32px; }
  .footer-social svg { width: 14px; height: 14px; }
}

/* ── Promo banner (v3.1) — thin sticky strip above nav ─────────────── */
:root { --banner-h: 0px; }
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 36px;
  background: #7BAE6E;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0 44px 0 16px;
  text-align: center;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.promo-banner.is-visible { transform: translateY(0); }
.promo-banner-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promo-banner-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 4px;
  font-weight: 600;
}
.promo-banner-link:hover { text-decoration: none; }
.promo-banner-close {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.promo-banner-close:hover { background: rgba(255,255,255,0.2); }
.promo-banner-close svg { width: 12px; height: 12px; }

@media (max-width: 768px) {
  .promo-banner { height: 44px; font-size: 12.5px; padding: 0 40px 0 14px; line-height: 1.3; }
  .promo-banner-text { white-space: normal; }
  .promo-banner-close { right: 8px; }
}

/* Obsolete hero spacing rule — replaced by the consolidated flex layout
   at the bottom of this file (5/14 Round 3). Kept empty so search history
   still finds the section header. */

/* Mobile drawer: hide the promo banner when the drawer is open so the menu
   occupies the full viewport. Also prevent drawer-internal scroll. */
body.drawer-open .promo-banner { transform: translateY(-100%) !important; }
@media (max-width: 768px) {
  .mobile-drawer { overflow: hidden !important; }
  .mobile-drawer-nav { overflow: hidden; }
}

/* ════════════════════════════════════════════════════════════════════════
   5/14 Eddy mobile review fixes
   ════════════════════════════════════════════════════════════════════════ */

/* 1. Newsletter h2: kill the lighter green italic — all white */
.email-signup h2,
.email-signup h2 .h-italic,
.email-signup h2 .light,
.email-signup h2 .accent { color: #ffffff !important; }

/* Obsolete hero-fill rule — replaced by the consolidated flex layout
   at the bottom of this file (5/14 Round 3 — Hero Distribution Pass). */

/* 3. Footer mobile: left-align with proper hierarchy, not center */
@media (max-width: 768px) {
  .site-footer .footer-grid { text-align: left; }
  .site-footer .footer-brand,
  .site-footer .footer-brand p,
  .site-footer .footer-grid > div { text-align: left; }
  .site-footer .footer-brand p { max-width: 100% !important; }
  /* Social row stays centered on mobile (overriding earlier flex-start) */
  .site-footer .footer-social { justify-content: center !important; }
  .site-footer h4 { margin-top: 4px; }
  .footer-bottom {
    flex-direction: row !important;
    text-align: left !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 6px !important;
  }
}

/* 4. Quote page: form first on mobile, steps after */
@media (max-width: 768px) {
  .content-grid:has(.form-card):has(.quote-steps) { display: flex; flex-direction: column; }
  .content-grid:has(.form-card):has(.quote-steps) .form-card { order: 1; }
  .content-grid:has(.form-card):has(.quote-steps) > div:has(.quote-steps) { order: 2; margin-top: 32px; }
}

/* 2. Tighten the strip between page-banner and the section that follows so the
      empty white gap disappears on mobile (projects + service pages) */
@media (max-width: 768px) {
  .page-banner { padding-bottom: 28px !important; }
  .page-banner + .section,
  .page-banner + section { padding-top: 24px !important; }
}

/* 7. Quote page banner card row: when present, lock to one aspect ratio so the
      3 gallery cards read as a consistent set, not random heights */
.page-banner .gallery-card {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 14px;
}
@media (min-width: 769px) {
  .page-banner .gallery-card + .gallery-card + .gallery-card ~ .gallery-card,
  .page-banner > .container > .gallery-card:nth-of-type(1) ~ .gallery-card { /* noop guard */ }
}

/* ════════════════════════════════════════════════════════════════════════
   5/14 Round 2 — post-deploy mobile review fixes (RESTORED)
   ════════════════════════════════════════════════════════════════════════ */

/* HERO — fully device-adaptive. Every measurement scales with the smaller
   of viewport width or height via min(vw, vh), so the layout stays
   proportional from iPhone SE (375×667) through Pro Max (430×932) up to
   tablet portrait. 100dvh fills the viewport; 100svh fallback keeps
   Safari's URL bar from leaking the next section in. */
@media (max-width: 768px) {
  section.hero {
    min-height: 100svh !important;
    min-height: 100dvh !important;
    /* Top padding clears nav+banner. Bottom padding cushions before the
       next section. Flex column with justify-content: center vertically
       centers the content+state cluster in the available space — empty
       room splits EVENLY top/bottom instead of dumping all at the bottom. */
    padding: clamp(120px, 17vh, 210px) 0 clamp(48px, 7vh, 100px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
  }
  .hero .hero-split { padding: 0 !important; width: 100%; }
  .hero .hero-left { padding-top: 0 !important; }
  /* Heading scales with the smaller dimension — never goes huge on a
     short-but-wide screen, never tiny on a tall narrow one. min(11vw, 9vh)
     picks the most constrained axis, clamped to readable 38-72px range. */
  section.hero .hero-h1 {
    font-size: clamp(34px, min(9.8vw, 8.5vh), 60px) !important;
    line-height: 1.06 !important;
    letter-spacing: -1px !important;
  }
  /* Sub copy scales with height — keeps proportional to heading */
  section.hero .hero-sub {
    font-size: clamp(13px, 1.8vh, 16px) !important;
    line-height: 1.45 !important;
    max-width: clamp(280px, 80vw, 360px) !important;
  }
  /* Internal vertical rhythm — every gap is height-relative, so on a
     compact device gaps shrink and on a tall device they breathe */
  section.hero .hero-label { margin-bottom: clamp(14px, 2.4vh, 32px) !important; }
  section.hero .hero-h1 { margin-bottom: clamp(10px, 1.6vh, 22px) !important; }
  section.hero .hero-sub { margin-bottom: clamp(18px, 3vh, 40px) !important; }
  section.hero .hero-actions { margin-bottom: 0 !important; }
  /* State outline + label scale together, never dominate short screens */
  .hero .hero-right { margin-top: clamp(14px, 2.2vh, 30px) !important; }
  .hero-va-clip { max-width: clamp(180px, min(50vw, 26vh), 300px) !important; }
  .hero-right .hero-va-label {
    font-size: clamp(9px, 1.2vh, 11px) !important;
    margin-top: clamp(4px, 0.8vh, 10px) !important;
  }
  section.hero .hero-actions .btn-pill--ghost {
    background: transparent !important;
    border: 1.5px solid rgba(255,255,255,0.7) !important;
    color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* Center text inside both hero pills, and scale the font down so
     "Get a Free Estimate" sits comfortably without crowding the pill */
  section.hero .hero-actions .btn-pill,
  section.hero .hero-actions .btn-pill--lg,
  section.hero .hero-actions .btn-pill--ghost {
    justify-content: center !important;
    text-align: center !important;
    font-size: 13px !important;
    padding: 14px 14px !important;
    letter-spacing: -0.1px !important;
    white-space: nowrap !important;
  }
}

/* SEASONAL CTA + photo-break spacing — keep Eddy's signature diagonal +
   wavy designs (handled in inline rules of index.html for specificity).
   The visual gap fix lives there via negative margins so the wavy bottom
   of the photo-break tucks under the diagonal top of the seasonal-cta. */

/* BENTO TILE PHOTOS — force background to render reliably on mobile Safari.
   Inline style on the anchor should work but some older Safari versions
   need a positioned image-layer to honor the lazy hint. */
@media (max-width: 768px) {
  .bento-tile--photo { background-size: cover !important; background-position: center !important; }
  .bento-tile--photo .bento-content {
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.75) 100%);
    padding: 22px 22px !important;
  }
  /* Make sure overlay isn't washing out the photo */
  .bento-tile--photo .bento-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%) !important;
  }
}

/* Seasonal CTA h2 — make h-italic legible against the green background.
   Default h-italic is dark-green which disappears here. */
.seasonal-cta h2 .h-italic { color: #ffffff !important; opacity: 0.95; }

/* Page-banner gallery cards (services + about pages) — clean stack on mobile,
   horizontal row on desktop. Same aspect ratio for all so they read as a set. */
.page-banner .gallery-card {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 16px;
  position: relative;
  width: 100%;
  height: auto;
}
.page-banner .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px) {
  /* Desktop: 3-up horizontal row using floating layout (no wrapper needed) */
  .page-banner .container > .gallery-card {
    display: inline-block;
    width: calc((100% - 32px) / 3);
    margin-right: 12px;
    vertical-align: top;
  }
  .page-banner .container > .gallery-card:last-of-type { margin-right: 0; }
}
@media (max-width: 899px) {
  .page-banner .container > .gallery-card {
    display: block;
    width: 100%;
    margin-top: 12px;
  }
}

/* Hero buttons on mobile — match width so they look like a paired set */
@media (max-width: 768px) {
  section.hero .hero-actions {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    width: 100%;
    padding: 0 4px;
  }
  section.hero .hero-actions .btn-pill,
  section.hero .hero-actions .btn-pill--lg,
  section.hero .hero-actions .btn-pill--ghost {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: 200px;
    padding: 14px 18px !important;
    font-size: 14px !important;
    text-align: center;
    white-space: nowrap;
  }
}


/* ── GLOBAL TYPEFACE OVERRIDE — Green Heron reference (Tenor Sans) ──
   Client direction 2026-06-01: every word on the site in this one face.
   Tenor Sans ships weight 400 only; font-synthesis:none prevents ugly
   faux-bold so the thin, classical botanical look stays intact. */
:root { --font-tenor: 'Tenor Sans', 'Helvetica Neue', Arial, sans-serif; }
*, *::before, *::after { font-family: var(--font-tenor) !important; font-synthesis: none; }
