/* ============================================================
   WEEDED! LAWN SERVICE — SHARED STYLESHEET
   All pages import this file. Edit once, updates everywhere.
   ============================================================ */

/* DESIGN TOKENS */
:root {
  --green-deep:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-bright: #40916C;
  --green-light:  #74C69D;
  --green-pale:   #D8F3DC;
  --gold:         #C9A84C;
  --gold-light:   #E9C46A;
  --cream:        #FAFAF5;
  --brown-light:  #A0703A;
  --white:        #FFFFFF;
  --gray:         #6B7280;
  --gray-light:   #F0F4F0;
  --text:         #1C2B1E;
  --shadow:       0 4px 24px rgba(27,67,50,.13);
  --shadow-lg:    0 12px 48px rgba(27,67,50,.18);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── TOPBAR ── */
.topbar {
  background: var(--green-deep);
  padding: 7px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  font-size: .74rem;
  color: #A7C4B5;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-phone {
  font-weight: 800;
  font-size: .9rem;
  color: var(--gold-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
  white-space: nowrap;
}
.topbar-phone:hover { color: var(--white); }

/* ── STICKY NAV ── */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--green-pale);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(27,67,50,.1);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(27,67,50,.25);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  color: var(--green-bright);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-deep);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--green-pale);
  color: var(--green-mid);
}
.nav-cta {
  background: var(--green-deep) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 9px 16px !important;
  font-weight: 800 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--green-mid) !important; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 7px;
  flex-direction: column;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile nav dropdown */
.mob-nav {
  display: none;
  background: var(--white);
  border-top: 2px solid var(--green-pale);
  padding: 14px 20px 18px;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 8px 24px rgba(27,67,50,.1);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-size: .9rem;
  font-weight: 700;
  color: var(--green-deep);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  display: block;
  transition: background .2s;
}
.mob-nav a:hover { background: var(--green-pale); }
.mob-nav .m-cta {
  background: var(--green-deep);
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
  border-radius: 10px;
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--gold); padding: 12px 20px; }
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--green-deep);
  white-space: nowrap;
}
.tb-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-deep);
  opacity: .3;
  flex-shrink: 0;
}

/* ── HOME HERO ── */
.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: .5;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,67,50,.96) 0%, rgba(27,67,50,.78) 45%, rgba(27,67,50,.35) 100%);
  z-index: 1;
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  width: 100%;
}

/* Hero text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1.5px solid rgba(201,168,76,.38);
  border-radius: 24px;
  padding: 6px 16px;
  margin-bottom: 18px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(233,196,106,.22); }
  50%      { box-shadow: 0 0 0 7px rgba(233,196,106,.04); }
}
.hero-badge-text {
  font-size: .71rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4.5vw, 3.7rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }

.hero-areas {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.area-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
}
.hero-sub {
  font-size: 1.03rem;
  color: rgba(255,255,255,.8);
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 520px;
  font-weight: 500;
}
.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  padding: 8px 13px;
}
.trust-pill-ico { font-size: 1rem; }
.trust-pill-txt { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.82); line-height: 1.2; }
.trust-pill-txt strong { display: block; font-size: .88rem; color: var(--white); }

/* Hero stat bar */
.hero-stats {
  display: flex;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(4px);
}
.stat {
  flex: 1;
  padding: 13px 10px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Nunito', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 3px;
}
.stat-l { font-size: .65rem; color: #6A90B0; font-weight: 500; line-height: 1.3; }

/* ── QUOTE FORM CARD ── */
.q-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.32);
}
.q-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.q-card-sub { font-size: .78rem; color: var(--gray); margin-bottom: 18px; font-weight: 600; }
.fr { margin-bottom: 12px; }
.fr label {
  display: block;
  font-size: .7rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 4px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.fr input, .fr select, .fr textarea {
  width: 100%;
  padding: 10px 13px;
  border: 2px solid #E5EDE7;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: .87rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.fr input:focus, .fr select:focus, .fr textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(64,145,108,.12);
}
.fr textarea { min-height: 66px; resize: vertical; }
.fr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.q-btn {
  width: 100%;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  padding: 13px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  margin-top: 3px;
  transition: background .2s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.q-btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.q-note { text-align: center; font-size: .68rem; color: var(--gray); margin-top: 8px; font-weight: 600; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  padding: 60px 20px 52px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(45,106,79,.42) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  opacity: .22;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.page-hero-eyebrow {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  flex-shrink: 0;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.72;
  margin-bottom: 24px;
  font-weight: 500;
  max-width: 520px;
}
.hero-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green-deep);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .91rem;
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(201,168,76,.38);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 26px rgba(201,168,76,.52); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: 12px 22px;
  border-radius: 9px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.3);
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-deep);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .93rem;
  padding: 14px 28px;
  border-radius: 9px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 18px rgba(0,0,0,.14);
  white-space: nowrap;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .91rem;
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); }

/* ── SECTION HELPERS ── */
.sec-tag {
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: block;
  margin-bottom: 10px;
}
.sec-tag.light { color: var(--green-light); }
.sec-tag.gold  { color: var(--gold-light); }

.sec-hdr { text-align: center; margin-bottom: 48px; }
.sec-hdr h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 12px;
}
.sec-hdr h2.white { color: var(--white); }
.sec-hdr p {
  font-size: .94rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.72;
  font-weight: 500;
}
.sec-hdr p.light { color: rgba(255,255,255,.65); }

/* ── CONTENT SECTIONS ── */
.content-section { padding: 72px 20px; background: var(--cream); }
.content-section.alt { background: var(--gray-light); }
.content-section.dark { background: var(--green-deep); }
.content-wrap { max-width: 1180px; margin: 0 auto; }

.content-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.content-grid.flip .cg-img { order: -1; }

h2.sec-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}
h2.sec-h.white { color: var(--white); }
.sec-p {
  font-size: .93rem;
  color: var(--gray);
  line-height: 1.76;
  margin-bottom: 18px;
  font-weight: 500;
}
.sec-p.light { color: rgba(255,255,255,.72); }
.sec-p strong { color: var(--green-deep); font-weight: 700; }
.sec-p.light strong { color: var(--white); }

/* ── FEATURE LIST ── */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 24px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; }
.feat-ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.feat-ico.dark-bg { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); }
.feat-txt strong { display: block; font-size: .88rem; font-weight: 800; color: var(--green-deep); margin-bottom: 2px; }
.feat-txt.white strong { color: var(--white); }
.feat-txt span { font-size: .81rem; color: var(--gray); line-height: 1.55; font-weight: 500; }
.feat-txt.white span { color: rgba(255,255,255,.6); }

/* ── CONTENT IMAGE ── */
.cg-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-mid);
  position: relative;
}
.cg-img img { width: 100%; height: 360px; object-fit: cover; display: block; transition: transform .5s; }
.cg-img:hover img { transform: scale(1.03); }
.cg-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--green-deep);
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: var(--radius);
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 6px 22px rgba(201,168,76,.4);
}
.cg-img-badge span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .63rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1px;
}

/* ── BENEFIT CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.b-card {
  background: var(--white);
  border: 2px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.b-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--green-light); }
.b-card.dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.b-card.dark:hover { border-color: rgba(116,198,157,.4); }
.b-card-ico { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.b-card h3 { font-family: 'Playfair Display', serif; font-size: 1.08rem; color: var(--green-deep); margin-bottom: 8px; }
.b-card.dark h3 { color: var(--white); }
.b-card p { font-size: .83rem; color: var(--gray); line-height: 1.65; font-weight: 500; }
.b-card.dark p { color: rgba(255,255,255,.62); }

/* ── SEASON TIMELINE ── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.tl-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: background .2s;
}
.tl-item:hover { background: rgba(255,255,255,.11); }
.tl-ico { font-size: 1.6rem; margin-bottom: 8px; }
.tl-season { font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.tl-title { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--white); margin-bottom: 6px; }
.tl-desc { font-size: .77rem; color: rgba(255,255,255,.58); line-height: 1.55; font-weight: 500; }

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 800;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-txt strong { display: block; font-size: .9rem; font-weight: 800; color: var(--green-deep); margin-bottom: 2px; }
.step-txt span { font-size: .83rem; color: var(--gray); line-height: 1.55; font-weight: 500; }

/* ── SERVICE CARDS (homepage) ── */
.services { padding: 80px 20px; background: var(--cream); }
.svc-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--green-pale);
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--green-light); }
.svc-img { height: 185px; overflow: hidden; position: relative; background: var(--green-pale); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,67,50,.52) 0%, transparent 55%); }
.svc-season {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: .6rem;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.svc-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.svc-icon { font-size: 1.4rem; margin-bottom: 9px; }
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.18rem; color: var(--green-deep); margin-bottom: 8px; line-height: 1.2; }
.svc-card p { font-size: .85rem; color: var(--gray); line-height: 1.65; flex: 1; margin-bottom: 15px; font-weight: 500; }
.svc-ul { list-style: none; margin-bottom: 16px; display: flex; flex-direction: column; gap: 5px; }
.svc-ul li { font-size: .8rem; color: var(--text); display: flex; align-items: flex-start; gap: 7px; font-weight: 600; }
.svc-ul li::before { content: '✓'; color: var(--green-bright); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.svc-lnk {
  font-size: .8rem;
  font-weight: 800;
  color: var(--green-bright);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: gap .2s, color .2s;
}
.svc-lnk:hover { color: var(--green-deep); gap: 9px; }

/* ── YEAR-ROUND (homepage) ── */
.yearround { padding: 80px 20px; background: var(--green-deep); position: relative; overflow: hidden; }
.yearround::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64,145,108,.28) 0%, transparent 70%);
  pointer-events: none;
}
.yr-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.yr-img-wrap { position: relative; padding-bottom: 24px; padding-right: 24px; }
.yr-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  background: var(--green-mid);
}
.yr-img-main img { width: 100%; height: 320px; object-fit: cover; display: block; }
.yr-img-badge {
  position: absolute;
  bottom: 0; left: -8px;
  background: var(--gold);
  color: var(--green-deep);
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: var(--radius);
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,168,76,.42);
}
.yr-img-badge span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.season-list { display: flex; flex-direction: column; gap: 15px; }
.season-item { display: flex; gap: 13px; align-items: flex-start; }
.season-ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.season-txt strong { display: block; font-size: .88rem; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.season-txt span { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.5; font-weight: 500; }
.yr-cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── GALLERY STRIP ── */
.gallery-strip { padding: 56px 0; background: var(--gray-light); overflow: hidden; }
.gallery-strip-label { text-align: center; margin-bottom: 22px; padding: 0 20px; }
.gallery-strip-label h3 { font-family: 'Playfair Display', serif; font-size: 1.55rem; color: var(--green-deep); }
.gallery-strip-label p { font-size: .84rem; color: var(--gray); margin-top: 5px; font-weight: 500; }
.gallery-track {
  display: flex;
  gap: 14px;
  padding: 0 20px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-card {
  flex: 0 0 270px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
  transition: transform .25s;
  background: var(--green-pale);
}
.gallery-card:hover { transform: scale(1.03); }
.gallery-card img { width: 100%; height: 195px; object-fit: cover; display: block; }

/* ── GALLERY GRID (about/gallery page) ── */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.gal-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--green-pale);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gal-item:hover img { transform: scale(1.05); }

/* ── FAQ ── */
.faq { padding: 80px 20px; background: var(--cream); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 2px solid var(--green-pale);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--green-bright); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: .93rem;
  font-weight: 800;
  color: var(--green-deep);
  transition: color .2s;
}
.faq-q:hover { color: var(--green-bright); }
.faq-ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-bright);
  flex-shrink: 0;
  transition: transform .3s, background .2s, color .2s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--green-bright); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .36s ease; padding: 0 22px; }
.faq-a-inner { padding-bottom: 18px; font-size: .88rem; color: var(--gray); line-height: 1.74; font-weight: 500; }
.faq-a-inner strong { color: var(--green-deep); font-weight: 700; }
.faq-item.open .faq-a { max-height: 420px; }

/* ── TESTIMONIALS ── */
.rev-strip { padding: 60px 20px; background: var(--green-deep); }
.rev-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.rev-card {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: background .2s;
}
.rev-card:hover { background: rgba(255,255,255,.11); }
.rev-stars { color: var(--gold-light); font-size: .95rem; letter-spacing: 2px; }
.rev-card blockquote { font-size: .87rem; color: rgba(255,255,255,.8); line-height: 1.72; font-style: italic; flex: 1; font-weight: 500; }
.rev-card cite { font-size: .76rem; font-weight: 800; color: var(--green-light); font-style: normal; }
.rev-card cite span { display: block; color: rgba(255,255,255,.38); font-weight: 500; margin-top: 2px; font-size: .7rem; }

/* ── SERVICE AREA MAP SECTION ── */
.area-section { padding: 80px 20px; background: var(--gray-light); }
.area-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.area-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--green-deep); line-height: 1.2; margin-bottom: 13px; }
.area-content > p { font-size: .93rem; color: var(--gray); line-height: 1.72; margin-bottom: 22px; font-weight: 500; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.area-chip {
  background: var(--white);
  border: 2px solid var(--green-pale);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.area-chip:hover { border-color: var(--green-bright); background: var(--green-pale); }
.area-chip strong { display: block; font-size: .87rem; font-weight: 800; color: var(--green-deep); }
.area-chip span { font-size: .71rem; color: var(--gray); font-weight: 600; }
.map-panel {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 40% 40%, rgba(64,145,108,.25) 0%, transparent 70%);
  pointer-events: none;
}
.map-title { font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green-light); margin-bottom: 14px; position: relative; }
.map-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; position: relative; }
.mc {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: .67rem;
  font-weight: 700;
  color: rgba(255,255,255,.72);
}
.mc.hl { background: rgba(201,168,76,.15); border-color: rgba(201,168,76,.35); color: var(--gold-light); }
.mc-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.d-gold { background: var(--gold-light); }
.d-green { background: #74C69D; }
.d-lime  { background: #95D5B2; }

/* ── INFO / WARNING BOXES ── */
.info-box {
  background: var(--green-pale);
  border: 2px solid var(--green-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-box-ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.info-box-txt { font-size: .85rem; color: var(--green-deep); line-height: 1.65; font-weight: 600; }
.info-box-txt strong { font-weight: 800; }

.warn-box {
  background: #FEF3C7;
  border: 2px solid #F59E0B;
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.warn-box-ico { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.warn-box-txt { font-size: .83rem; color: #92400E; line-height: 1.65; font-weight: 600; }
.warn-box-txt strong { font-weight: 800; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--green-bright);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(27,67,50,.28), transparent);
  pointer-events: none;
}
.cta-band-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 12px; }
.cta-band p { font-size: .95rem; color: rgba(255,255,255,.82); max-width: 500px; margin: 0 auto 30px; line-height: 1.72; font-weight: 500; }
.cta-acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--green-deep); padding: 52px 20px 24px; color: #7AAD91; }
.ft-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.ft-logo-wrap { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.ft-logo-mark { width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.ft-logo-txt { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.ft-logo-txt span { display: block; font-family: 'Nunito', sans-serif; font-size: .57rem; font-weight: 700; color: var(--green-light); letter-spacing: .1em; text-transform: uppercase; }
.ft-brand p { font-size: .81rem; line-height: 1.68; margin-bottom: 14px; color: #7AAD91; font-weight: 500; }
.ft-phone { font-weight: 800; font-size: 1.15rem; color: var(--gold-light); text-decoration: none; display: block; margin-bottom: 6px; transition: color .2s; }
.ft-phone:hover { color: var(--white); }
.ft-col h4 { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ft-col ul a { font-size: .81rem; color: #7AAD91; text-decoration: none; transition: color .2s; font-weight: 600; }
.ft-col ul a:hover { color: var(--gold-light); }
.ft-div { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 0 auto 18px; max-width: 1180px; }
.ft-bot { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .74rem; color: #4A7060; font-weight: 600; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp .65s .05s ease both; }
.anim-2 { animation: fadeUp .65s .13s ease both; }
.anim-3 { animation: fadeUp .65s .21s ease both; }
.anim-4 { animation: fadeUp .65s .29s ease both; }
.anim-5 { animation: fadeUp .65s .37s ease both; }
.anim-6 { animation: fadeUp .65s .45s ease both; }
.anim-card { animation: fadeUp .8s .28s ease both; }

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 1060px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .yr-inner { grid-template-columns: 1fr; gap: 44px; }
  .yr-img-wrap { order: -1; }
  .area-inner { grid-template-columns: 1fr; gap: 44px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 44px 20px 36px; }
  .content-grid { grid-template-columns: 1fr; gap: 36px; }
  .content-grid.flip .cg-img { order: 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
/* Mobile quote wrapper: hidden on desktop, shown on mobile */
.quote-mobile-wrapper { display: none; padding: 32px 16px; background: var(--bg, #f9f9f7); }
.quote-mobile-wrapper .q-card { max-width: 520px; margin: 0 auto; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* HOME HERO: show text only, hide the desktop form card */
  .home-hero-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 16px 44px; }
  .home-hero-inner .hero-left { order: 1; }
  .home-hero-inner .anim-card { display: none; }
  .home-hero { min-height: auto; }
  /* Show mobile quote form above services */
  .quote-mobile-wrapper { display: block; }
  .hero-h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-stats { overflow-x: auto; }
  .stat { min-width: 85px; }
  .trust-bar-inner { gap: 10px; }
  .topbar-left > span:last-child { display: none; }
  .fr2 { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-col:nth-child(3) { display: none; }
}
@media (max-width: 580px) {
  .svc-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-ghost { width: 100%; justify-content: center; }
  .cta-acts { flex-direction: column; align-items: center; }
  .btn-white, .btn-green { width: 100%; justify-content: center; }
  .area-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 8px; }
  .trust-pill { padding: 7px 10px; }
  .cards-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .gallery-row { grid-template-columns: 1fr 1fr; }
  .yr-cta { flex-direction: column; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV SCROLLED STATE ── */
nav.scrolled {
  box-shadow: 0 4px 24px rgba(27,67,50,.16);
}
