/* ============================================================
   BINGHAM'S POTABLE WATER — Design System
   Fresh green. Crisp white. Clean water. Polished glass.
   ============================================================ */

:root {
  --green: #42AD4D;
  --green-bright: #4CBF57;
  --green-deep: #2F9139;
  --green-dark: #1E6E27;
  --green-ink: #143D19;
  --ink: #161A17;
  --gray: #5A6058;
  --gray-light: #8B928A;
  --white: #ffffff;
  --off: #F6FAF6;
  --mist: #EAF4EB;
  --line: rgba(22, 26, 23, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.65);
  --radius: 32px;
  --radius-sm: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--green); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3 { font-weight: 600; letter-spacing: -0.03em; line-height: 1.04; }
.display {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.display .light { font-weight: 400; }
.display .green { color: var(--green); }
h2.sec-title { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
h3 { font-size: 1.55rem; letter-spacing: -0.02em; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: block;
  margin-bottom: 1.1rem;
}
.eyebrow.on-dark { color: rgba(255,255,255,0.85); }
.lede { font-size: 1.22rem; line-height: 1.55; color: var(--gray); font-weight: 400; }
.body-copy { color: var(--gray); max-width: 62ch; }

/* ---------- Glass ---------- */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow:
    0 28px 70px -34px rgba(20, 61, 25, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(118deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 32%, rgba(255,255,255,0) 68%, rgba(255,255,255,0.14) 100%);
  pointer-events: none;
}
.glass-deep { background: rgba(255, 255, 255, 0.72); }
.glass-tint {
  background: rgba(234, 244, 235, 0.5);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 1rem 1.7rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease);
  will-change: transform;
}
.btn .arr { transition: transform 0.28s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 34px -14px rgba(47, 145, 57, 0.55);
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -16px rgba(47, 145, 57, 0.6);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.6); transform: translateY(-2px); }
.btn-ghost.on-white { border-color: var(--line); background: var(--off); }
.btn-ghost.on-white:hover { background: var(--mist); }
.btn-white { background: #fff; color: var(--green-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(0,0,0,0.35); }
.text-link {
  font-weight: 600;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid transparent;
  transition: gap 0.25s var(--ease), border-color 0.25s;
}
.text-link:hover { gap: 0.75rem; border-color: var(--green-deep); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1140px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.8rem 0.7rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 50px -28px rgba(20, 61, 25, 0.35), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 55px -28px rgba(20, 61, 25, 0.4), inset 0 1px 0 rgba(255,255,255,0.9);
}
.nav-brand { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand .mark { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.02em; }
.nav-brand .mark em { font-style: normal; color: var(--green); }
.nav-brand .sub { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); }
.nav-links { display: flex; gap: 1.9rem; align-items: center; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 0.9rem; }
.nav-phone { font-size: 0.92rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.nav-phone span { color: var(--green-deep); }
.nav .btn { padding: 0.72rem 1.3rem; font-size: 0.9rem; }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(246, 250, 246, 0.88);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  transform: translateY(12px);
  opacity: 0;
  transition: 0.4s var(--ease);
}
.mobile-menu.open a { transform: none; opacity: 1; }
.mobile-menu a:nth-child(2) { transition-delay: 0.04s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.08s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.12s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.16s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.2s; }
.mobile-menu .menu-phone { color: var(--green-deep); border: none; font-size: 1.4rem; margin-top: 1.4rem; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.wrap-wide { width: min(1400px, calc(100% - 32px)); margin: 0 auto; }
section { position: relative; }

/* ---------- Photo placeholders ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 18% 12%, #E4F2E5 0%, transparent 55%),
    radial-gradient(100% 100% at 85% 88%, #C9E6CD 0%, transparent 60%),
    linear-gradient(150deg, #EDF6EE 0%, #D8ECDA 48%, #BFE0C4 100%);
}
.ph::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(30, 110, 39, 0.5);
  border: 1px dashed rgba(30, 110, 39, 0.3);
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  white-space: nowrap;
  background: rgba(255,255,255,0.4);
}
.ph .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 130px 0 56px;
  position: relative;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg .ph { position: absolute; inset: 0; }
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(246,250,246,0.15) 0%, rgba(246,250,246,0) 40%, rgba(246,250,246,0.55) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  align-items: end;
  gap: 2rem;
  width: 100%;
}
.hero-panel { padding: clamp(2rem, 4vw, 3.2rem); }
.hero-panel .display { margin: 0.4rem 0 1.2rem; }
.hero-panel .lede { margin-bottom: 2rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-side { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.3rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(66,173,77,0.2); }
.hero-scroll {
  display: none;
}
@keyframes drift { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ---------- Editorial intro ---------- */
.editorial { padding: clamp(5rem, 10vw, 9rem) 0; }
.editorial-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.editorial .statement {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.22;
}
.editorial .statement .green { color: var(--green-deep); }
.editorial-aside { display: flex; flex-direction: column; gap: 1.6rem; padding-top: 0.8rem; }

/* ---------- Stats strip ---------- */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 2.2rem clamp(1.5rem, 4vw, 3rem);
}
.stat .num { font-size: 2.1rem; font-weight: 650; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.stat .num em { font-style: normal; color: var(--green); }
.stat .lbl { font-size: 0.8rem; color: var(--gray); margin-top: 0.45rem; letter-spacing: 0.02em; }

/* ---------- Service feature (asymmetric split) ---------- */
.feature { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.feature-inner { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; }
.feature .ph {
  grid-column: 1 / 9;
  grid-row: 1;
  aspect-ratio: 16 / 10.5;
  border-radius: var(--radius);
}
.feature-panel {
  grid-column: 7 / 13;
  grid-row: 1;
  padding: clamp(1.8rem, 3.4vw, 3rem);
  z-index: 2;
}
.feature.rev .ph { grid-column: 5 / 13; }
.feature.rev .feature-panel { grid-column: 1 / 7; }
.feature-panel .eyebrow { margin-bottom: 0.7rem; }
.feature-panel h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 0.9rem; }
.feature-panel p { color: var(--gray); margin-bottom: 1.5rem; max-width: 48ch; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.feature-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  background: rgba(66, 173, 77, 0.1);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}

/* ---------- Green band ---------- */
.band {
  background:
    radial-gradient(130% 160% at 12% 0%, rgba(255,255,255,0.16) 0%, transparent 50%),
    linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}
.band .ghost {
  position: absolute;
  right: -2%; bottom: -6%;
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.band h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); letter-spacing: -0.035em; margin-bottom: 1.2rem; }
.band .lede { color: rgba(255,255,255,0.85); }
.band-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; }
.band-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.band-contact a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.6rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.band-contact a:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.band-contact .k { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }
.band-contact .v { font-size: 1.25rem; font-weight: 650; letter-spacing: -0.01em; }

/* ---------- Numbered editorial list ---------- */
.why { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--off); }
.why-head { max-width: 700px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.why-list { border-top: 1px solid var(--line); }
.why-item {
  display: grid;
  grid-template-columns: 90px 1fr 1.3fr;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left 0.35s var(--ease);
}
.why-item:hover { padding-left: 0.8rem; }
.why-item .no { font-size: 0.95rem; font-weight: 600; color: var(--green); }
.why-item h3 { font-size: 1.45rem; }
.why-item p { color: var(--gray); font-size: 1rem; }

/* ---------- Area section ---------- */
.area { padding: clamp(5rem, 10vw, 9rem) 0; }
.area-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.area .ph { aspect-ratio: 4 / 4.6; border-radius: var(--radius); }
.towns { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.8rem 0 2rem; }
.towns span {
  font-size: 0.88rem;
  font-weight: 550;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--mist);
  color: var(--green-ink);
  transition: background 0.25s, transform 0.25s var(--ease);
}
.towns span:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: left;
  padding: 1.6rem 0;
  cursor: pointer;
}
.faq-q .ico {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 500;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}
.faq-item.open .ico { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { color: var(--gray); padding: 0 3rem 1.6rem 0; max-width: 66ch; }

/* ---------- CTA panel ---------- */
.cta-sec { padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem); position: relative; }
.cta-sec .ph { position: absolute; inset: 0; z-index: -1; }
.cta-panel {
  max-width: 660px;
  padding: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-left: clamp(0rem, 4vw, 3rem);
}
.cta-panel h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 1rem; }
.cta-panel p { color: var(--gray); margin-bottom: 1.8rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: 175px 0 clamp(3rem, 6vw, 5rem); position: relative; }
.page-hero .display { max-width: 15ch; }
.page-hero .lede { max-width: 58ch; margin-top: 1.4rem; }
.page-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 70% at 88% 8%, rgba(66,173,77,0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--off) 0%, var(--white) 90%);
}
.crumb { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 1.6rem; display: flex; gap: 0.6rem; }
.crumb a { color: var(--green-deep); }
.crumb span { opacity: 0.5; }

/* ---------- Service detail ---------- */
.detail-photo { padding: 0 0 clamp(3rem, 6vw, 5rem); }
.detail-photo .ph { aspect-ratio: 21 / 9; border-radius: var(--radius); }
.detail-body { padding-bottom: clamp(4rem, 8vw, 7rem); }
.detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.detail-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin: 2.6rem 0 1rem; }
.detail-copy h2:first-child { margin-top: 0; }
.detail-copy p { color: var(--gray); margin-bottom: 1.1rem; }
.detail-copy ul { margin: 1.2rem 0 1.6rem; display: grid; gap: 0.7rem; }
.detail-copy ul li { display: flex; gap: 0.8rem; align-items: baseline; color: var(--ink); font-weight: 500; }
.detail-copy ul li::before { content: "—"; color: var(--green); font-weight: 700; flex: 0 0 auto; }
.detail-side { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 1.2rem; }
.side-panel { padding: 2rem; }
.side-panel h3 { font-size: 1.2rem; margin-bottom: 0.9rem; }
.side-panel .big-phone { font-size: 1.55rem; font-weight: 700; letter-spacing: -0.02em; color: var(--green-deep); display: block; margin-bottom: 0.3rem; }
.side-panel .note { font-size: 0.88rem; color: var(--gray); }
.side-panel .btn { margin-top: 1.2rem; width: 100%; justify-content: center; }
.side-links { padding: 1.6rem 2rem; }
.side-links h4 { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.9rem; }
.side-links a { display: block; padding: 0.55rem 0; font-weight: 550; border-bottom: 1px solid var(--line); font-size: 0.95rem; transition: color 0.2s, padding-left 0.25s var(--ease); }
.side-links a:hover { color: var(--green-deep); padding-left: 0.4rem; }
.side-links a:last-child { border-bottom: none; }

/* ---------- Services hub ---------- */
.hub-list { display: grid; gap: 1.2rem; padding-bottom: clamp(4rem, 8vw, 7rem); }
.hub-item {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.hub-item:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(20,61,25,0.25); }
.hub-item:nth-child(even) { grid-template-columns: 1.1fr 1fr; }
.hub-item:nth-child(even) .ph { order: 2; }
.hub-item .ph { min-height: 280px; }
.hub-body { padding: clamp(1.8rem, 3.5vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.hub-body .idx { font-size: 0.85rem; font-weight: 600; color: var(--green); margin-bottom: 0.8rem; }
.hub-body h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom: 0.8rem; }
.hub-body p { color: var(--gray); margin-bottom: 1.4rem; max-width: 52ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; padding-bottom: clamp(4rem, 8vw, 7rem); }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-row { padding: 1.6rem 1.9rem; }
.info-row .k { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.35rem; }
.info-row .v { font-size: 1.3rem; font-weight: 650; letter-spacing: -0.015em; }
.info-row .v a:hover { color: var(--green-deep); }
.info-row .s { font-size: 0.88rem; color: var(--gray); margin-top: 0.3rem; }
.form-panel { padding: clamp(1.8rem, 3.5vw, 2.8rem); }
.form-panel h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.form-panel .sub { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.8rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.f-field { margin-bottom: 0.9rem; }
.f-field label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.4rem; color: var(--ink); }
.f-field input, .f-field select, .f-field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.98rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.75);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.f-field textarea { resize: vertical; min-height: 110px; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(66,173,77,0.14);
}
.form-panel .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-ok { display: none; text-align: center; padding: 3rem 1rem; }
.form-ok h3 { color: var(--green-deep); margin-bottom: 0.6rem; }

/* ---------- Footer ---------- */
footer {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-ink) 100%);
  color: #fff;
  padding: clamp(4rem, 8vw, 6.5rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.foot-cta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 2rem; padding-bottom: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid rgba(255,255,255,0.14); }
.foot-cta h2 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.035em; max-width: 14ch; }
.foot-cta h2 em { font-style: normal; color: var(--green-bright); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.5rem; padding: clamp(2.5rem, 5vw, 4rem) 0; }
.foot-grid h4 { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1.1rem; font-weight: 600; }
.foot-grid a, .foot-grid p { display: block; color: rgba(255,255,255,0.85); font-size: 0.95rem; padding: 0.28rem 0; transition: color 0.2s; }
.foot-grid a:hover { color: #fff; }
.foot-brand .mark { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; margin-bottom: 0.6rem; }
.foot-brand p { max-width: 34ch; color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.foot-phone { font-size: 1.15rem !important; font-weight: 650; color: #fff !important; }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.foot-base a { color: rgba(255,255,255,0.65); }
.foot-watermark {
  position: absolute;
  left: 50%; bottom: -0.28em;
  transform: translateX(-50%);
  font-size: clamp(5rem, 15.5vw, 14.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.045);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ---------- Sticky mobile call bar ---------- */
.call-fab {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 90;
  gap: 0.7rem;
}
.call-fab a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.05rem;
  border-radius: 18px;
  font-weight: 700;
  font-size: 0.95rem;
}
.call-fab .cf-call { background: var(--green); color: #fff; box-shadow: 0 16px 40px -12px rgba(47,145,57,0.65); }
.call-fab .cf-quote {
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--ink);
  box-shadow: 0 16px 40px -18px rgba(20,61,25,0.4);
}

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .hero { padding-top: 108px; align-items: flex-end; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; align-items: center; justify-content: flex-start; flex-wrap: wrap; }
  .editorial-grid, .area-grid, .detail-grid, .contact-grid, .band-grid { grid-template-columns: 1fr; }
  .feature-inner { display: flex; flex-direction: column; gap: 0; }
  .feature .ph { width: 100%; aspect-ratio: 16 / 11; border-radius: var(--radius) var(--radius) 0 0; }
  .feature-panel { width: calc(100% - 32px); margin: -60px auto 0; }
  .why-item { grid-template-columns: 48px 1fr; }
  .why-item p { grid-column: 2; }
  .hub-item, .hub-item:nth-child(even) { grid-template-columns: 1fr; }
  .hub-item:nth-child(even) .ph { order: 0; }
  .hub-item .ph { min-height: 210px; }
  .detail-side { position: static; }
  .area .ph { aspect-ratio: 16 / 10; }
  .detail-photo .ph { aspect-ratio: 16 / 10; }
  .call-fab { display: flex; }
  footer { padding-bottom: 108px; }
  .f-row { grid-template-columns: 1fr; }
  .cta-panel { margin-left: 0; }
  .band .ghost { display: none; }
}

/* ============================================================
   V2 REFINEMENTS — texture, depth, micro-details
   ============================================================ */

/* Film grain over everything — makes it feel printed, not rendered */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.045'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Glass: cursor-tracking inner light */
.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.32), transparent 62%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
@media (hover: hover) { .glass:hover::after { opacity: 1; } }
.glass { box-shadow: 0 28px 70px -34px rgba(20, 61, 25, 0.28), 0 0 0 1px rgba(255,255,255,0.25), inset 0 1px 0 rgba(255,255,255,0.9), inset 0 -1px 0 rgba(255,255,255,0.2); }

/* Nav: fully round, textured, edge-lit */
.nav {
  border-radius: 100px;
  padding: 0.6rem 0.7rem 0.6rem 0.8rem;
  background: linear-gradient(120deg, rgba(255,255,255,0.5), rgba(255,255,255,0.34) 55%, rgba(255,255,255,0.46));
  -webkit-backdrop-filter: blur(26px) saturate(1.7);
  backdrop-filter: blur(26px) saturate(1.7);
  box-shadow: 0 18px 50px -26px rgba(20,61,25,0.4), 0 0 0 1px rgba(255,255,255,0.3), inset 0 1px 0 rgba(255,255,255,0.95), inset 0 -1px 0 rgba(255,255,255,0.2);
}
.nav::before {
  content: "";
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
  border-radius: 1px;
}
.nav.scrolled { background: linear-gradient(120deg, rgba(255,255,255,0.88), rgba(255,255,255,0.78) 55%, rgba(255,255,255,0.86)); }
.nav-brand { flex-direction: row; align-items: center; gap: 0.7rem; }
.nav-mark {
  width: 40px; height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green-bright) 0%, var(--green-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 18px -8px rgba(47,145,57,0.7), inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -4px 8px rgba(0,0,0,0.12);
}
.nav-brand .txt { display: flex; flex-direction: column; line-height: 1.05; }

/* Buttons: sheen sweep */
.btn { position: relative; overflow: hidden; }
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease);
}
.btn-primary:hover::before { left: 130%; }

/* Eyebrow: leading rule */
.eyebrow { display: inline-flex; align-items: center; gap: 0.8rem; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.55; flex: 0 0 auto; }
.crumb .eyebrow::before { display: none; }

/* Hero v2 — full-bleed drone footage, panel anchored low-left */
.hero-grid { display: block; max-width: 640px; }
.hero-panel { padding: clamp(2rem, 3.6vw, 3rem); border-radius: 36px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(22, 26, 23, 0.1);
}
.hero-meta .m .k { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); }
.hero-meta .m .v { font-size: 0.92rem; font-weight: 600; margin-top: 0.15rem; }
.hero-meta .m .v a:hover { color: var(--green-deep); }
.hero-badge {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(70px, 8vh, 96px);
  width: 118px; height: 118px;
  z-index: 3;
}
.hero-badge svg { width: 100%; height: 100%; animation: spin 26s linear infinite; overflow: visible; }
.hero-badge text { font-size: 9.5px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; fill: var(--green-ink); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-badge .hb-core {
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--green-deep);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Stats strip: bridges hero → content */
.stats-sec { position: relative; z-index: 6; margin-top: -62px; }
.stats-sec .stats { justify-content: space-between; }
.stat { position: relative; padding-left: 1.2rem; }
.stat::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; border-radius: 2px; background: linear-gradient(180deg, var(--green-bright), rgba(66,173,77,0.15)); }

/* Photo caption chips */
.ph-chip {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-ink);
  padding: 0.55rem 1rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}
.ph-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* Services flow: gentle tonal drift between features */
.svc-flow { background: linear-gradient(180deg, #fff 0%, #F4F9F4 30%, #F4F9F4 70%, #fff 100%); padding: clamp(1.5rem, 3vw, 3rem) 0; }

/* Page hero ghost word */
.page-hero .ghost-word {
  position: absolute;
  right: -1.5%;
  bottom: -0.05em;
  z-index: -1;
  font-size: clamp(4.5rem, 13vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(66, 173, 77, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* Why list: hover arrow + refined numbers */
.why-item { position: relative; }
.why-item .no {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(66, 173, 77, 0.35);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.why-item:hover .no { background: var(--green); color: #fff; border-color: var(--green); }
.why-item::after {
  content: "\2192";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translate(-8px, -50%);
  color: var(--green);
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.why-item:hover::after { opacity: 1; transform: translate(0, -50%); }

/* Detail pages: h2 tick rules + lead paragraph emphasis */
.detail-copy h2::before { content: ""; display: block; width: 42px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--green), var(--green-bright)); margin-bottom: 0.9rem; }
.detail-copy > p:first-of-type { font-size: 1.16rem; color: var(--ink); line-height: 1.62; }
.detail-copy ul li { padding: 0.85rem 1.1rem; border-radius: 14px; background: var(--off); border: 1px solid var(--line); transition: transform 0.25s var(--ease), border-color 0.25s; }
.detail-copy ul li:hover { transform: translateX(4px); border-color: rgba(66,173,77,0.35); }
.detail-copy ul li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); align-self: center; }

/* Hub items: arrow disc */
.hub-body .text-link { margin-top: auto; }
.hub-item { position: relative; }
.hub-item::after {
  content: "\2192";
  position: absolute;
  right: 26px; top: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--green-deep);
  font-size: 1.15rem;
  box-shadow: 0 10px 24px -12px rgba(20,61,25,0.3);
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}
.hub-item:hover::after { transform: rotate(-45deg); background: var(--green); color: #fff; }

/* Band: glass edge + texture */
.band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); }

/* FAQ: containerize */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { transition: padding-left 0.3s var(--ease); }
.faq-item.open { padding-left: 0.6rem; }

/* Footer: edge light */
footer::before { content: ""; position: absolute; top: 0; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent); }
.foot-grid a { position: relative; width: fit-content; }
.foot-grid a:hover { transform: translateX(3px); transition: transform 0.25s var(--ease); }

@media (max-width: 860px) {
  .hero-badge { display: none; }
  .stats-sec { margin-top: -40px; }
  .stats-sec .stats { gap: 1.2rem 2rem; }
  .hero-meta { gap: 1rem 1.6rem; }
  .page-hero .ghost-word { font-size: 5rem; bottom: 0.2em; }
  .hub-item::after { display: none; }
  .why-item::after { display: none; }
}

/* ============================================================
   V3 — DRAMATIC PASS: cinematic hero, pill nav, rich media art,
   sheet stacking, serif editorial accents
   ============================================================ */

:root { --radius-lg: clamp(28px, 4vw, 52px); }

/* Serif italic editorial accents */
.it, .display .green {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.display { font-size: clamp(3rem, 7.4vw, 6rem); }
h2.sec-title { font-size: clamp(2.3rem, 5vw, 4.1rem); }
.editorial .statement { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: #BFDCC3; border-radius: 8px; border: 2px solid var(--off); }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ---------- NAV → segmented floating glass pills ---------- */
.nav, .nav.scrolled {
  background: none;
  border: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  gap: 0.8rem;
}
.nav::before { display: none; }
.nav .pill {
  display: flex;
  align-items: center;
  height: 56px;
  border-radius: 100px;
  background: linear-gradient(120deg, rgba(255,255,255,0.6), rgba(255,255,255,0.4) 55%, rgba(255,255,255,0.55));
  -webkit-backdrop-filter: blur(26px) saturate(1.8);
  backdrop-filter: blur(26px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 46px -22px rgba(8, 38, 12, 0.5), inset 0 1px 0 rgba(255,255,255,0.95), inset 0 -1px 0 rgba(255,255,255,0.25);
  position: relative;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav .pill::before {
  content: "";
  position: absolute;
  top: 0; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
  border-radius: 1px;
}
.nav.scrolled .pill { background: linear-gradient(120deg, rgba(255,255,255,0.92), rgba(255,255,255,0.84) 55%, rgba(255,255,255,0.9)); }
.nav-brand { padding: 0 1.25rem 0 0.5rem; gap: 0.65rem; }
.nav-links { padding: 0 1.7rem; }
.nav-cta { padding: 0 0.4rem 0 1.25rem; gap: 0.9rem; }
.nav .btn { border-radius: 100px; padding: 0.66rem 1.35rem; }
.nav-mark { width: 42px; height: 42px; }
.nav-burger { width: 42px; height: 42px; }

/* ---------- Rich simulated-photography placeholders ---------- */
.ph-rich::before, .ph-aerial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(85% 60% at 82% -4%, rgba(255, 243, 205, 0.42) 0%, transparent 58%),
    radial-gradient(130% 95% at 50% 112%, rgba(3, 18, 6, 0.58) 0%, transparent 58%);
  pointer-events: none;
}
.ph-rich::after, .ph-aerial::after {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
  background: rgba(8, 30, 12, 0.3);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.ph-aerial {
  background:
    repeating-linear-gradient(108deg, rgba(8, 32, 12, 0.15) 0 3px, transparent 3px 38px),
    linear-gradient(158deg, #93C897 0%, #5AA765 26%, #35854A 55%, #1B5A2C 82%, #124420 100%);
}
.ph-a {
  background:
    repeating-linear-gradient(75deg, rgba(10, 36, 14, 0.1) 0 2px, transparent 2px 46px),
    linear-gradient(150deg, #A4D2A6 0%, #5FAB6A 38%, #2E7C3E 72%, #1D5B2B 100%);
}
.ph-b {
  background:
    repeating-linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 26px),
    linear-gradient(150deg, #9AD6C0 0%, #4FAE94 38%, #1F7D6B 72%, #115147 100%);
}
.ph-c {
  background:
    repeating-linear-gradient(100deg, rgba(6, 24, 10, 0.14) 0 3px, transparent 3px 52px),
    linear-gradient(155deg, #7FB489 0%, #437F52 42%, #245B33 76%, #143D1F 100%);
}
.ph-d {
  background:
    radial-gradient(70% 55% at 20% 8%, rgba(255, 214, 140, 0.35) 0%, transparent 60%),
    repeating-linear-gradient(82deg, rgba(30, 40, 12, 0.12) 0 2px, transparent 2px 40px),
    linear-gradient(150deg, #B7C98F 0%, #6FA35F 38%, #3A7A41 70%, #1E5528 100%);
}
.ph-chip { z-index: 3; color: #fff; background: rgba(10, 35, 14, 0.35); border-color: rgba(255,255,255,0.35); }
.ph-chip::before { background: var(--green-bright); }

/* ---------- Hero: cinematic ---------- */
.hero { padding-bottom: 118px; }
.hero-bg .ph {
  animation: kb 30s ease-in-out infinite alternate;
  transform-origin: 62% 38%;
  will-change: transform;
}
@keyframes kb {
  from { transform: scale(1); }
  to { transform: scale(1.09) translate(-1.4%, -1%); }
}
.hero-veil {
  background: linear-gradient(180deg, rgba(6, 24, 9, 0.38) 0%, rgba(6, 24, 9, 0.08) 24%, rgba(6, 24, 9, 0) 46%, rgba(6, 24, 9, 0.46) 100%);
}
.hero-panel {
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(30px) saturate(1.65);
  backdrop-filter: blur(30px) saturate(1.65);
  border-radius: 40px;
  box-shadow: 0 44px 100px -42px rgba(3, 22, 7, 0.65), 0 0 0 1px rgba(255,255,255,0.35), inset 0 1px 0 rgba(255,255,255,0.95), inset 0 -1px 0 rgba(255,255,255,0.3);
  will-change: transform;
  transition: transform 0.2s ease-out;
}
.hero-scroll { color: rgba(255,255,255,0.9); bottom: 76px; display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), transparent);
}
.hero-badge { bottom: 150px; }
.hero-badge text { fill: rgba(255,255,255,0.95); }
.hero-badge .hb-core {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

/* ---------- Sheet: content slides over the footage ---------- */
.sheet {
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: calc(-1 * var(--radius-lg));
  box-shadow: 0 -36px 80px -46px rgba(3, 20, 7, 0.65);
  overflow: hidden;
}
.sheet::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 4px;
  border-radius: 4px;
  background: rgba(20, 61, 25, 0.12);
}
.stats-sec { margin-top: 0; padding-top: clamp(1rem, 2vw, 1.6rem); }
.stats-sec .stats {
  background: linear-gradient(120deg, #F5FAF5, #ECF5ED);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: inset 0 1px 0 #fff, 0 20px 50px -35px rgba(20, 61, 25, 0.35);
}

/* ---------- Band: inset green slab with light streaks ---------- */
.band {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  border-radius: var(--radius-lg);
}
.band .wrap { width: min(1240px, calc(100% - clamp(3rem, 7vw, 7rem))); }
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 110px);
  pointer-events: none;
}

/* ---------- Why: dot-grid texture ---------- */
.why {
  background-color: var(--off);
  background-image: radial-gradient(rgba(20, 61, 25, 0.06) 1px, transparent 1.4px);
  background-size: 24px 24px;
}

/* ---------- Footer: floating slab ---------- */
footer {
  width: min(1440px, calc(100% - 24px));
  margin: clamp(2rem, 4vw, 3.5rem) auto 14px;
  border-radius: var(--radius-lg);
}

@media (max-width: 860px) {
  .nav { top: 12px; gap: 0.5rem; }
  .nav .pill { height: 52px; }
  .nav-cta { padding: 0; width: 52px; justify-content: center; }
  .nav-cta .btn { display: none; }
  .nav-brand { padding-right: 1rem; }
  .hero { padding-bottom: 96px; }
  .hero-scroll { display: none; }
  .hero-panel { border-radius: 30px; }
  .sheet { border-radius: 26px 26px 0 0; margin-top: -26px; }
  .band { width: calc(100% - 20px); }
  footer { width: calc(100% - 16px); margin-bottom: 10px; }
}

/* ============================================================
   V4 — gray smoked-glass nav, chip overlap fix, water band
   ============================================================ */

/* Old dashed label pills hide wherever a glass chip exists */
.ph:has(.ph-chip)::after { display: none; }
/* Hero label: tuck to the right so it never collides with the panel */
.hero-bg .ph::after { left: auto; right: 6%; top: 34%; transform: none; }

/* ---------- Nav: smoked gray glass pills ---------- */
.nav .pill {
  background: linear-gradient(120deg, rgba(26, 32, 28, 0.55), rgba(26, 32, 28, 0.4) 55%, rgba(26, 32, 28, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 46px -20px rgba(3, 14, 6, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}
.nav .pill::before { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent); }
.nav.scrolled .pill {
  background: linear-gradient(120deg, rgba(20, 25, 21, 0.82), rgba(20, 25, 21, 0.72) 55%, rgba(20, 25, 21, 0.8));
  border-color: rgba(255, 255, 255, 0.16);
}
.nav-brand .mark { color: #fff; }
.nav-brand .mark em { color: var(--green-bright); }
.nav-brand .sub { color: rgba(255, 255, 255, 0.6); }
.nav-links a { color: rgba(255, 255, 255, 0.92); }
.nav-links a:hover { color: #fff; }
.nav-phone { color: #fff; }
.nav-phone span { color: #fff; }
.nav-burger span { background: #fff; }

/* ---------- Emergency band: pure-water photo backdrop ---------- */
.band { background: linear-gradient(135deg, #157F74, #0A4A47); }
.band-media {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
}
.band-media .ph { position: absolute; inset: 0; }
.ph-water {
  background:
    radial-gradient(70% 45% at 72% 0%, rgba(255, 255, 255, 0.3) 0%, transparent 55%),
    repeating-radial-gradient(circle at 28% 130%, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 30px),
    repeating-linear-gradient(168deg, rgba(255, 255, 255, 0.045) 0 3px, transparent 3px 44px),
    linear-gradient(155deg, #35A895 0%, #17847A 34%, #0C625F 68%, #063F41 100%);
}
.band-media .ph::after {
  left: auto; right: 24px; top: 24px; transform: none;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(4, 34, 32, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.band-veil {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(3, 30, 28, 0.82) 0%, rgba(3, 30, 28, 0.6) 45%, rgba(3, 30, 28, 0.3) 100%);
  z-index: 1;
}
.band .wrap, .band .ghost { position: relative; z-index: 2; }
.band::after { z-index: 2; }
.band-contact a {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.band-contact a:hover { background: rgba(255, 255, 255, 0.18); }

/* V4.1 — real photos: hide placeholder labels when an actual image is present */
.ph:has(.ph-img)::after { display: none; }
.band-media .ph-img { object-position: center 40%; }

/* V4.2 — mobile fixes: nav pills, hero label */
@media (max-width: 1080px) {
  .nav .nav-links.pill { display: none; }
  .nav .nav-phone { display: none; }
}
@media (max-width: 860px) {
  .hero-bg .ph::after { display: none; }
  .hero-meta { padding-bottom: 0.5rem; }
}

/* ============================================================
   V4.3 — remove diagonal line textures from all photo art,
   fix duplicate chip text on mobile service cards
   ============================================================ */

/* No streak overlay on the emergency band (real photo now) */
.band::after { display: none; }

/* Placeholder art: clean gradients only — no diagonal lines */
.ph-aerial {
  background:
    radial-gradient(85% 60% at 82% -4%, rgba(255, 243, 205, 0.3) 0%, transparent 58%),
    linear-gradient(158deg, #93C897 0%, #5AA765 26%, #35854A 55%, #1B5A2C 82%, #124420 100%);
}
.ph-a { background: linear-gradient(150deg, #A4D2A6 0%, #5FAB6A 38%, #2E7C3E 72%, #1D5B2B 100%); }
.ph-b { background: linear-gradient(150deg, #9AD6C0 0%, #4FAE94 38%, #1F7D6B 72%, #115147 100%); }
.ph-c { background: linear-gradient(155deg, #7FB489 0%, #437F52 42%, #245B33 76%, #143D1F 100%); }
.ph-d {
  background:
    radial-gradient(70% 55% at 20% 8%, rgba(255, 214, 140, 0.3) 0%, transparent 60%),
    linear-gradient(150deg, #B7C98F 0%, #6FA35F 38%, #3A7A41 70%, #1E5528 100%);
}
.ph-water {
  background:
    radial-gradient(70% 45% at 72% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 55%),
    linear-gradient(155deg, #35A895 0%, #17847A 34%, #0C625F 68%, #063F41 100%);
}

/* Mobile: glass panel overlaps the photo, so the photo chip duplicates
   the panel eyebrow — hide the chip on small screens */
@media (max-width: 860px) {
  .feature .ph-chip { display: none; }
}

/* ============================================================
   V5 — Interactive Napa County service-area map
   ============================================================ */
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  background:
    radial-gradient(rgba(20, 61, 25, 0.05) 1px, transparent 1.4px),
    linear-gradient(160deg, #F4FAF4 0%, #E7F3E9 100%);
  background-size: 26px 26px, cover;
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 #fff, 0 34px 70px -44px rgba(20, 61, 25, 0.4);
  overflow: hidden;
  padding: clamp(1rem, 2.5vw, 2rem);
}
.map-wrap svg { display: block; width: 100%; height: auto; overflow: visible; }

/* county + water */
.map-wrap .county { fill: url(#cf); stroke: #79BD83; stroke-width: 1.6; }
.map-wrap .bay { fill: url(#lakef); opacity: 0.6; }
.map-wrap .lakeb { fill: url(#lakef); stroke: #8FCBC1; stroke-width: 1; }
.map-wrap .river { fill: none; stroke: #9ED2C9; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 1 6; opacity: 0.9; }
.map-wrap .ripple { fill: none; stroke: #8FCBC1; stroke-width: 1; opacity: 0.6; }

/* neighbors + compass */
.map-wrap .nbr text { font-size: 13px; letter-spacing: 0.3em; fill: rgba(20, 61, 25, 0.28); font-weight: 600; }
.map-wrap .compass circle { fill: rgba(255,255,255,0.6); stroke: rgba(20, 61, 25, 0.18); stroke-width: 1; }
.map-wrap .compass path { fill: var(--green-deep); }
.map-wrap .compass text { font-size: 11px; font-weight: 700; fill: var(--green-ink); text-anchor: middle; letter-spacing: 0.1em; }

/* routes */
.map-wrap .route {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.4;
  stroke-dasharray: 2 9;
  stroke-linecap: round;
  opacity: 0.3;
  animation: flow 26s linear infinite;
}
@keyframes flow { to { stroke-dashoffset: -440; } }

/* markers */
.map-wrap .mk { cursor: pointer; }
.map-wrap .mk .dot {
  fill: var(--green);
  stroke: #fff;
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.3s var(--ease), fill 0.3s;
  filter: drop-shadow(0 3px 5px rgba(20, 61, 25, 0.35));
}
.map-wrap .mk text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  fill: #41584594;
  fill: #415845;
  paint-order: stroke;
  stroke: rgba(244, 250, 244, 0.85);
  stroke-width: 3px;
  transition: fill 0.25s;
}
.map-wrap .mk.ae text { text-anchor: end; }
.map-wrap .mk:hover .dot, .map-wrap .mk.hot .dot { transform: scale(1.7); fill: var(--green-deep); }
.map-wrap .mk:hover text, .map-wrap .mk.hot text { fill: var(--green-ink); }

/* HQ pulse */
.map-wrap .hq .dot { fill: var(--green-deep); }
.map-wrap .hq text { font-size: 14.5px; font-weight: 700; fill: var(--green-ink); }
.map-wrap .hq .ring {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.4;
  opacity: 0.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: hqpulse 3s var(--ease) infinite;
}
.map-wrap .hq .ring.r2 { animation-delay: 1.5s; }
@keyframes hqpulse {
  0% { transform: scale(0.55); opacity: 0.65; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* legend + tooltip */
.map-legend {
  position: absolute;
  left: 18px; bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-ink);
  padding: 0.6rem 1.05rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 12px 28px -14px rgba(20,61,25,0.35), inset 0 1px 0 #fff;
}
.map-legend .lg-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(66, 173, 77, 0.22);
}
.map-tip {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(18, 24, 19, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 40px -16px rgba(5, 20, 8, 0.6);
  transform: translate(-50%, -130%);
  transition: opacity 0.2s var(--ease);
  max-width: 220px;
}
.map-tip strong { display: block; color: #fff; font-size: 0.92rem; letter-spacing: -0.01em; }
.map-tip span { display: block; color: rgba(255,255,255,0.72); font-size: 0.78rem; margin-top: 0.15rem; }
.map-tip::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(18, 24, 19, 0.88);
  border-right: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
@media (max-width: 860px) {
  .map-wrap { padding: 0.8rem; }
  .map-wrap .mk text { font-size: 15px; }
  .map-wrap .nbr text { font-size: 14px; }
  .map-legend { left: 10px; bottom: 10px; font-size: 0.7rem; }
}
.towns span.hot-chip { background: var(--green); color: #fff; transform: translateY(-2px); }

/* ============================================================
   V6 — REAL cartography: census boundaries, OSM lake, graticule
   ============================================================ */
.map-wrap svg { overflow: hidden; }
.map-wrap .water { fill: #D3E9E3; opacity: 0.5; }
.map-wrap .ncounty { fill: #ECF2EC; stroke: #C2D8C5; stroke-width: 1; }
.map-wrap .county { stroke: #47A055; stroke-width: 2; }
.map-wrap .lakeb { stroke: #6FB9AE; stroke-width: 0.8; }
.map-wrap .grid line { stroke: rgba(20, 61, 25, 0.07); stroke-width: 1; stroke-dasharray: 1 5; }
.map-wrap .gridlab text { font-size: 10px; fill: rgba(20, 61, 25, 0.32); letter-spacing: 0.1em; font-weight: 600; }
.map-wrap .scalebar line { stroke: rgba(20, 61, 25, 0.5); stroke-width: 1.5; }
.map-wrap .scalebar text { font-size: 10px; fill: rgba(20, 61, 25, 0.55); text-anchor: middle; font-weight: 600; letter-spacing: 0.1em; }

/* ============================================================
   Owner / Kevin Bingham section
   ============================================================ */
.owner-sec { padding: clamp(3rem, 7vw, 6rem) 0; }
.owner-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.owner-family-ph {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  width: 100%;
}
.owner-card {
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.owner-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 12px 30px -14px rgba(20,61,25,0.45), 0 0 0 1px rgba(66,173,77,0.25);
  overflow: hidden;
  margin-bottom: 1.4rem;
  flex: 0 0 auto;
}
.owner-avatar-ph {
  width: 100%; height: 100%;
  border-radius: 50%;
  position: relative;
}
.owner-avatar-ph::after {
  font-size: 0.52rem;
  padding: 0.35rem 0.6rem;
  white-space: nowrap;
}
.owner-card .eyebrow { margin-bottom: 0.4rem; }
.owner-name {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.owner-copy {
  color: var(--gray);
  line-height: 1.65;
  font-size: 1.04rem;
  margin-bottom: 1.6rem;
}
.owner-since {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  margin-bottom: 1.4rem;
}
.since-num {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
}
.since-lbl {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.owner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.owner-chips span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  background: rgba(66,173,77,0.09);
  border: 1px solid rgba(66,173,77,0.2);
  padding: 0.38rem 0.85rem;
  border-radius: 100px;
}
@media (max-width: 860px) {
  .owner-grid { grid-template-columns: 1fr; }
  .owner-family-ph { aspect-ratio: 16 / 10; }
  .owner-avatar { width: 80px; height: 80px; }
}

/* ============================================================
   Brief About section — homepage
   ============================================================ */
.brief-about { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--off); position: relative; overflow: hidden; }
.brief-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20,61,25,0.05) 1px, transparent 1.4px);
  background-size: 24px 24px;
  pointer-events: none;
}
.brief-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5.5vw, 5rem);
  align-items: center;
}
.brief-about-photo { position: relative; }
.brief-family-ph {
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius);
  width: 100%;
}
.brief-kevin-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.3rem 0.9rem 0.85rem;
  border-radius: 100px;
}
.brief-kevin-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px -8px rgba(20,61,25,0.45);
}
.brief-kevin-ph {
  width: 100%; height: 100%;
  border-radius: 50%;
}
.brief-kevin-ph::after { font-size: 0.42rem; padding: 0.28rem 0.5rem; }
.brief-kevin-info { display: flex; flex-direction: column; white-space: nowrap; }
.brief-kevin-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); }
.brief-kevin-name { font-size: 1rem; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.brief-about-body { display: flex; flex-direction: column; gap: 0; }
.brief-about-body .eyebrow { margin-bottom: 1rem; }
.brief-about-body .sec-title { margin-bottom: 1.4rem; }
.brief-lede {
  font-size: 1.15rem;
  line-height: 1.62;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 400;
}
.brief-about-body .body-copy { margin-bottom: 1.8rem; }
@media (max-width: 860px) {
  .brief-about-grid { grid-template-columns: 1fr; }
  .brief-family-ph { aspect-ratio: 16 / 10; }
  .brief-kevin-badge { right: 12px; bottom: -18px; }
}

/* ============================================================
   Real logo in nav
   ============================================================ */
.nav-logo-pill {
  padding: 0 0.75rem !important;
  height: 56px;
  min-width: auto;
}
.nav-logo {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
@media (max-width: 860px) {
  .nav-logo { height: 36px; }
  .nav-logo-pill { height: 52px; padding: 0 0.6rem !important; }
}

/* ---------- Hero drone video ---------- */
.ph.has-video::after { display: none; }
.hero-bg .ph.has-video { animation: none; }
.hero-bg .ph.has-video .ph-img { object-fit: cover; }

/* ---------- Mobile hero: video flush to top, badge over video, color behind card ---------- */
@media (max-width: 860px) {
  .hero {
    display: block; min-height: 0; padding: 0 0 56px;
    background:
      radial-gradient(130% 80% at 10% 24%, #DFF0E1 0%, transparent 58%),
      radial-gradient(110% 90% at 92% 88%, #B8DDBF 0%, transparent 62%),
      linear-gradient(168deg, #EDF6EE 0%, #D8ECDA 52%, #BFE0C4 100%);
  }
  .hero-bg { position: relative; inset: auto; z-index: 0; }
  .hero-bg .ph.has-video {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0 0 22px 22px;
  }
  .hero-veil { display: none; }
  .hero .wrap { margin-top: 1.5rem; }
  .hero-panel {
    background: rgba(255, 255, 255, 0.58);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    backdrop-filter: blur(24px) saturate(1.5);
    box-shadow: 0 30px 70px -34px rgba(3, 22, 7, 0.45), 0 0 0 1px rgba(255,255,255,0.4), inset 0 1px 0 rgba(255,255,255,0.9);
  }
  .hero-badge {
    display: block;
    top: calc(56.25vw - 112px);
    right: 14px;
    bottom: auto;
    width: 96px; height: 96px;
    z-index: 6;
  }
  .hero-badge .hb-core { inset: 26px; font-size: 1rem; }
  .hero-badge text { fill: #fff; }
  .hero-scroll { display: none; }
}

/* ---------- Desktop hero: thin horizontal bar at bottom ---------- */
@media (min-width: 861px) {
  .hero { align-items: flex-end; padding: 80px 0 28px; min-height: 100svh; }
  .hero-grid { display: block; max-width: none; width: 100%; margin-top: 0; }
  /* Kill the rv delay entirely — panel must be immediately visible */
  .hero-panel,
  .hero .hero-panel.rv,
  .hero .hero-panel.rv.in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .hero-panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.8rem;
    padding: 0.65rem 1.4rem;
    border-radius: 14px;
    flex-wrap: nowrap;
  }
  .hero-panel .eyebrow { display: none; }
  .hero-panel .display {
    font-size: clamp(1.1rem, 1.5vw, 1.7rem);
    margin: 0;
    white-space: nowrap;
    line-height: 1.15;
    flex-shrink: 0;
  }
  .hero-panel .display br { display: none; }
  .hero-panel .lede { display: none; }
  .hero-actions { margin: 0; flex-shrink: 0; flex-wrap: nowrap; gap: 0.6rem; }
  .hero-meta { margin-left: auto; display: flex; gap: 1.4rem; flex-wrap: nowrap; align-items: center; }
}

/* ---------- Hero entrance animation ---------- */
.hero-bg .ph.has-video .ph-img { animation: heroVidIn 1.6s ease both; }
@keyframes heroVidIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero .hero-panel.rv { transition: none; }
.hero .hero-panel.rv.in { animation: heroPanelIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both; }
@keyframes heroPanelIn {
  from { opacity: 0; transform: translateY(52px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.hero-side { animation: heroPanelIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both; }
.hero-badge { animation: heroBadgeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 1.15s both; }
@keyframes heroBadgeIn {
  from { opacity: 0; transform: scale(0.5) rotate(-60deg); }
  to { opacity: 1; transform: none; }
}

/* ============================================================
   V7 — MASCULINE EDGE
   Sharper geometry. Industrial type. Engineered luxury.
   Squared corners, mono spec labels, heavier display weight.
   ============================================================ */

:root {
  --font: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;
  --ink: #0E110E;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: clamp(12px, 1.6vw, 20px);
}

body { font-family: var(--font); }

/* ---- Type: heavier, tighter, engineered ---- */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.035em; }
.display { font-weight: 750; letter-spacing: -0.04em; }
.display .light { font-weight: 500; }
.serif {
  font-family: var(--font);
  font-style: normal;
  font-weight: 750;
  letter-spacing: -0.04em;
  color: var(--green);
}

/* Eyebrows → mono spec labels */
.eyebrow {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
}
.eyebrow::before { width: 26px; height: 1px; opacity: 0.7; }

/* ---- Buttons: squared, uppercase, commanding ---- */
.btn {
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.05rem 1.8rem;
}
.nav .btn { border-radius: var(--radius-sm); padding: 0.72rem 1.3rem; font-size: 0.76rem; }
.btn-primary { box-shadow: 0 10px 24px -12px rgba(30, 110, 39, 0.6); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(14, 17, 14, 0.22); }

.text-link {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Nav: structural bar, squared badge ---- */
.nav { border-radius: 14px; }
.nav-mark { border-radius: 9px; }
.nav-brand .sub { font-family: var(--mono); letter-spacing: 0.22em; font-weight: 500; }
.nav-links a { font-weight: 600; font-size: 0.9rem; }
.nav-links a::after { border-radius: 0; height: 2px; }

/* ---- Pills → plates: chips, tags, towns ---- */
.chip { border-radius: var(--radius-sm); font-family: var(--mono); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.chip .dot { border-radius: 2px; }
.feature-tags span {
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(30, 110, 39, 0.3);
  color: var(--green-dark);
}
.towns span {
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(20, 61, 25, 0.22);
  color: var(--green-ink);
}
.towns span:hover { background: var(--green-ink); border-color: var(--green-ink); color: #fff; transform: none; }
.ph-chip { border-radius: 4px; font-family: var(--mono); font-weight: 500; letter-spacing: 0.16em; }
.ph-chip::before { border-radius: 1px; }
.ph::after { border-radius: 4px; font-family: var(--mono); }

/* ---- Stats: engineered numerals ---- */
.stat .num { font-weight: 800; letter-spacing: -0.04em; }
.stat .lbl { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }
.stat::before { border-radius: 0; width: 3px; background: var(--green); }

/* ---- Structural numbers & icons: circles → plates ---- */
.why-item .no {
  border-radius: 4px;
  font-family: var(--mono);
  font-weight: 600;
  border-color: rgba(20, 61, 25, 0.3);
}
.faq-q .ico { border-radius: 4px; }
.hub-body .idx { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; }

/* ---- Panels & sheets: tighter geometry ---- */
.hero-panel { border-radius: 16px; }
.glass { box-shadow: 0 22px 50px -30px rgba(14, 17, 14, 0.35), 0 0 0 1px rgba(255,255,255,0.28), inset 0 1px 0 rgba(255,255,255,0.9); }
.band-contact a { border-radius: var(--radius-sm); }
.band-contact .k { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em; }
.info-row .k, .side-links h4, .foot-grid h4, .crumb, .hero-meta .m .k, .brief-kevin-title { font-family: var(--mono); font-weight: 500; }
.detail-copy ul li { border-radius: var(--radius-sm); }
.detail-copy ul li::before { border-radius: 1px; width: 9px; height: 3px; }
.detail-copy h2::before { border-radius: 0; height: 3px; width: 46px; }
.f-field input, .f-field select, .f-field textarea { border-radius: var(--radius-sm); border-color: rgba(14, 17, 14, 0.16); }
.f-field label { font-family: var(--mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.call-fab a { border-radius: var(--radius-sm); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; }

/* ---- Footer: harder edges ---- */
.foot-watermark { font-weight: 800; letter-spacing: -0.05em; }
.band .ghost { font-weight: 800; }
.page-hero .ghost-word { font-weight: 800; text-transform: uppercase; letter-spacing: -0.03em; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar-thumb { border-radius: 3px; }

/* ---- Hero badge: instrument dial feel ---- */
.hero-badge text { font-family: var(--mono); font-weight: 500; letter-spacing: 0.3em; }
.hero-badge .hb-core { border-radius: 10px; inset: 34px; }

/* ---- Mobile ---- */
@media (max-width: 860px) {
  .hero-panel { border-radius: 14px; }
  .sheet { border-radius: 14px 14px 0 0; margin-top: -14px; }
  .mobile-menu a { font-weight: 700; text-transform: uppercase; font-size: 1.6rem; letter-spacing: -0.01em; }
}

/* ---- Kill italic serif accents — bold engineered accents instead ---- */
.it, .display .green {
  font-family: var(--font);
  font-style: normal;
  font-weight: 750;
  letter-spacing: -0.04em;
  color: var(--green-deep);
}
.stat .num em, .foot-cta h2 em, .band h2 em {
  font-family: var(--font);
  font-style: normal;
  font-weight: 800;
}
.owner-name {
  font-family: var(--font);
  font-style: normal;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

/* ============================================================
   V8 — SIGNATURE CUT
   Condensed billboard display type. Outlined ghost marks.
   No eyebrow rule lines. Vintage American hauling — refined.
   ============================================================ */

/* Kill the eyebrow intro lines site-wide */
.eyebrow::before { display: none; }
.eyebrow { gap: 0; }

/* ---- Billboard display type: condensed, heavy, uppercase ---- */
.display,
h2.sec-title,
.band h2,
.foot-cta h2,
.cta-panel h2,
.hub-body h2,
.feature-panel h3,
.owner-name {
  font-stretch: 72%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.94;
}
.display { font-size: clamp(3.4rem, 8.5vw, 7.2rem); }
h2.sec-title { font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
.band h2 { font-size: clamp(2.6rem, 6vw, 5rem); }
.feature-panel h3 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
.hub-body h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

/* Light spans inside display: thin condensed for contrast */
.display .light { font-weight: 350; font-stretch: 72%; }
.display .green, .it { font-stretch: 72%; font-weight: 800; color: var(--green); }

/* Interior headings: strong but sentence-case for readability */
.detail-copy h2, .why-item h3, .form-panel h3, .side-panel h3 {
  font-weight: 700;
  font-stretch: 88%;
  letter-spacing: -0.02em;
}
.detail-copy h2::before { display: none; }

/* ---- Ghost marks: outlined, architectural ---- */
.band .ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.14);
  font-stretch: 72%;
  text-transform: uppercase;
}
.foot-watermark {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  font-stretch: 72%;
  text-transform: uppercase;
}
.page-hero .ghost-word {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(66, 173, 77, 0.16);
  font-stretch: 72%;
}

/* ---- Stats: condensed engineered numerals ---- */
.stat .num {
  font-stretch: 75%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.4rem;
}

/* ---- Buttons: razor edges ---- */
.btn { border-radius: 3px; }
.nav .btn { border-radius: 3px; }
.f-field input, .f-field select, .f-field textarea { border-radius: 3px; }
.chip, .ph-chip, .towns span, .feature-tags span, .why-item .no, .faq-q .ico { border-radius: 3px; }
.call-fab a { border-radius: 4px; }

/* ---- Editorial statement: bigger presence ---- */
.editorial .statement { font-weight: 600; font-stretch: 90%; letter-spacing: -0.025em; }

/* ---- Mobile scale ---- */
@media (max-width: 860px) {
  .display { font-size: clamp(2.9rem, 12vw, 4rem); }
  .hero-panel .display { font-size: clamp(2.7rem, 11vw, 3.6rem); }
  h2.sec-title { font-size: clamp(2.2rem, 9vw, 3rem); }
}

/* ============================================================
   V9 — POLISH PASS
   Hero meta alignment, nav CTA separator, CTA center, about col
   ============================================================ */

/* Hero meta: clean 3-col grid with hairline dividers */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(22, 26, 23, 0.09);
}
.hero-meta .m {
  padding: 0 1.3rem 0 0;
  border-right: 1px solid rgba(22, 26, 23, 0.1);
}
.hero-meta .m + .m { padding: 0 1.3rem; }
.hero-meta .m:last-child { border-right: none; padding-right: 0; }
.hero-meta .m .k {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
  margin-bottom: 0.28rem;
}
.hero-meta .m .v {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.25;
  display: block;
}
.hero-meta .m .v a { color: inherit; }
.hero-meta .m .v a:hover { color: var(--green-deep); }

/* Nav CTA pill: clean separator + tight alignment */
.nav-cta {
  padding: 0 0.5rem 0 0;
  gap: 0;
  align-items: stretch;
}
.nav-phone {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.16);
  white-space: nowrap;
}
.nav-phone span { color: rgba(255,255,255,0.95); font-weight: 600; }
.nav-cta .btn {
  margin: 0.42rem 0.42rem 0.42rem 0.65rem;
  align-self: center;
  flex-shrink: 0;
}
.nav-burger { margin: 0 0.25rem; }

/* CTA "Water on the way" panel: centered */
.cta-panel {
  margin: 0 auto;
  text-align: center;
}
.cta-panel .hero-actions { justify-content: center; }

/* Brief about: single centered column (family photo removed) */
.brief-about-grid {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) {
  .hero-meta { grid-template-columns: repeat(3, auto); gap: 0; }
  .hero-meta .m { padding: 0 0.85rem 0 0; }
  .hero-meta .m + .m { padding: 0 0.85rem; }
  .hero-meta .m .k { font-size: 0.55rem; letter-spacing: 0.16em; }
  .hero-meta .m .v { font-size: 0.8rem; }
}

/* ============================================================
   V10 — Side floating action buttons + accessibility
   ============================================================ */

.side-fab {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 85;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sfab {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease);
  will-change: transform;
}
.sfab:hover {
  transform: scale(1.12) translateX(-5px);
}
.sfab-call {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 22px -6px rgba(47, 145, 57, 0.6), 0 0 0 1px rgba(255,255,255,0.28);
}
.sfab-call:hover {
  background: var(--green-deep);
  box-shadow: 0 10px 30px -8px rgba(47, 145, 57, 0.7), 0 0 0 1px rgba(255,255,255,0.4);
}
.sfab-review {
  background: #fff;
  color: #F5A623;
  box-shadow: 0 6px 22px -8px rgba(20, 61, 25, 0.35), 0 0 0 1px rgba(66, 173, 77, 0.18);
  border: 1.5px solid rgba(66, 173, 77, 0.15);
}
.sfab-review:hover {
  box-shadow: 0 10px 30px -8px rgba(20, 61, 25, 0.45), 0 0 0 1.5px rgba(66, 173, 77, 0.4);
  border-color: rgba(66, 173, 77, 0.5);
}
/* Tooltip that slides in from right */
.sfab-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(14, 20, 15, 0.9);
  color: #fff;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.38rem 0.8rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}
.sfab-tip::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(14, 20, 15, 0.9);
  border-right: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sfab:hover .sfab-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
/* Hide on mobile — bottom FAB handles it */
@media (max-width: 1080px) {
  .side-fab { display: none; }
}
