/* John's Landscaping & Turf — modern outdoor identity */
:root {
  --green-deep: #143528;
  --green-forest: #1c4c27;
  --green-mid: #2f6b45;
  --green-leaf: #3f8f5a;
  --green-soft: #d8ebe0;
  --green-mist: #eef6f1;
  --earth: #3d342c;
  --sand: #f3efe6;
  --ink: #1a241c;
  --muted: #4d5c52;
  --line: rgba(20, 53, 40, 0.12);
  --white: #ffffff;
  --focus: #2f6b45;
  --radius: 6px;
  --max: 1120px;
  --nav-h: 4.25rem;
  --font-brand: "Syne", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --shadow-soft: 0 12px 40px rgba(20, 53, 40, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(63, 143, 90, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(47, 107, 69, 0.1), transparent 50%),
    linear-gradient(180deg, var(--green-mist) 0%, var(--sand) 45%, var(--green-mist) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

a {
  color: var(--green-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-forest);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--green-deep);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Nav —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: visible;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.has-mega-open {
  background: rgba(238, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-over-hero:not(.is-scrolled):not(.is-open):not(.has-mega-open) {
  background: transparent;
}

.nav-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  min-width: 0;
}

.site-header.is-over-hero:not(.is-scrolled):not(.is-open):not(.has-mega-open) .brand {
  color: var(--white);
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.site-header.is-over-hero:not(.is-scrolled):not(.is-open):not(.has-mega-open) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(20, 53, 40, 0.35);
  color: var(--white);
}

.nav-toggle-bars {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.site-nav,
.nav-inner {
  overflow: visible;
}

/* Top-level only — nested .mega-list must keep its own grid (not flex row). */
.site-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow: visible;
}

.site-nav a {
  display: block;
  padding: 0.55rem 0.85rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-header.is-over-hero:not(.is-scrolled):not(.is-open):not(.has-mega-open) .site-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-forest);
  background: rgba(47, 107, 69, 0.08);
}

.site-header.is-over-hero:not(.is-scrolled):not(.is-open):not(.has-mega-open) .site-nav a:hover,
.site-header.is-over-hero:not(.is-scrolled):not(.is-open):not(.has-mega-open) .site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

/* —— Services megamenu —— */
/* Full-width strip under fixed header; inner content is max ~68rem so
   cards keep readable column widths (never letter-break titles). */
.has-mega {
  position: static;
  overflow: visible;
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  margin: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.mega-trigger:hover,
.has-mega.is-open .mega-trigger {
  color: var(--green-forest);
  background: rgba(47, 107, 69, 0.08);
}

.site-header.is-over-hero:not(.is-scrolled):not(.is-open):not(.has-mega-open) .mega-trigger {
  color: rgba(255, 255, 255, 0.88);
}

.site-header.is-over-hero:not(.is-scrolled):not(.is-open):not(.has-mega-open) .mega-trigger:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.mega-chevron {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s var(--ease);
  opacity: 0.8;
}

.has-mega.is-open .mega-chevron {
  transform: rotate(225deg) translateY(-1px);
}

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 400;
  padding: 0.55rem max(1.25rem, env(safe-area-inset-right, 0px)) 0.85rem
    max(1.25rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  pointer-events: auto;
  transform: none;
}

.mega-panel[hidden] {
  display: none;
}

.mega-inner {
  width: 100%;
  max-width: min(68rem, 100%);
  margin-inline: auto;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 246, 241, 0.98) 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  padding: 1.15rem 1.35rem 0.95rem;
  max-height: min(36rem, calc(100vh - var(--nav-h) - 1.5rem));
  max-height: min(36rem, calc(100dvh - var(--nav-h) - 1.5rem));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  word-break: normal;
  overflow-wrap: normal;
}

.mega-heading {
  margin: 0 0 0.85rem;
  padding: 0 0.15rem;
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.mega-list,
.site-nav ul.mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: stretch;
  /* Default: single column (mobile drawer + very tight layouts) */
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

/* Medium desktop / tablet landscape: two columns when the panel is wide enough */
@media (min-width: 861px) {
  .mega-list,
  .site-nav ul.mega-list {
    grid-template-columns: repeat(2, minmax(11.5rem, 1fr));
    gap: 0.4rem 0.75rem;
  }
}

/* Wide desktop: three roomy cards — never more than three */
@media (min-width: 1200px) {
  .mega-list,
  .site-nav ul.mega-list {
    grid-template-columns: repeat(3, minmax(12rem, 1fr));
    gap: 0.45rem 0.9rem;
  }
}

.mega-list > li {
  min-width: 0;
}

.mega-list a,
.site-nav .mega-list a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  height: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  min-width: 0;
  box-sizing: border-box;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.mega-list a:hover,
.mega-list a[aria-current="page"] {
  background: rgba(47, 107, 69, 0.1);
  border-color: rgba(47, 107, 69, 0.14);
  color: var(--green-forest);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.mega-title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  /* Never letter-break words (was overflow-wrap: anywhere) */
  overflow-wrap: normal;
  word-break: normal;
  word-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
  white-space: normal;
}

.mega-blurb {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

.mega-list a:hover .mega-blurb,
.mega-list a[aria-current="page"] .mega-blurb {
  color: var(--green-mid);
}

.mega-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.9rem;
  padding: 0.8rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-forest);
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 107, 69, 0.16);
  background: linear-gradient(
    180deg,
    rgba(63, 143, 90, 0.08) 0%,
    rgba(47, 107, 69, 0.12) 100%
  );
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.mega-all::after {
  content: "→";
  font-weight: 700;
  opacity: 0.75;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.mega-all:hover {
  background: linear-gradient(
    180deg,
    rgba(63, 143, 90, 0.14) 0%,
    rgba(47, 107, 69, 0.18) 100%
  );
  border-color: rgba(47, 107, 69, 0.28);
  color: var(--green-deep);
}

.mega-all:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2.5rem;
  margin: 2rem 0 0.5rem;
  padding: 1.5rem 0 0.25rem;
  border-top: 1px solid var(--line);
}

.service-detail-col h2 {
  font-family: var(--font-brand);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    max-height: calc(100vh - var(--nav-h));
    max-height: calc(100dvh - var(--nav-h));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(238, 246, 241, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a,
  .mega-trigger {
    padding: 0.85rem 1rem;
    width: 100%;
    justify-content: space-between;
  }

  .has-mega {
    width: 100%;
    position: static;
  }

  .mega-panel {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0 0 0.35rem;
  }

  .mega-inner {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    border-radius: var(--radius);
    border-color: rgba(20, 53, 40, 0.1);
    background: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 0.75rem 0.85rem;
  }

  .mega-list {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .mega-list a {
    padding: 0.7rem 0.75rem;
  }

  .mega-all {
    margin-top: 0.65rem;
    padding: 0.7rem 0.85rem;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 53, 40, 0.35) 0%, rgba(20, 53, 40, 0.2) 35%, rgba(20, 53, 40, 0.78) 100%),
    linear-gradient(90deg, rgba(20, 53, 40, 0.55) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 0 4.5rem;
  max-width: 40rem;
  animation: riseIn 1s var(--ease) both;
}

.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-brand);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.9);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--green-leaf);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-mid);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-solid {
  background: var(--green-deep);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--green-forest);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green-forest);
  border-color: rgba(28, 76, 39, 0.35);
}

.btn-outline:hover {
  background: rgba(47, 107, 69, 0.08);
  color: var(--green-deep);
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head h1,
.section-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-brand);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--green-deep);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.trust {
  position: relative;
  margin-top: -2.5rem;
  z-index: 2;
}

.trust-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(216, 235, 224, 0.88)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      rgba(47, 107, 69, 0.03) 10px,
      rgba(47, 107, 69, 0.03) 11px
    );
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.trust-panel p {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--earth);
  line-height: 1.45;
  text-wrap: balance;
}

.trust-panel strong {
  color: var(--green-forest);
  font-weight: 700;
}

.reviews-embed {
  width: 100%;
  min-height: 420px;
}

.reviews-embed iframe,
.lc_reviews_widget {
  min-width: 100%;
  width: 100%;
  border: 0;
  display: block;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 0 2rem;
  background:
    linear-gradient(180deg, rgba(20, 53, 40, 0.08), transparent 70%),
    radial-gradient(700px 280px at 80% 0%, rgba(63, 143, 90, 0.18), transparent 60%);
}

.page-hero .section-head {
  margin-bottom: 0;
  text-align: left;
  margin-left: 0;
}

/* Services */
.service-block,
#service-area,
#faq {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.service-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--line);
}

.service-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: var(--green-soft);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-block:hover .service-media img {
  transform: scale(1.03);
}

.service-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

.service-copy h2 a {
  color: inherit;
  text-decoration: none;
}

.service-copy h2 a:hover {
  color: var(--green-mid);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.service-copy p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Portfolio */
.work-list {
  display: grid;
  gap: 0;
}

.work-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  border-top: 1px solid var(--line);
}

.work-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.work-media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  background: var(--green-soft);
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-copy h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-brand);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

.work-tags {
  margin: 0 0 0.75rem;
  color: var(--green-mid);
  font-weight: 650;
  font-size: 0.95rem;
}

.work-copy p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 800px) {
  .work-item {
    grid-template-columns: 1fr;
  }
}

/* Products / contact */
.plain-panel {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0 1rem;
}

.plain-panel h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-brand);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--green-deep);
}

.plain-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.contact-list {
  list-style: none;
  margin: 2rem auto 0;
  padding: 0;
  max-width: 28rem;
  display: grid;
  gap: 1rem;
}

.contact-list > li > a,
.contact-list > li > span {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.contact-list > li:last-child > a,
.contact-list > li:last-child > span {
  border-bottom: 1px solid var(--line);
}

.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  font-weight: 700;
}

.contact-value {
  font-size: 1.25rem;
  font-weight: 650;
  color: var(--ink);
  margin: 0.15rem 0 0;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  background:
    linear-gradient(180deg, rgba(20, 53, 40, 0.96), var(--green-deep)),
    radial-gradient(800px 300px at 20% 0%, rgba(63, 143, 90, 0.25), transparent 60%);
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-brand);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.footer-social {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.85);
}

.footer-social:hover {
  color: var(--white);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Motion helpers */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Local SEO content blocks */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.service-card {
  display: block;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.service-card:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(47, 107, 69, 0.35);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-brand);
  font-size: 1.15rem;
  color: var(--green-deep);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem 1rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.area-grid li {
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 600;
  color: var(--green-forest);
  text-align: center;
  font-size: 0.95rem;
}

.area-grid a {
  color: inherit;
  text-decoration: none;
}

.area-grid a:hover {
  text-decoration: underline;
}

.area-grid a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.area-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.area-kicker a {
  color: var(--green-mid);
  text-decoration: none;
}

.area-kicker a:hover {
  text-decoration: underline;
}

.area-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

.area-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

.area-copy h3 {
  margin: 1.5rem 0 0.65rem;
  font-family: var(--font-brand);
  font-size: 1.15rem;
  color: var(--green-deep);
}

.area-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.area-service-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--ink);
}

.area-service-list li {
  margin-bottom: 0.35rem;
}

.area-note {
  margin-top: 0.5rem !important;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.98rem;
}

.area-map-panel {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.area-map-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-brand);
  font-size: 1.25rem;
  color: var(--green-deep);
}

.area-map-lead {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.area-map {
  width: 100%;
  height: min(58vh, 460px);
  min-height: 280px;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: var(--green-soft);
  z-index: 1;
}

.area-map .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: var(--font-body);
}

.area-map .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.85) !important;
}

.area-map-caption,
.map-note {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.area-locate,
.area-map-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 0.85rem;
}

.area-locate-btn {
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding-inline: 1.15rem;
  font-size: 0.95rem;
}

.area-locate-btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.area-locate-status {
  margin: 0;
  flex: 1 1 12rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

.area-locate-status.is-error {
  color: #6b2f2f;
}

.area-user-pin {
  background: transparent !important;
  border: none !important;
}

.area-user-pin-mark {
  position: relative;
  display: block;
  width: 28px;
  height: 36px;
  filter: drop-shadow(0 2px 4px rgba(20, 53, 40, 0.35));
}

.area-user-pin-head {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #c45c26;
  border: 2px solid var(--white);
  box-sizing: border-box;
}

.area-user-pin-head::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #f0a36a;
}

.area-user-pin-point {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: rgba(196, 92, 38, 0.35);
}

@media (max-width: 900px) {
  .area-layout {
    grid-template-columns: 1fr;
  }

  .area-map-panel {
    position: static;
  }

  .area-map {
    height: 320px;
  }

  .area-locate,
  .area-map-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .area-locate-btn {
    width: 100%;
  }
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--green-deep);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green-mid);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.nap-block {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.nap-block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-brand);
  font-size: 1.35rem;
  color: var(--green-deep);
}

.nap-block dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.nap-block dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.nap-block dd {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.footer-nap {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-nap p {
  margin: 0 0 0.35rem;
}

.footer-nap a {
  color: #fff;
}

.inline-cta {
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 900px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .hero-content,
  .reveal,
  .btn,
  .service-media img,
  .service-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
