/* =====================================================================
   Mississippi Roots Lawncare — cPanel PHP Port Stylesheet
   Mirrors the React/Tailwind styles. Vanilla CSS only.
   ===================================================================== */

/* --------- Fonts --------- */
@font-face {
  font-family: 'Dirtyline36Daysoftype2022';
  src: url('../fonts/Dirtyline-36daysoftype-2022.woff2') format('woff2');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}

:root {
  --font-sans: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Bitter", ui-serif, Georgia, "Times New Roman", Times, serif;
  --green-bright: #10b981;
  --green-deep: #071306;
  --green-panel: #0c1c0a;
  --green-est: #112411;
  --green-cta: #1c3f1b;
  --green-cta-hover: #285726;
  --black: #000;
  --white: #fff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 50% 50%, #112911 0%, #020702 100%);
  color: #fff;
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: clip; }
main, .site-body { width: 100%; max-width: 100%; }
.site-body { overflow-x: clip; }
.site-body > section,
.site-body > footer { width: 100%; max-width: 100%; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

/* --------- Intro Stage --------- */
.intro-stage {
  position: relative;
  height: 1000vh;
  font-style: normal;
  font-weight: normal;
  text-align: left;
}

/* --------- Background Video --------- */
.video-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: scale(1.05);
  transform-origin: center;
  overflow: hidden;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  opacity: 0.4;
  mix-blend-mode: lighten;
}
.video-pattern {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.3;
  background-image:
    linear-gradient(45deg, #000 25%, transparent 25%),
    linear-gradient(-45deg, #000 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #000 75%),
    linear-gradient(-45deg, transparent 75%, #000 75%);
  background-size: 3px 3px;
}
#video-loader {
  position: fixed; inset: 0;
  background: #000; z-index: 50;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
#video-loader p {
  color: #fff; font-size: 1.5rem;
  font-weight: 500; letter-spacing: 0.025em;
  animation: pulse 2s ease-in-out infinite;
}
#video-loader .progress-track {
  width: 12rem; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 9999px; overflow: hidden;
  margin-top: 1rem;
}
#video-loader .progress-bar {
  height: 100%; background: #fff;
  transition: width 0.3s ease-out;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* --------- ScrollFloat --------- */
#scroll-float-overlay {
  position: fixed; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  pointer-events: none;
  z-index: 10;
}
@media (min-width: 768px) {
  #scroll-float-overlay { padding: 2rem; }
}
#scroll-float-overlay .scroll-float-inner {
  width: 100%;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(4rem, 15vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.scroll-float-text-line { display: block; }
.scroll-float-word { display: inline-block; white-space: nowrap; }
.char { display: inline-block; }
.word-space { display: inline-block; }

/* --------- Center Logo --------- */
.center-logo {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; pointer-events: none;
}
.center-logo-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: min(85vw, 420px);
  max-width: 420px;
  margin: 0 auto;
  padding-top: 5rem;
  user-select: none;
}
@media (min-width: 768px) {
  .center-logo-inner { max-width: 420px; padding-top: 10rem; }
}
.center-logo-inner img {
  display: block;
  width: min(85vw, 420px) !important;
  max-width: min(85vw, 420px) !important;
  height: auto !important;
  max-height: 72vh;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.9));
  mix-blend-mode: screen;
  opacity: 0.95;
  transition: opacity 0.3s;
  transform: translateY(-25px);
}
.center-logo-inner img:hover { opacity: 1; }

/* --------- PillNav --------- */
.pill-nav-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: max-content;
  max-width: 95vw;
}
.pill-nav {
  display: flex; align-items: center;
  background: transparent;
  padding: 0; gap: 0;
  user-select: none;
}
.pill-logo {
  display: flex; align-items: center; justify-content: center;
  box-sizing: border-box;
  border-radius: 50%;
  background: #000;
  border: 0;
  padding: 0;
  width: 48px; height: 48px;
  flex-shrink: 0; cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
}
.logo-svg-container {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
}
.pill-nav-items {
  box-sizing: border-box;
  background: #000;
  border: 2px solid #000;
  border-radius: 9999px;
  padding: 4px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
}
.pill-list {
  display: flex; align-items: center;
  gap: 4px; list-style: none;
  margin: 0; padding: 0;
}
.pill {
  position: relative; display: block;
  padding: 8px 24px;
  border-radius: 9999px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  font-family: inherit;
}
.pill:hover { color: #fff; }
.pill.is-active {
  background: #10b981 !important;
  color: #fff !important;
}
.pill.is-active .pill-label { color: #fff !important; }
.hover-circle {
  position: absolute;
  background: #000;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: scale(0);
  width: 0; height: 0;
}
.pill.is-active .hover-circle,
.pill.bordered .hover-circle { background: rgba(255,255,255,0.1); }
.label-stack {
  position: relative; display: block;
  z-index: 1; overflow: hidden;
  height: 1.2em;
}
.pill-label, .pill-label-hover {
  display: block; line-height: 1.2em; text-align: center;
}
.pill-label-hover {
  position: absolute; top: 0; left: 0;
  width: 100%; color: #fff;
  transform: translateY(100%);
}
.pill.bordered {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; background: transparent;
}

.phone-reveal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 135px;
  height: 48px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.1);
  background: #000;
  color: rgba(255,255,255,.9);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.5);
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 600;
  transition: width .3s ease, background .3s ease, border-color .3s ease;
}
.phone-reveal:hover { width: 195px; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.2); }
.phone-reveal svg { width: 14px; height: 14px; color: rgba(255,255,255,.7); }

/* Mobile menu popover */
.mobile-menu-popover {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #09090b;
  border: 2px solid #10b981;
  border-radius: 24px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-menu-popover.visible {
  visibility: visible;
  opacity: 1; transform: translateY(0);
}
.mobile-menu-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.mobile-menu-btn {
  width: 100%; text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.mobile-menu-btn.active {
  background: #10b981; color: #fff;
  border-color: #34d399;
  box-shadow: 0 10px 15px -3px rgba(16,185,129,0.3);
}
.mobile-menu-btn.inactive {
  background: #18181b; color: #f4f4f5;
  border-color: rgba(63,63,70,0.8);
}
.mobile-menu-btn.inactive:hover { background: #27272a; }
.mobile-menu-btn.contact {
  background: #fff; color: #000;
  border-color: #fff; box-shadow: 0 4px 6px -1px rgba(255,255,255,0.1);
}
.mobile-menu-btn.contact:hover { background: #f4f4f5; }
.mobile-menu-btn.call {
  background: #059669; color: #fff;
  border-color: #34d399;
  display: block; text-decoration: none;
  text-align: center;
}
.mobile-menu-btn.call:hover { background: #10b981; }

@media (min-width: 769px) {
  .mobile-only { display: none !important; }
}
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
}

/* v4 measured parity: React keeps the logo artwork in an 85vw/420px box. */
@media (max-width: 768px) {
  .center-logo-inner { width: 85vw; max-width: 420px; padding-top: 5rem; }
  .center-logo-inner img { width: 85vw !important; max-width: 420px !important; max-height: 72vh; }
  .pill-nav-container { top: 24px; max-width: calc(100vw - 32px); }
  .pill-logo, .mobile-menu-toggle, .pill-nav-items.mobile-only {
    width: 48px; height: 48px; min-width: 48px; border-radius: 9999px;
    background: #000; border: 0;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.5);
  }
  .mobile-call {
    width: 32px; height: 48px; min-width: 32px;
    border-radius: 9999px;
    background: #000; border: 0;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.5);
  }
  .mobile-call, .mobile-menu-toggle {
    display: flex; align-items: center; justify-content: center;
    box-sizing: border-box;
    padding: 0;
  }
  .mobile-call svg, .mobile-menu-toggle svg { width: 20px; height: 20px; color: #fff; }
  .mobile-menu-toggle { padding: 0; cursor: pointer; }
  .mobile-menu-popover { left: auto; right: 0; }
}

/* --------- Mid-scroll Overlays --------- */
.mid-overlay {
  position: fixed; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 1rem;
  z-index: 10;
  opacity: 0; pointer-events: none;
}
@media (min-width: 768px) {
  .mid-overlay { padding-left: 2rem; padding-right: 2rem; }
}
.mid-overlay.services-overlay { z-index: 10; }
.mid-overlay.location-overlay { z-index: 10; }
.mid-overlay.visible {
  opacity: 1; pointer-events: auto;
}

/* Services overlay */
.services-card {
  width: 100%;
  max-width: 1100px;
  border-radius: 24px;
  padding: 1rem;
  display: flex; flex-direction: column;
  gap: 1.25rem;
  background: rgba(0,0,0,0.7);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 640px) { .services-card { padding: 1.5rem; } }
@media (min-width: 768px) {
  .services-card { padding: 2.5rem; flex-direction: row; gap: 3rem; }
}
.services-card .col-left {
  width: 100%; display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 768px) { .services-card .col-left { width: 41.666667%; } }
.services-card .col-right {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 640px) { .services-card .col-right { padding: 1.5rem; } }
@media (min-width: 768px) { .services-card .col-right { padding: 2rem; width: 58.333333%; } }

.craftsmanship-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .craftsmanship-tag { margin-bottom: 0.75rem; } }
.craftsmanship-tag .icon { color: rgba(255,255,255,0.6); width: 16px; height: 16px; }

.section-title {
  font-family: var(--font-serif);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
@media (min-width: 640px) { .section-title { font-size: 1.875rem; } }
@media (min-width: 768px) {
  .section-title { font-size: 3rem; margin-bottom: 1.5rem; }
}

.service-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .service-tabs { display: flex; flex-direction: column; }
}
.service-tab {
  width: 100%; text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  transition: all 0.3s;
  font-size: 12px; letter-spacing: 0.025em;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; border: 1px solid;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.05);
  font-family: inherit;
}
@media (min-width: 640px) { .service-tab { font-size: 14px; } }
@media (min-width: 768px) {
  .service-tab { padding: 0.75rem 1.25rem; font-size: 16px; }
}
.service-tab .label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.service-tab .arrow {
  width: 16px; height: 16px;
  display: none;
  transition: transform 0.3s;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) { .service-tab .arrow { display: block; } }
.service-tab:hover { background: rgba(255,255,255,0.1); }
.service-tab.active {
  background: #10b981; color: #fff;
  border-color: #10b981; font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(16,185,129,0.2);
}
.service-tab.active .arrow {
  transform: translateX(4px); color: #fff;
}

.service-detail-tag {
  color: rgba(255,255,255,0.4);
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.2em; font-family: ui-monospace, monospace;
}
@media (min-width: 640px) { .service-detail-tag { font-size: 12px; } }
.service-detail-title {
  font-family: var(--font-serif);
  font-weight: 800;
  color: #fff;
  font-size: 1.25rem;
  margin: 0.25rem 0 0.5rem;
  line-height: 1.2;
}
@media (min-width: 640px) { .service-detail-title { font-size: 1.5rem; margin-bottom: 1rem; } }
@media (min-width: 768px) { .service-detail-title { font-size: 1.875rem; } }
.service-detail-desc {
  color: rgba(255,255,255,0.8);
  font-size: 12px; line-height: 1.6;
  margin: 0 0 1rem;
  font-family: var(--font-sans);
}
@media (min-width: 640px) { .service-detail-desc { font-size: 14px; margin-bottom: 1.5rem; } }
@media (min-width: 768px) { .service-detail-desc { font-size: 16px; } }

.benefits-list {
  display: flex; flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .benefits-list { gap: 0.625rem; }
}
.benefit {
  display: flex; align-items: center; gap: 0.75rem;
}
.benefit .check-circle {
  width: 16px; height: 16px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .benefit .check-circle { width: 20px; height: 20px; }
}
.benefit .check-icon { width: 12px; height: 12px; color: #fff; }
@media (min-width: 640px) {
  .benefit .check-icon { width: 14px; height: 14px; }
}
.benefit span {
  color: rgba(255,255,255,0.9);
  font-size: 11px; font-family: var(--font-sans);
}
@media (min-width: 640px) { .benefit span { font-size: 12px; } }
@media (min-width: 768px) { .benefit span { font-size: 14px; } }

.quote-btn {
  margin-top: 1.5rem;
  background: #fff; color: #000;
  border: none;
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; cursor: pointer;
  transition: transform 0.1s;
  font-family: inherit;
}
@media (min-width: 640px) { .quote-btn { margin-top: 2rem; padding: 0.875rem 1.5rem; font-size: 14px; } }
.quote-btn:active { transform: scale(0.95); }

/* Location overlay */
.location-card {
  width: 100%; max-width: 1000px;
  border-radius: 24px;
  padding: 1.25rem;
  text-align: center;
  background: rgba(0,0,0,0.75);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 640px) { .location-card { padding: 2rem; } }
@media (min-width: 768px) { .location-card { padding: 3rem; } }
.location-title {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff; line-height: 1.1;
  font-size: 1.5rem;
  margin: 0.75rem 0 0.75rem;
}
@media (min-width: 640px) { .location-title { font-size: 1.875rem; margin: 1rem 0 1.5rem; } }
@media (min-width: 768px) { .location-title { font-size: 3rem; } }
@media (min-width: 1024px) { .location-title { font-size: 3.75rem; } }
.location-desc {
  color: rgba(255,255,255,0.85);
  font-size: 12px; line-height: 1.6;
  max-width: 700px; margin: 0 auto 1.5rem;
  font-family: var(--font-sans);
}
@media (min-width: 640px) { .location-desc { font-size: 14px; margin-bottom: 2.5rem; } }
@media (min-width: 768px) { .location-desc { font-size: 18px; } }

.city-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  text-align: left;
  max-width: 850px; margin: 0 auto;
}
@media (min-width: 640px) {
  .city-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 768px) { .city-grid { gap: 1.5rem; } }

.city-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 1rem;
  transition: background 0.3s;
}
@media (min-width: 640px) { .city-card { padding: 1.5rem; } }
.city-card:hover { background: rgba(255,255,255,0.1); }
.city-card .city-num {
  color: rgba(255,255,255,0.4);
  font-size: 10px; text-transform: uppercase;
  font-family: ui-monospace, monospace;
}
.city-card .city-name {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff; font-size: 1.125rem;
  margin: 0.25rem 0 0.375rem;
}
@media (min-width: 640px) { .city-card .city-name { font-size: 1.25rem; margin-bottom: 0.5rem; } }
.city-card .city-desc {
  color: rgba(255,255,255,0.7);
  font-size: 11px; line-height: 1.5;
}
@media (min-width: 640px) { .city-card .city-desc { font-size: 12px; } }

.location-meta {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0.75rem; margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 10px; color: rgba(255,255,255,0.6);
  font-family: var(--font-sans);
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) {
  .location-meta { gap: 1.5rem; font-size: 12px; margin-top: 2.5rem; padding-top: 1.5rem; }
}
.location-meta > span {
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.location-meta .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: none;
}
@media (min-width: 640px) { .location-meta .dot { display: inline-block; } }
.location-meta .icon { width: 16px; height: 16px; }

/* --------- Glass Panel --------- */
.glass-panel {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; pointer-events: none;
  z-index: 10;
}
@media (min-width: 768px) { .glass-panel { padding: 2rem; } }
.glass-perspective {
  width: 100%; max-width: 1250px;
  height: 900px; max-height: 85vh;
  pointer-events: auto;
  overflow-y: auto;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(100vh);
  transition: opacity 0.5s;
}
.glass-perspective.shown {
  opacity: 1;
}
@media (max-width: 640px) {
  .glass-perspective { overflow: visible; }
}
.glass-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.glass-inner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.03), transparent);
  pointer-events: none; border-radius: 24px;
}
.glass-text {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 1rem;
  text-align: center;
  margin: 1.5rem 0;
  user-select: none;
}
@media (min-width: 640px) {
  .glass-text { padding: 0 1.5rem; margin: 2rem 0; }
}
@media (min-width: 768px) {
  .glass-text { padding: 0 3rem; margin: 3rem 0; }
}
.glass-italic {
  font-family: var(--font-serif); font-weight: 800;
  font-style: italic; color: rgba(255,255,255,0.7);
  font-size: 1.125rem; margin: 0 0 0.5rem;
  letter-spacing: 0.025em;
}
@media (min-width: 640px) {
  .glass-italic { font-size: 1.5rem; margin-bottom: 1.5rem; }
}
.glass-quote {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff;
  font-size: 1rem; line-height: 1.4;
  max-width: 850px; margin: 0 auto;
}
@media (min-width: 480px) { .glass-quote { font-size: 1.125rem; } }
@media (min-width: 640px) {
  .glass-quote { font-size: 1.875rem; line-height: 1.1; }
}
@media (min-width: 768px) { .glass-quote { font-size: 3rem; } }
@media (min-width: 1024px) { .glass-quote { font-size: 52px; } }
.glass-quote em { font-style: italic; color: rgba(255,255,255,0.95); }

.marquee-container {
  width: 100%; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 0;
  display: flex;
  background: rgba(0,0,0,0.2);
}
@media (min-width: 640px) { .marquee-container { padding: 1.5rem 0; } }
.marquee-track {
  display: flex; white-space: nowrap;
  gap: 4rem; padding-right: 4rem;
  animation: marquee 20s linear infinite;
  user-select: none;
}
.marquee-track.duplicate { }
.marquee-track span {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.3s;
  cursor: default;
}
@media (min-width: 768px) { .marquee-track span { font-size: 14px; } }
.marquee-track span:hover { opacity: 1; }
@keyframes marquee { 100% { transform: translateX(-50%); } }

/* --------- Rest of Site Section --------- */
.rest-of-site {
  position: relative; z-index: 20;
  background: #071306;
  margin-top: 400px;
}

/* LawnStats */
.lawn-stats {
  width: 100%;
  background: #0c1c0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 1rem;
  position: relative; overflow: hidden;
  user-select: none;
}
@media (min-width: 768px) { .lawn-stats { padding: 4rem 1rem; } }
.lawn-stats::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: rgba(6,78,59,0.2);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}
.lawn-stats .container {
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 10;
}
.lawn-stats h2 {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff; font-size: 1.5rem;
  margin: 0.5rem 0 0;
}
@media (min-width: 768px) { .lawn-stats h2 { font-size: 2.25rem; } }
.lawn-stats .eyebrow {
  color: rgba(16,185,129,0.9);
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
  display: block; text-align: center;
}
@media (min-width: 768px) { .lawn-stats .eyebrow { font-size: 14px; } }
.lawn-stats .heading { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .lawn-stats .heading { margin-bottom: 3rem; } }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.stat-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.stat-card:hover {
  border-color: rgba(6,95,70,0.3);
  transform: translateY(-4px);
}
.stat-icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(6,78,59,0.5);
  border: 1px solid rgba(6,95,70,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.stat-icon { width: 24px; height: 24px; color: #34d399; }
.stat-value {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff; font-size: 1.875rem;
  line-height: 1;
}
@media (min-width: 768px) { .stat-value { font-size: 2.25rem; } }
.stat-label {
  color: #34d399; font-size: 14px;
  font-weight: 600; margin-top: 0.5rem;
}
.stat-desc {
  color: rgba(255,255,255,0.6);
  font-size: 12px; line-height: 1.5;
  margin: 0.375rem 0 0;
}

/* Founder Section */
.founder-section {
  width: 100%;
  background: #faf9f6;
  color: #18181b;
  padding: 4rem 1rem;
  position: relative; overflow: hidden;
  user-select: none;
}
@media (min-width: 768px) { .founder-section { padding: 6rem 1rem; } }
.founder-section::before,
.founder-section::after {
  content: ""; position: absolute;
  border-radius: 50%; pointer-events: none;
}
.founder-section::before {
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: rgba(209,250,229,0.4);
  filter: blur(80px);
}
.founder-section::after {
  bottom: 0; left: 0;
  width: 250px; height: 250px;
  background: rgba(236,253,245,0.5);
  filter: blur(60px);
}
.founder-section .container {
  max-width: 1152px; margin: 0 auto;
  position: relative; z-index: 10;
}
.founder-grid {
  display: flex; flex-direction: column;
  align-items: center; gap: 3rem;
}
@media (min-width: 1024px) {
  .founder-grid { flex-direction: row; gap: 4rem; }
}
.founder-image-col {
  width: 100%;
  display: flex; justify-content: center;
}
@media (min-width: 1024px) { .founder-image-col { width: 41.666667%; } }
.founder-image-frame {
  position: relative;
  max-width: 340px;
}
@media (min-width: 768px) { .founder-image-frame { max-width: 380px; } }
.founder-image-frame .frame-outer {
  position: absolute; inset: -12px;
  border-radius: 16px;
  border: 2px solid rgba(6,95,70,0.1);
  transform: rotate(-2deg);
}
.founder-image-frame .frame-bg {
  position: absolute; inset: 0;
  background: rgba(6,95,70,0.1);
  border-radius: 16px;
  transform: rotate(1deg) scale(1.02);
}
.founder-image-frame .img-wrap {
  position: relative;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 4px solid #fff;
  transition: transform 0.5s;
}
.founder-image-frame .img-wrap:hover { transform: scale(1.02); }
.founder-image-frame .img-wrap img {
  width: 100%; height: auto; object-fit: cover;
}
.founder-image-frame .img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  padding: 1.25rem;
  padding-top: 2.5rem;
  color: #fff; text-align: left;
}
.founder-image-frame .badge-native {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: #34d399; font-size: 12px;
  letter-spacing: 0.05em; text-transform: uppercase;
  font-weight: 700;
}
.founder-image-frame .badge-native .icon { width: 14px; height: 14px; }
.founder-image-frame h4 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 1.25rem; margin: 0.25rem 0 0;
}
.founder-image-frame .founder-role {
  color: rgba(255,255,255,0.7); font-size: 12px;
  margin: 0;
}
.founder-image-frame .floating-badge {
  position: absolute; top: -16px; right: -16px;
  background: #065f46; color: #fff;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid #047857;
  max-width: 150px; text-align: center;
  transform: rotate(6deg);
  display: none;
}
@media (min-width: 768px) { .founder-image-frame .floating-badge { display: block; } }
.founder-image-frame .floating-badge .num {
  display: block; font-size: 1.25rem;
  font-weight: 800; font-family: var(--font-serif);
  line-height: 1;
}
.founder-image-frame .floating-badge .lbl {
  display: block; font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 700; color: #a7f3d0; margin-top: 0.25rem;
}

.founder-text-col {
  width: 100%; text-align: left;
}
@media (min-width: 1024px) { .founder-text-col { width: 58.333333%; } }
.founder-text-col .eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #065f46; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .founder-text-col .eyebrow { font-size: 14px; } }
.founder-text-col h2 {
  font-family: var(--font-serif); font-weight: 800;
  color: #112411; line-height: 1.2;
  font-size: 1.875rem; margin: 0 0 1.5rem;
}
@media (min-width: 768px) { .founder-text-col h2 { font-size: 3rem; } }
.founder-quote {
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid rgba(4,120,87,0.3);
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .founder-quote { padding-left: 2rem; } }
.founder-quote p {
  color: #2b3a2b; line-height: 1.6;
  font-size: 14px; margin: 0 0 1rem;
}
@media (min-width: 768px) { .founder-quote p { font-size: 16px; } }
.founder-quote .quote-mark {
  position: absolute; left: -8px; top: -20px;
  width: 32px; height: 32px;
  color: rgba(4,120,87,0.1);
  transform: rotate(180deg);
}

.guarantees {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .guarantees { grid-template-columns: repeat(2, 1fr); } }
.guarantee {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.guarantee .icon {
  width: 20px; height: 20px;
  color: #047857; flex-shrink: 0;
  margin-top: 2px;
}
.guarantee h4 {
  color: #1a2f1a; font-weight: 700;
  font-size: 14px; margin: 0;
}
@media (min-width: 768px) { .guarantee h4 { font-size: 16px; } }
.guarantee p {
  color: #455245; font-size: 12px;
  margin: 0.125rem 0 0;
}
.signature {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(6,95,70,0.1);
  padding-top: 1.5rem;
}
.signature .name {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 800; color: #065f46;
  font-size: 1.5rem;
}
.signature .divider {
  height: 16px; width: 1px;
  background: rgba(6,95,70,0.2);
}
.signature .title {
  color: #455245; font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em; font-weight: 700;
}

/* Reviews block */
.reviews-section {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(6,95,70,0.1);
}
@media (min-width: 640px) { .reviews-section { margin-top: 6rem; padding-top: 4rem; } }
.reviews-header {
  text-align: center; max-width: 42rem;
  margin: 0 auto 2rem;
}
.reviews-pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: #ecfdf5; border: 1px solid #d1fae5;
  border-radius: 9999px;
  color: #065f46;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .reviews-pill { font-size: 12px; } }
.reviews-pill .star { color: #f59e0b; width: 14px; height: 14px; fill: #f59e0b; }
.reviews-header h3 {
  font-family: var(--font-serif); font-weight: 800;
  color: #112411; line-height: 1.2;
  font-size: 1.5rem; margin: 0;
}
@media (min-width: 640px) { .reviews-header h3 { font-size: 2.25rem; } }
.reviews-header p {
  color: #455245; font-size: 12px;
  margin: 0.5rem 0 0;
}
@media (min-width: 640px) { .reviews-header p { font-size: 14px; } }
.reviews-embed {
  width: 100%; overflow: hidden;
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(6,95,70,0.1);
  border-radius: 16px;
  padding: 1.25rem;
  min-height: 220px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
@media (min-width: 640px) { .reviews-embed { padding: 2rem; } }
.reviews-embed iframe {
  width: 100%; border: 0;
  background: transparent;
  min-height: 150px;
  transition: height 0.3s;
}
.reviews-default {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 32rem; margin: 0 auto;
}
.reviews-default .icon-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 9999px;
  background: #d1fae5; color: #065f46;
  margin-bottom: 1rem;
}
.reviews-default .icon-circle svg { width: 24px; height: 24px; }
.reviews-default h4 {
  color: #112411;
  font-size: 14px; font-weight: 700;
  margin: 0 0 0.25rem;
}
.reviews-default p {
  color: #455245; font-size: 12px;
  line-height: 1.5; margin: 0;
}

/* Before/After Slider */
.before-after-section {
  width: 100%;
  background: #071306;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 1rem;
  color: #fff; position: relative;
  overflow: hidden; user-select: none;
}
@media (min-width: 768px) { .before-after-section { padding: 6rem 1rem; } }
.before-after-section::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: rgba(6,78,59,0.1);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}
.before-after-section .container {
  max-width: 56rem; margin: 0 auto;
  position: relative; z-index: 10; text-align: center;
}
.before-after-section .eyebrow {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: #34d399; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 0.75rem;
}
.before-after-section .eyebrow .icon { width: 16px; height: 16px; }
.before-after-section h2 {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff; line-height: 1.2;
  font-size: 1.875rem; margin: 0 0 1rem;
}
@media (min-width: 768px) { .before-after-section h2 { font-size: 3rem; } }
.before-after-section p.intro {
  color: rgba(255,255,255,0.7);
  font-size: 12px; line-height: 1.6;
  max-width: 600px; margin: 0 auto 2.5rem;
}
@media (min-width: 768px) { .before-after-section p.intro { font-size: 14px; } }

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: ew-resize;
}
@media (min-width: 640px) { .ba-slider { aspect-ratio: 16 / 9; } }
.ba-slider img.full {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.ba-slider .ba-clip {
  position: absolute; inset: 0;
  height: 100%; overflow: hidden;
}
.ba-slider .ba-clip-inner {
  position: relative; height: 100%;
  width: 100%;
}
.ba-slider .ba-clip-inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba-slider .badge {
  position: absolute;
  background: rgba(6,95,70,0.9);
  color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(16,185,129,0.3);
}
.ba-slider .badge.left {
  top: 1rem; left: 1rem;
  background: rgba(120,53,15,0.9);
  border-color: rgba(180,83,9,0.3);
}
.ba-slider .badge.right {
  top: 1rem; right: 1rem;
}
.ba-slider .divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 4px;
  background: #fff;
  cursor: ew-resize;
  pointer-events: none;
}
.ba-slider .divider .handle {
  position: absolute;
  top: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 9999px;
  background: #fff; color: #112411;
  border: 4px solid #0c1c0a;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
}
.ba-slider .divider .handle svg { width: 14px; height: 14px; color: #064e3b; stroke-width: 3.5; }
.ba-slider .drag-hint {
  position: absolute; bottom: 1rem;
  left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.8);
  font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  pointer-events: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.ba-slider .drag-hint svg { width: 14px; height: 14px; animation: pulse 2s ease-in-out infinite; }

/* Interactive Scheduler / Estimator */
.scheduler {
  width: 100%;
  background: #0a1509;
  color: #fff;
  padding: 4rem 1rem;
  position: relative; overflow: hidden;
  user-select: none;
}
@media (min-width: 768px) { .scheduler { padding: 6rem 1rem; } }
.scheduler::before {
  content: "";
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.05);
}
.scheduler::after {
  content: "";
  position: absolute; top: 0; right: 25%;
  width: 350px; height: 350px;
  background: rgba(6,78,59,0.1);
  filter: blur(100px);
  border-radius: 50%; pointer-events: none;
}
.scheduler .container {
  max-width: 1152px; margin: 0 auto;
  position: relative; z-index: 10;
}
.scheduler .header {
  text-align: center; margin-bottom: 3rem;
}
@media (min-width: 768px) { .scheduler .header { margin-bottom: 4rem; } }
.scheduler .eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #34d399; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 0.75rem;
}
.scheduler .eyebrow .icon { width: 16px; height: 16px; }
.scheduler h2 {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff; line-height: 1.2;
  font-size: 1.875rem; margin: 0;
  max-width: 800px; margin: 0 auto;
}
@media (min-width: 768px) { .scheduler h2 { font-size: 3rem; } }
.scheduler .header p {
  color: rgba(255,255,255,0.6);
  font-size: 12px; line-height: 1.6;
  max-width: 550px; margin: 0.75rem auto 0;
}
@media (min-width: 768px) { .scheduler .header p { font-size: 14px; } }

.scheduler-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .scheduler-grid { grid-template-columns: repeat(12, 1fr); }
}
.estimator-form-col {
  grid-column: span 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 1.5rem;
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 768px) { .estimator-form-col { padding: 2rem; } }
@media (min-width: 1024px) { .estimator-form-col { grid-column: span 7; } }

.estimator-summary-col {
  grid-column: span 1;
  background: linear-gradient(to bottom, #112711, #0c1c0a);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 1.5rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.4);
  min-height: 460px;
}
@media (min-width: 768px) { .estimator-summary-col { padding: 2rem; } }
@media (min-width: 1024px) { .estimator-summary-col { grid-column: span 5; } }
.estimator-summary-col::before,
.estimator-summary-col::after {
  content: ""; position: absolute;
  border-radius: 50%; pointer-events: none;
}
.estimator-summary-col::before {
  top: 0; right: 0;
  width: 150px; height: 150px;
  background: rgba(16,185,129,0.1);
  filter: blur(50px);
}
.estimator-summary-col::after {
  bottom: 0; left: 0;
  width: 150px; height: 150px;
  background: rgba(16,185,129,0.05);
  filter: blur(50px);
}
.summary-content { position: relative; z-index: 10; }
.summary-pill {
  display: inline-block;
  font-size: 10px; text-transform: uppercase;
  font-weight: 700; letter-spacing: 0.2em;
  background: rgba(6,78,59,0.5);
  color: #6ee7b7;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(6,95,70,0.3);
}
.summary-content h3 {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff; font-size: 1.25rem;
  line-height: 1.2; margin: 1.25rem 0 1rem;
}
.specs-readout {
  display: flex; flex-direction: column;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  margin: 1.25rem 0;
}
.specs-readout .row {
  display: flex; justify-content: space-between;
}
.specs-readout .row .k { color: rgba(255,255,255,0.4); }
.specs-readout .row .v { color: #fff; font-weight: 600; }

.price-meter {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 1.25rem; text-align: center;
  margin-top: 0.5rem;
}
.price-meter .lbl {
  font-size: 10px; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.price-meter .amt {
  font-family: var(--font-serif); font-weight: 800;
  color: #34d399; font-size: 2.25rem;
  margin: 0.5rem 0 0.25rem;
}
@media (min-width: 768px) { .price-meter .amt { font-size: 3rem; } }
.price-meter .sub {
  font-size: 10px; color: rgba(255,255,255,0.4);
}

.credibility {
  position: relative; z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  display: flex; flex-direction: column;
  gap: 0.5rem;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.credibility .row {
  display: flex; align-items: center; gap: 0.5rem;
}
.credibility .dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: #34d399;
}

/* Steps nav */
.steps-nav {
  display: flex; align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  font-size: 12px; font-family: var(--font-sans);
  text-transform: uppercase; letter-spacing: 0.2em;
  font-weight: 700;
}
.steps-nav button {
  background: none; border: none;
  padding: 0 0 1rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -18px;
  color: rgba(255,255,255,0.4);
  cursor: pointer; font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-weight: inherit;
  transition: all 0.3s;
}
.steps-nav button:hover { color: rgba(255,255,255,0.6); }
.steps-nav button.active {
  color: #34d399;
  border-bottom-color: #34d399;
}
.steps-nav button:disabled { opacity: 0.4; cursor: not-allowed; }
.steps-nav .sep { color: rgba(255,255,255,0.2); }

.step-heading {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff; font-size: 1.125rem;
  margin: 0 0 1rem;
}
@media (min-width: 768px) { .step-heading { font-size: 1.25rem; } }

/* Service choice list */
.choice-list { display: flex; flex-direction: column; gap: 0.75rem; }
.choice-list.cols-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .choice-list.cols-2 { grid-template-columns: 1fr 1fr; }
}
.choice-card {
  width: 100%; text-align: left;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
}
.choice-card:hover { background: rgba(255,255,255,0.1); }
.choice-card.active {
  background: rgba(6,78,59,0.4);
  border-color: rgba(16,185,129,0.5);
  color: #fff;
}
.choice-card .body .title {
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 0.5rem;
}
@media (min-width: 768px) { .choice-card .body .title { font-size: 16px; } }
.choice-card .body .pulse {
  width: 8px; height: 8px;
  border-radius: 50%; background: #34d399;
  animation: pulse 2s ease-in-out infinite;
}
.choice-card .body .desc {
  color: rgba(255,255,255,0.5);
  font-size: 12px; margin-top: 0.25rem;
}
.choice-card .check {
  width: 20px; height: 20px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.choice-card.active .check {
  background: #10b981; border-color: #10b981;
}
.choice-card .check svg {
  width: 14px; height: 14px; color: #000;
  stroke-width: 3;
}

.size-card .icon-emoji { font-size: 1.5rem; margin-bottom: 0.5rem; }
.size-card .label { font-weight: 700; font-size: 16px; }
.size-card .desc { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 0.25rem; }
.size-card .body { flex: 1; }
.size-card { align-items: flex-start; }

/* Form fields */
.field { display: flex; flex-direction: column; gap: 0.375rem; }
.field label {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.4);
}
.field-input {
  position: relative;
}
.field-input .input-icon {
  position: absolute;
  left: 0.875rem; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: rgba(255,255,255,0.4);
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 14px; color: #fff;
  font-family: var(--font-sans);
  transition: all 0.3s;
}
.field input.pl-10 { padding-left: 2.5rem; }
.field select.appearance-none { appearance: none; -webkit-appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: #10b981;
  background: rgba(255,255,255,0.1);
}
.field textarea { resize: none; }
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* CTA Banner */
.cta-banner {
  width: 100%;
  background: #fff;
  color: #18181b;
  padding: 4rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(6,78,59,0.1);
  position: relative;
  user-select: none;
}
@media (min-width: 768px) { .cta-banner { padding: 5rem 1rem; } }
.cta-banner .container {
  max-width: 56rem; margin: 0 auto;
}
.cta-banner .eyebrow {
  color: #065f46; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 800; display: block; margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .cta-banner .eyebrow { font-size: 14px; } }
.cta-banner h2 {
  font-family: var(--font-serif); font-weight: 800;
  color: #112411; line-height: 1.2;
  font-size: 1.875rem; margin: 0 0 1.5rem;
}
@media (min-width: 768px) { .cta-banner h2 { font-size: 3rem; } }
.cta-banner p {
  color: #3b4b3b; font-size: 12px;
  line-height: 1.6; max-width: 650px;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) { .cta-banner p { font-size: 16px; } }

.cta-actions {
  display: flex; flex-direction: column;
  gap: 1rem;
  justify-content: center; align-items: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .cta-actions { flex-direction: row; }
}
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.1s;
  font-family: inherit;
  width: 100%;
  border: none;
  text-decoration: none;
}
@media (min-width: 640px) { .cta-btn { width: auto; } }
.cta-btn:active { transform: scale(0.95); }
.cta-btn.primary {
  background: #1c3f1b; color: #fff;
}
.cta-btn.primary:hover { background: #285726; }
.cta-btn.secondary {
  background: #f4f4f5; color: #18181b;
  border: 1px solid rgba(63,63,70,0.6);
}
.cta-btn.secondary:hover { background: #e4e4e7; }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
  border-top: 1px solid rgba(6,95,70,0.1);
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .trust-badges { grid-template-columns: repeat(4, 1fr); }
}
.trust-badge {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.trust-badge .icon-circle {
  width: 40px; height: 40px;
  border-radius: 9999px;
  background: #ecfdf5;
  color: #065f46;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
}
.trust-badge .icon-circle svg { width: 20px; height: 20px; }
.trust-badge .icon-circle svg.stroke-3 { stroke-width: 3; }
.trust-badge .name {
  color: #112411;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-badge .meta {
  color: #455245;
  font-size: 9px;
  margin-top: 0.125rem;
}

/* Footer */
.footer {
  width: 100%;
  background: #060c05;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 1rem;
  user-select: none;
}
.footer .container {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column;
  justify-content: space-between; align-items: center;
  gap: 2rem; text-align: center;
}
@media (min-width: 768px) {
  .footer .container { flex-direction: row; text-align: left; }
}
.footer .brand {
  display: flex; align-items: center;
  gap: 0.625rem;
  color: #fff;
  font-family: var(--font-serif); font-weight: 800;
  font-size: 1.125rem;
}
.footer .brand .icon { width: 20px; height: 20px; color: #34d399; }
.footer p.tagline {
  color: rgba(255,255,255,0.3);
  font-size: 12px; line-height: 1.5;
  margin: 0.5rem 0 0; max-width: 24rem;
}
.footer .meta-block {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.25rem;
  font-family: var(--font-sans);
}
@media (min-width: 768px) { .footer .meta-block { align-items: flex-end; } }
.footer .rating {
  color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 0.375rem;
}
.footer .rating .stars { color: #34d399; }
.footer .meta-line { font-size: 10px; color: rgba(255,255,255,0.4); }
.footer .copy { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 0.75rem; }

/* --------- Quote Modal --------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 50;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.modal-card {
  width: 100%; max-width: 650px;
  border-radius: 24px;
  background: rgba(10,10,10,0.85);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  display: flex; flex-direction: column;
}
.modal-top {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.05);
}
.modal-top .title {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}
.modal-top .title .icon { width: 20px; height: 20px; color: rgba(255,255,255,0.8); }
.modal-close {
  width: 32px; height: 32px;
  border-radius: 9999px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.modal-close svg { width: 20px; height: 20px; }

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}
@media (min-width: 768px) { .modal-body { padding: 2rem; } }
.modal-intro { text-align: center; margin-bottom: 0.5rem; }
.modal-intro h3 {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff; font-size: 1.5rem;
  margin: 0;
}
.modal-intro p {
  color: rgba(255,255,255,0.6);
  font-size: 12px; margin: 0.25rem 0 0;
}

.modal-form {
  display: flex; flex-direction: column;
  gap: 1.25rem; margin-top: 1rem;
}

.contact-row {
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.875rem;
  margin-top: 0.5rem;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-sans);
}
@media (min-width: 768px) { .contact-row { flex-direction: row; } }
.contact-row > div {
  display: flex; align-items: center; gap: 0.5rem;
}
.contact-row .icon { width: 16px; height: 16px; color: rgba(255,255,255,0.6); }

.submit-btn {
  margin-top: 0.5rem;
  background: #fff; color: #000;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  cursor: pointer; transition: transform 0.1s;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.4);
  font-family: inherit;
  width: 100%;
}
.submit-btn:active { transform: scale(0.98); }
.submit-btn .icon { width: 16px; height: 16px; }

.submit-success {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem 0;
  text-align: center;
}
.submit-success .check-circle {
  width: 64px; height: 64px;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  animation: bounce 1s ease-in-out infinite;
}
.submit-success .check-circle svg { width: 32px; height: 32px; stroke-width: 3; }
.submit-success h4 {
  font-family: var(--font-serif); font-weight: 800;
  color: #fff; font-size: 1.5rem;
  margin: 0 0 0.5rem;
}
.submit-success p {
  color: rgba(255,255,255,0.7);
  font-size: 14px; max-width: 350px;
  margin: 0 auto; line-height: 1.5;
  font-family: var(--font-sans);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.form-error {
  color: #fca5a5;
  font-size: 12px;
  text-align: center;
  margin: 0.5rem 0 0;
}

/* --------- PHP markup compatibility layer ---------
   The production template intentionally uses semantic class names. These
   aliases map that markup onto the visual system ported from the React build. */
main { position: relative; z-index: 1; }
.stage-overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
}
.glass-overlay {
  width: min(1100px, 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(0,0,0,.72);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  box-shadow: 0 25px 50px rgba(0,0,0,.55);
}
.services-showcase { display: grid; grid-template-columns: 5fr 7fr; gap: 3rem; padding: 2.5rem; }
.service-menu h2, .service-panel h3 { font-family: var(--font-serif); }
.service-menu h2 { margin: .6rem 0 1.5rem; font-size: clamp(2rem,4vw,3rem); }
.service-tabs { display: flex; flex-direction: column; }
.service-tab i { width: 16px; }
.service-detail { padding: 2rem; border-radius: 16px; background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.1); }
.service-panel { display: none; }
.service-panel.active { display: block; }
.service-panel > span { color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .2em; font: 12px ui-monospace,monospace; }
.service-panel h3 { font-size: 1.875rem; margin: .35rem 0 1rem; }
.service-panel p { color: rgba(255,255,255,.78); line-height: 1.65; }
.service-panel ul { list-style: none; padding: 1rem 0 0; margin: 1rem 0; border-top: 1px solid rgba(255,255,255,.1); }
.service-panel li { display: flex; gap: .7rem; align-items: center; margin: .65rem 0; }
.service-panel li svg { width: 16px; }
.location-showcase { max-width: 1000px; padding: 3rem; text-align: center; }
.location-showcase h2 { font: 800 clamp(2rem,5vw,3.75rem)/1.1 var(--font-serif); margin: .7rem 0 1rem; }
.location-showcase > p { max-width: 700px; margin: 0 auto 2.5rem; color: rgba(255,255,255,.8); }
.location-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; text-align: left; }
.location-grid article { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 1.5rem; }
.location-grid small { color: rgba(255,255,255,.4); text-transform: uppercase; }
.location-grid h3 { font: 800 1.25rem var(--font-serif); }
.location-grid p { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.55; }
.trust-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; color: rgba(255,255,255,.6); font-size: 12px; }
.trust-line span { display: inline-flex; gap: .4rem; align-items: center; }
.trust-line svg { width: 16px; }
.about-stage { position: fixed; inset: 0; z-index: 10; display: flex; align-items: center; justify-content: center; padding: 2rem; pointer-events: none; }
.about-stage-wrapper { width: min(1250px,100%); height: min(900px,85vh); opacity: 0; transform: translateY(100vh); }
.glass-about { height: 100%; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border-radius: 24px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(40px); }
.glass-about > div:first-child { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem; text-align: center; }
.glass-about > div:first-child > p { font: italic 800 1.5rem var(--font-serif); color: rgba(255,255,255,.7); }
.glass-about h2 { max-width: 900px; font: 800 clamp(1.8rem,4vw,3.25rem)/1.1 var(--font-serif); }
.glass-about h2 em { color: rgba(255,255,255,.72); }
.marquee { overflow: hidden; border-top: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.2); padding: 1.5rem 0; }
.marquee div { white-space: nowrap; color: rgba(255,255,255,.4); font-size: 13px; font-weight: 600; letter-spacing: .2em; }
.site-body { position: relative; z-index: 20; background: #071306; margin-top: 400px; min-width: 100%; }
.stats-section { background: #0c1c0a; padding: 4rem 1rem; }
.section-head { max-width: 900px; margin: 0 auto 3rem; text-align: center; }
.section-head > span { color: #34d399; font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.section-head h2 { font: 800 clamp(1.875rem,4vw,3rem)/1.2 var(--font-serif); margin: .65rem 0; }
.section-head p { color: rgba(255,255,255,.65); line-height: 1.6; }
.stats-grid { max-width: 1280px; margin: 0 auto; }
.stats-grid article { background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.05); border-radius: 16px; padding: 1.5rem; }
.stats-grid article svg { width: 24px; color: #34d399; }
.stats-grid article strong { display: block; font: 800 2.25rem var(--font-serif); margin-top: 1rem; }
.stats-grid article h3 { color: #34d399; font-size: 14px; }
.stats-grid article p { color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.5; }
.founder-section { background: #faf9f6; color: #182018; }
.founder-section > .founder-grid { max-width: 1152px; margin: 0 auto; }
.founder-photo { position: relative; width: min(100%,380px); flex: 0 0 38%; overflow: hidden; border-radius: 16px; box-shadow: 0 25px 50px rgba(0,0,0,.25); border: 4px solid #fff; }
.founder-photo img { width: 100%; }
.founder-photo > div { position: absolute; inset: auto 0 0; padding: 3rem 1.25rem 1.25rem; background: linear-gradient(transparent,rgba(0,0,0,.85)); color: #fff; }
.founder-photo h3,.founder-photo p { margin: .2rem 0; }
.founder-copy { flex: 1; }
.founder-copy h2 { font: 800 clamp(2rem,4vw,3rem)/1.2 var(--font-serif); color: #112411; }
.founder-copy blockquote { border-left: 4px solid rgba(4,120,87,.3); padding-left: 2rem; margin-left: 0; color: #2b3a2b; line-height: 1.65; }
.guarantees article { display: flex; gap: .75rem; align-items: flex-start; }
.guarantees article svg { width: 20px; color: #047857; flex: 0 0 auto; }
.guarantees h3,.guarantees p { margin: 0 0 .2rem; }
.guarantees p { color: #455245; font-size: 12px; }
.signature { border-top: 1px solid rgba(6,95,70,.1); padding-top: 1.5rem; }
.signature strong { font: italic 800 1.5rem var(--font-serif); color: #065f46; margin-right: 1rem; }
.reviews { max-width: 1152px; margin: 6rem auto 0; padding-top: 4rem; border-top: 1px solid rgba(6,95,70,.1); text-align: center; }
.reviews h2 { font: 800 2.25rem var(--font-serif); }
.reviews-placeholder { margin-top: 2rem; padding: 2rem; border: 1px solid rgba(6,95,70,.1); border-radius: 16px; background: rgba(255,255,255,.6); }
.comparison-section { background: #071306; padding: 6rem 1rem; }
.comparison { position: relative; max-width: 900px; aspect-ratio: 16/9; margin: 0 auto; overflow: hidden; border-radius: 24px; }
.comparison > img,.before-clip,.before-clip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.before-clip { width: 50%; overflow: hidden; }
.before-clip img { width: 900px; max-width: none; }
.comparison-handle { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; background: #fff; }
.comparison-handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background:#fff; color:#112411; border:4px solid #0c1c0a; border-radius:50%; width:44px;height:44px;display:grid;place-items:center; }
.before-label,.after-label,.comparison small { position: absolute; z-index: 2; background: rgba(0,0,0,.65); padding: .4rem .75rem; border-radius: 999px; font-size: 10px; text-transform: uppercase; }
.before-label { left: 1rem; top: 1rem; }.after-label { right: 1rem; top: 1rem; }.comparison small { left: 50%; bottom: 1rem; transform: translateX(-50%); }
.scheduler-section { background:#0a1509; padding:6rem 1rem; }
.scheduler-grid { max-width:1152px; margin:auto; grid-template-columns:7fr 5fr; }
.scheduler-form-card,.estimate-card { border:1px solid rgba(255,255,255,.08); border-radius:24px; padding:2rem; min-height:460px; }
.scheduler-form-card { background:rgba(0,0,0,.4); }.estimate-card { background:linear-gradient(#112711,#0c1c0a); }
.step-nav { display:flex; gap:1rem; padding-bottom:1rem; margin-bottom:2rem; border-bottom:1px solid rgba(255,255,255,.1); }
.step-nav button { background:none;border:0;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.12em; }.step-nav button.active{color:#34d399}
.continue-btn { margin-top: 1.5rem; }
.estimate-card > span { color:#6ee7b7;font-size:10px;letter-spacing:.2em;text-transform:uppercase; }.estimate-card h3{font:800 1.5rem var(--font-serif)}
.estimate-card dl { border-block:1px solid rgba(255,255,255,.1); padding:1rem 0; }.estimate-card dl div{display:flex;justify-content:space-between;margin:.65rem 0;font-size:12px}.estimate-card dt{color:rgba(255,255,255,.4)}
.estimate-price{text-align:center;background:rgba(0,0,0,.35);border-radius:16px;padding:1.25rem}.estimate-price strong{display:block;color:#34d399;font:800 2.5rem var(--font-serif);margin:.5rem}.estimate-price p{font-size:10px;color:rgba(255,255,255,.4)}
.cta-section { background:#fff;color:#18181b;text-align:center;padding:5rem 1rem; }.cta-section>span{color:#065f46;font-size:12px;font-weight:800;letter-spacing:.2em;text-transform:uppercase}.cta-section h2{font:800 clamp(2rem,4vw,3rem) var(--font-serif);color:#112411;max-width:900px;margin:1rem auto}.cta-section>p{max-width:650px;margin:0 auto 2rem;color:#3b4b3b}.cta-section>div{display:flex;justify-content:center;gap:1rem}.badge-grid{display:grid!important;grid-template-columns:repeat(4,1fr);max-width:768px;margin:2.5rem auto 0;padding-top:2.5rem;border-top:1px solid rgba(6,95,70,.1)}.badge-grid article{display:flex;flex-direction:column;align-items:center}.badge-grid svg{color:#065f46}.badge-grid small{color:#455245}
footer { background:#060c05;padding:3rem 1rem;display:flex;justify-content:space-between;gap:2rem;color:rgba(255,255,255,.5) } footer>div{max-width:520px}footer h2{color:#fff;font:800 1.125rem var(--font-serif)}footer>div:last-child{display:flex;flex-direction:column;align-items:flex-end;gap:.4rem}footer strong{color:#fff}
.btn { border:0;border-radius:12px;padding:.9rem 1.4rem;text-transform:uppercase;letter-spacing:.1em;font-weight:700;display:inline-flex;align-items:center;gap:.5rem;cursor:pointer }.btn.light{background:#fff;color:#000}.btn.dark{background:#1c3f1b;color:#fff}.btn.pale{background:#f4f4f5;color:#18181b}
.eyebrow { display:inline-flex;align-items:center;gap:.5rem;color:rgba(255,255,255,.55);font-size:12px;font-weight:700;letter-spacing:.2em;text-transform:uppercase }.eyebrow.dark{color:#065f46}
.modal { position:fixed;inset:0;z-index:200;background:rgba(0,0,0,.65);align-items:center;justify-content:center;padding:1rem;backdrop-filter:blur(8px) }.modal-card header{display:flex;justify-content:space-between;padding:1rem 1.5rem;border-bottom:1px solid rgba(255,255,255,.1)}.modal-card header button{background:none;border:0;color:#fff}.modal-body form{display:flex;flex-direction:column;gap:1rem}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.contact-strip{display:flex;justify-content:space-between;background:rgba(255,255,255,.05);padding:.8rem;border-radius:12px}

@media (max-width: 768px) {
  .stage-overlay { padding: 1rem; }
  .services-showcase,.location-grid,.scheduler-grid,.form-grid { grid-template-columns: 1fr; }
  .services-showcase { gap: 1rem; padding: 1rem; }
  .location-showcase { padding: 1.25rem; }
  .about-stage { padding: 1rem; }
  .site-body { margin-top: 400px; }
  .founder-grid { gap: 3rem; }
  .cta-section>div,footer { flex-direction: column; align-items:center; }
  .badge-grid { grid-template-columns:repeat(2,1fr); }
  footer,footer>div:last-child { text-align:center;align-items:center; }
}
.icon-16 { width: 16px; height: 16px; }
.icon-20 { width: 20px; height: 20px; }

/* --------- v5 viewport containment + resilient header icon --------- */
.logo-svg-container .header-leaf,
.logo-svg-container svg { display:block; width:24px; height:24px; color:#fff; stroke:currentColor; }
.stage-overlay { overflow:hidden; }
.glass-overlay {
  max-height:calc(100dvh - 2rem);
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-width:thin;
}
.about-stage-wrapper {
  height:min(900px,calc(100dvh - 4rem));
  max-height:calc(100dvh - 4rem);
}
@media (max-width:768px) {
  .glass-overlay { max-height:calc(100dvh - 2rem); }
  .service-menu h2 { font-size:clamp(1.35rem,7vw,2rem); margin:.35rem 0 .65rem; }
  .service-tabs { display:grid; grid-template-columns:1fr 1fr; gap:.4rem; }
  .service-tab { min-height:42px; padding:.45rem .6rem; font-size:11px; line-height:1.2; }
  .service-tab svg { display:none; }
  .service-detail { padding:.85rem; }
  .service-panel h3 { font-size:1.25rem; margin:.2rem 0 .45rem; }
  .service-panel p { font-size:12px; line-height:1.4; margin:.35rem 0; }
  .service-panel ul { padding-top:.45rem; margin:.45rem 0; }
  .service-panel li { font-size:11px; margin:.35rem 0; }
  .service-detail .btn { padding:.65rem .8rem; font-size:10px; }
  .location-showcase h2 { font-size:clamp(1.45rem,7vw,2.1rem); margin:.4rem 0 .55rem; }
  .location-showcase > p { font-size:12px; line-height:1.4; margin-bottom:.75rem; }
  .location-grid { gap:.5rem; }
  .location-grid article { padding:.65rem .8rem; }
  .location-grid h3 { font-size:1rem; margin:.25rem 0; }
  .location-grid p { font-size:10px; line-height:1.35; margin:.2rem 0; }
  .trust-line { gap:.45rem .8rem; margin-top:.7rem; padding-top:.65rem; font-size:9px; }
  .about-stage-wrapper { height:calc(100dvh - 2rem); max-height:calc(100dvh - 2rem); }
  .glass-about > div:first-child { padding:1rem; }
  .glass-about > div:first-child > p { font-size:1rem; margin:0 0 .5rem; }
  .glass-about h2 { font-size:clamp(1.15rem,5.5vw,1.8rem); line-height:1.18; margin:0; }
  .marquee { padding:.75rem 0; }
}

/* Spade + Lucide icon defaults (we use inline SVG since we're not loading Lucide React) */
.icon-spade { width: 1em; height: 1em; }

/* Honeypot field: hide visually but leave it accessible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
