/* ========================================================================
   Blowin' Grass Lawncare — one-pager styles
   ======================================================================== */

:root {
  --green-900: #0a1509;
  --green-800: #0e2010;
  --green-700: #163018;
  --green-600: #1f4a1f;
  --green-500: #2f7d32;
  --green-400: #4fae3a;
  --lime-400: #6fd83c;
  --lime-300: #8de63a;
  --lime-200: #b8f27a;
  --ink: #101a10;
  --ink-soft: #46523f;
  --paper: #f6f8f2;
  --paper-2: #eef3e6;
  --white: #ffffff;
  --line: rgba(16, 26, 16, 0.1);
  --shadow-color: 130, 40%, 15%;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* film grain overlay for texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--lime-300), var(--green-400));
  color: #08210a;
  box-shadow: 0 10px 30px -8px rgba(79, 174, 58, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -8px rgba(79, 174, 58, 0.7); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--green-500);
  border-color: var(--green-500);
}
.btn-outline:hover { background: var(--green-500); color: var(--white); transform: translateY(-3px); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding .4s var(--ease), background-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(10, 21, 9, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo { width: 72px; height: auto; transition: transform .5s var(--ease); }
.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.05); }

.main-nav {
  display: flex;
  gap: 30px;
  margin: 0 auto;
}
.main-nav a {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--lime-300);
  transition: width .3s var(--ease);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }
.nav-phone-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 7px;
  color: var(--white); font-weight: 700; font-size: 0.92rem;
  transition: color .25s ease;
}
.header-phone:hover { color: var(--lime-300); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 120% 90% at 50% 0%, #142817 0%, #0a1509 55%, #060c05 100%);
  overflow: hidden;
  padding-top: 90px;
}

@media (min-width: 981px) {
  .hero { padding-top: 170px; }
}

.grass-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, transparent 0%, rgba(6,12,5,0.55) 75%, rgba(6,12,5,0.92) 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(111,216,60,0.16) 0%, transparent 65%);
  pointer-events: none;
  animation: pulseGlow 7s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 70px;
}

.eyebrow {
  color: var(--lime-300);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}
.reveal-line { display: block; overflow: hidden; }
.reveal-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: wordUp 0.9s var(--ease) forwards;
}
.hero-title .accent { font-style: italic; color: var(--lime-300); }
@keyframes wordUp {
  to { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.6;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }

.scroll-cue {
  position: absolute;
  bottom: 68px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

@media (min-width: 981px) {
  .scroll-cue { bottom: 88px; }
}

/* Vertically-short desktop windows (laptops w/ browser chrome, external
   displays, etc.) — 170px of top padding plus the full-size headline
   can push the scroll cue below the fold, so tighten the whole stack.
   Placed after the rules above so it wins the cascade when both match. */
@media (min-width: 981px) and (max-height: 820px) {
  .hero { padding-top: 90px; }
  .hero-title { font-size: clamp(2.2rem, 6.4vw, 4.4rem); }
  .eyebrow { margin-bottom: 14px; }
  .hero-sub { margin-bottom: 22px; }
  .hero-cta { margin-bottom: 30px; }
  .hero-inner { padding-bottom: 30px; }
  .scroll-cue { bottom: 30px; }
}

.mow-divider {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  height: 90px;
  z-index: 3;
}
.mow-divider path { fill: var(--paper); }

/* ---------------------------------------------------------------------- */
/* Reveal-on-scroll utility                                                */
/* ---------------------------------------------------------------------- */

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; animation: fadeUp .8s var(--ease) forwards; animation-delay: 1.1s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ---------------------------------------------------------------------- */
/* Shared section bits                                                     */
/* ---------------------------------------------------------------------- */

section { position: relative; padding: 118px 0; scroll-margin-top: 110px; }

.section-kicker {
  color: var(--green-500);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.section-head { max-width: 640px; margin: 0 0 60px; }
.section-head.light .section-kicker { color: var(--lime-300); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.section-head.light h2 { color: var(--white); }
.section-sub { margin-top: 14px; color: var(--ink-soft); font-size: 1.02rem; }
.section-head.light .section-sub { color: rgba(255,255,255,0.72); }
.section-sub a { color: var(--lime-300); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------------------------- */
/* Intro                                                                   */
/* ---------------------------------------------------------------------- */

.intro { padding-top: 30px; background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.intro-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.intro-text { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.75; margin-bottom: 32px; }

.owner-card {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(10,25,10,0.45);
}
.owner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(111,216,60,0.28), transparent 60%);
}
.owner-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(111,216,60,0.16);
  color: var(--lime-300);
  border: 1.5px solid rgba(111,216,60,0.35);
  margin: 0 auto 18px;
  position: relative;
}
.owner-name { font-weight: 800; font-size: 1.15rem; position: relative; }
.owner-role { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 3px; position: relative; }
.owner-line { width: 40px; height: 2px; background: var(--lime-300); margin: 20px auto; opacity: 0.7; position: relative; }
.owner-quote { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; line-height: 1.55; color: rgba(255,255,255,0.9); position: relative; }

/* ---------------------------------------------------------------------- */
/* Services                                                                */
/* ---------------------------------------------------------------------- */

.services { background: var(--paper); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px -20px hsla(var(--shadow-color), 0.35);
  border-color: transparent;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--green-700), var(--green-500));
  color: var(--lime-200);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .4s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-card h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

/* ---------------------------------------------------------------------- */
/* Pricing                                                                 */
/* ---------------------------------------------------------------------- */

.pricing {
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #17311a 0%, #0a1509 60%, #060c05 100%);
  color: var(--white);
}
.pricing-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(111,216,60,0.14), transparent 55%);
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.pricing-footnote {
  text-align: center;
  margin-top: 36px;
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
}
.pricing-footnote a { color: var(--lime-300); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.plan-card {
  position: relative;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(10px);
  transition: transform .45s var(--ease), border-color .45s var(--ease), background-color .45s var(--ease);
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-10px); border-color: rgba(111,216,60,0.45); background: rgba(255,255,255,0.07); }
.plan-card.is-popular {
  background: linear-gradient(165deg, rgba(111,216,60,0.14), rgba(255,255,255,0.05));
  border-color: rgba(111,216,60,0.55);
  transform: scale(1.045);
  box-shadow: 0 30px 70px -20px rgba(79,174,58,0.35);
}
.plan-card.is-popular:hover { transform: scale(1.045) translateY(-10px); }
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lime-300), var(--green-400));
  color: #08210a;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(79,174,58,0.6);
}
.plan-head h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.plan-tagline { color: rgba(255,255,255,0.62); font-size: 0.9rem; min-height: 40px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin: 22px 0 28px; }
.currency { font-size: 1.4rem; font-weight: 700; color: var(--lime-300); align-self: flex-start; margin-top: 6px; }
.amount { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; line-height: 1; }
.period { color: rgba(255,255,255,0.55); font-size: 1rem; margin-left: 4px; }
.plan-features { margin-bottom: 34px; flex-grow: 1; }
.plan-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.plan-features li:last-child { border-bottom: none; }
.check { color: var(--lime-300); font-weight: 800; flex-shrink: 0; }
.plan-card .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.35); }
.plan-card .btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---------------------------------------------------------------------- */
/* Gallery                                                                 */
/* ---------------------------------------------------------------------- */

.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 40px -20px hsla(var(--shadow-color), 0.3);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 22px 20px;
  background: linear-gradient(to top, rgba(6,12,5,0.85), transparent);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform .4s var(--ease);
}
.gallery-item:hover figcaption { transform: translateY(0); }
.gallery-item figcaption span { font-weight: 800; font-size: 1.02rem; }
.gallery-item figcaption small { color: rgba(255,255,255,0.65); font-size: 0.8rem; }
.gallery-note { text-align: center; color: var(--ink-soft); margin-top: 40px; font-size: 0.92rem; }

/* ---------------------------------------------------------------------- */
/* Why us                                                                  */
/* ---------------------------------------------------------------------- */

.why { background: var(--paper-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px hsla(var(--shadow-color), 0.3); }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(47,125,50,0.1);
  color: var(--green-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 6px; }
.why-card p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; }

.service-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green-500);
  font-weight: 700;
}

/* ---------------------------------------------------------------------- */
/* Service area map                                                        */
/* ---------------------------------------------------------------------- */

.coverage {
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #17311a 0%, #0a1509 60%, #060c05 100%);
  color: var(--white);
  text-align: center;
}
.coverage-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(111,216,60,0.14), transparent 55%);
  pointer-events: none;
}
.coverage .section-head { margin-left: auto; margin-right: auto; text-align: center; }

.map-wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 11;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.55);
}

.leaflet-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0a1509;
  font-family: var(--font-body);
}
/* Leaflet chrome, restyled to sit quietly inside the dark section */
.leaflet-map .leaflet-tile-pane { filter: saturate(0.7) brightness(0.95); }
.leaflet-map .leaflet-control-attribution {
  background: rgba(6,12,5,0.55);
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  backdrop-filter: blur(2px);
}
.leaflet-map .leaflet-control-attribution a { color: rgba(255,255,255,0.65); }
.leaflet-map:focus { outline: none; }

.hub-pulse {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: rgba(111,216,60,0.35);
  animation: hubPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes hubPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(4.4); opacity: 0; }
}

.map-hub {
  position: absolute;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 620;
}
.map-hub-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--lime-300);
  box-shadow: 0 0 0 5px rgba(111,216,60,0.22);
}
.map-hub-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white);
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.map-node {
  position: absolute;
  left: 0; top: 0;
  width: 1px; height: 1px;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  z-index: 610;
}
.map-node-dot {
  position: absolute;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  border: 2px solid rgba(6,12,5,0.8);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
  transition: transform .3s var(--ease), background-color .3s ease, box-shadow .3s ease;
}
.map-node-label {
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 0 3px rgba(0,0,0,0.8);
  transition: color .3s ease;
}
/* Each town's label points in whichever direction has open space,        */
/* since the real towns aren't evenly spaced around the hub.              */
.map-node.dir-n .map-node-label { transform: translate(-50%, calc(-100% - 12px)); }
.map-node.dir-s .map-node-label { transform: translate(-50%, 12px); }
.map-node.dir-e .map-node-label { transform: translate(12px, -50%); }
.map-node.dir-w .map-node-label { transform: translate(calc(-100% - 12px), -50%); }
.map-node:hover .map-node-dot,
.map-node:focus-visible .map-node-dot,
.map-node.is-active .map-node-dot {
  transform: scale(1.35);
  background: var(--lime-300);
  box-shadow: 0 0 0 5px rgba(111,216,60,0.28);
}
.map-node:hover .map-node-label,
.map-node:focus-visible .map-node-label,
.map-node.is-active .map-node-label {
  color: var(--lime-300);
}
.map-node:focus-visible { outline: none; }
.map-node:focus-visible .map-node-dot { outline: 2px solid var(--lime-300); outline-offset: 3px; }

.coverage-list {
  margin-top: 44px;
  color: rgba(255,255,255,0.62);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.2px;
}

/* ---------------------------------------------------------------------- */
/* Contact                                                                 */
/* ---------------------------------------------------------------------- */

.contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.contact-text { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.6; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
  color: var(--ink);
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .3s ease, transform .3s ease;
}
.contact-detail:hover { border-color: var(--green-500); color: var(--green-500); transform: translateX(4px); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 60px -30px hsla(var(--shadow-color), 0.35);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.contact-form label span { font-weight: 700; font-size: 0.86rem; color: var(--ink); }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
  resize: vertical;
  transition: border-color .25s ease, background-color .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--green-400);
  background: var(--white);
}
.form-note { text-align: center; margin-top: 16px; font-size: 0.88rem; font-weight: 700; color: var(--green-500); min-height: 1.2em; }
.form-note.is-error { color: #c0392b; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.btn[disabled] { opacity: 0.7; cursor: not-allowed; transform: none !important; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer { background: var(--green-900); color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-logo { width: 76px; height: auto; }
.footer-title { color: var(--white); font-weight: 800; font-size: 1.05rem; }
.footer-sub { font-size: 0.86rem; margin-top: 2px; }
.footer-contact { display: flex; gap: 26px; }
.footer-contact a { font-weight: 700; transition: color .25s ease; }
.footer-contact a:hover { color: var(--lime-300); }
.footer-bottom {
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.credit-link { color: inherit; text-decoration: none; transition: color .25s ease; }
.credit-link:hover { color: rgba(255,255,255,0.8); }

/* ---------------------------------------------------------------------- */
/* Back to top                                                             */
/* ---------------------------------------------------------------------- */

.to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-300), var(--green-400));
  color: #08210a;
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(79,174,58,0.6);
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s var(--ease);
}
.to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { transform: translateY(-4px) scale(1.05); }

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-phone span, .header-actions .btn-sm { display: none; }
  .header-phone { display: flex; }
  .nav-toggle { display: flex; }

  .main-nav.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,21,9,0.97);
    backdrop-filter: blur(16px);
    padding: 24px 32px 30px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.mobile-open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .main-nav.mobile-open .nav-phone-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lime-300);
    border-bottom: none;
    margin-top: 6px;
  }

  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-card.is-popular { transform: none; }
  .plan-card.is-popular:hover { transform: translateY(-10px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  section { padding: 84px 0; }
  .services { padding-top: 56px; }
  .why { padding-top: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .brand-logo { width: 68px; }
  .header-phone { display: none; }
  .header-actions { gap: 0; }
  .map-wrap { aspect-ratio: 4 / 5; max-width: 420px; }
}

@media (max-width: 400px) {
  .brand-logo { width: 62px; }
}
