:root {
  --green-deep:   #1a3a1f;
  --green-mid:    #2d5a34;
  --green-bright: #3d7a46;
  --green-light:  #5a9e64;
  --green-pale:   #e8f2e9;
  --green-glow:   rgba(61,122,70,0.12);
  --cream:        #f7f4ef;
  --white:        #ffffff;
  --dark:         #111c13;
  --charcoal:     #2a2a2a;
  --muted:        #6b7a6e;
  --border:       #d4e2d6;
  --gold:         #c8a84b;
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Season colors */
  --spring: #4a9e5c;
  --spring-bg: #edf7ee;
  --summer: #2d7a3a;
  --summer-bg: #e8f5e9;
  --fall:   #c0622a;
  --fall-bg: #fdf0e8;
  --winter: #3a6ea8;
  --winter-bg: #e8f0f8;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--green-deep);
  padding: 0.55rem 5vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.topbar-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.8);
}
.topbar-item a { color: rgba(255,255,255,0.8); text-decoration: none; }
.topbar-item a:hover { color: #fff; }
.topbar-dot { color: var(--green-light); font-size: 0.5rem; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 20px rgba(26,58,31,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
}
.nav-logo {
  display: flex; flex-direction: column;
  text-decoration: none;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.1;
}
.nav-logo-main span { color: var(--green-bright); }
.nav-logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-menu { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a, .nav-menu > li > button {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border: none; background: none; cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: flex; align-items: center; gap: 0.35rem;
}
.nav-menu > li > a:hover,
.nav-menu > li > button:hover { color: var(--green-bright); background: var(--green-pale); }
.nav-menu > li > a.active,
.nav-menu > li > button.active { color: var(--green-bright); }

/* Season dropdown */
.season-btn { position: relative; }
.season-btn > button { user-select: none; }
.season-dropdown {
  position: absolute; top: 100%; left: 50%;
  margin-top: 4px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(26,58,31,0.15);
  width: 200px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  overflow: hidden;
  z-index: 210;
}
.season-btn:hover .season-dropdown,
.season-btn:focus-within .season-dropdown,
.season-btn.open .season-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.season-option {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; color: var(--charcoal);
  transition: background 0.15s;
  border-bottom: 1px solid var(--border);
}
.season-option:last-child { border-bottom: none; }
.season-option:hover { background: var(--green-pale); color: var(--green-deep); }
.season-option .dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: var(--green-bright);
  color: var(--white) !important;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; -webkit-tap-highlight-color:transparent; }
.hamburger span { width:24px; height:2px; background:var(--charcoal); display:block; transition:transform 0.3s ease, opacity 0.2s ease; border-radius:2px; transform-origin:center; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── PAGE SYSTEM ── */
/* pages are now separate files */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 5rem 5vw;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 100% 50%, rgba(61,122,70,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 0% 80%, rgba(45,90,52,0.3) 0%, transparent 60%);
}
.hero-texture {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px);
}
.hero-leaf {
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  font-size: clamp(180px, 28vw, 380px);
  opacity: 0.06; pointer-events: none; line-height: 1;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(-50%) rotate(-5deg)} 50%{transform:translateY(-53%) rotate(2deg)} }

.hero-content { position:relative; z-index:1; max-width:680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow::before { content:''; width:28px; height:2px; background:var(--green-light); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease 0.15s both;
}
.hero h1 em { color: var(--green-light); font-style: normal; display:block; }
.hero-desc {
  font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.7);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-actions {
  display:flex; gap:1rem; flex-wrap:wrap;
  animation: fadeUp 0.7s ease 0.45s both;
}
.btn-primary {
  display:inline-block; font-family:var(--font-body);
  font-size:0.9rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
  padding:0.9rem 2rem; background:var(--green-light); color:var(--white);
  border:none; border-radius:4px; cursor:pointer; text-decoration:none;
  transition:background 0.2s, transform 0.15s;
}
.btn-primary:hover { background:var(--green-bright); transform:translateY(-2px); }
.btn-ghost {
  display:inline-block; font-family:var(--font-body);
  font-size:0.9rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
  padding:0.9rem 2rem; background:transparent; color:rgba(255,255,255,0.85);
  border:1.5px solid rgba(255,255,255,0.25); border-radius:4px; cursor:pointer; text-decoration:none;
  transition:border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color:rgba(255,255,255,0.6); color:#fff; transform:translateY(-2px); }

.hero-badges {
  position: absolute; bottom: 3rem; right: 5vw; z-index:1;
  display:flex; gap:1rem; flex-wrap:wrap; justify-content:flex-end;
  animation: fadeUp 0.7s ease 0.6s both;
}
.hero-badge-pill {
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(8px);
  border-radius:50px;
  padding:0.5rem 1.1rem;
  font-size:0.8rem; font-weight:500;
  color:rgba(255,255,255,0.85);
  display:flex; align-items:center; gap:0.4rem;
}

/* ── SERVICE AREA STRIP ── */
.area-strip {
  background: var(--green-mid);
  padding: 1rem 5vw;
  display:flex; align-items:center; gap:1rem; flex-wrap:wrap;
}
.area-strip-label {
  font-size:0.75rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
  color:rgba(255,255,255,0.5); flex-shrink:0;
}
.area-tags { display:flex; gap:0.6rem; flex-wrap:wrap; }
.area-tag {
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  color:rgba(255,255,255,0.9);
  font-size:0.8rem; font-weight:500;
  padding:0.3rem 0.8rem; border-radius:50px;
}

/* ── SEASONAL OVERVIEW ── */
.seasons-section { padding:5rem 5vw; background:var(--cream); }
.seasons-header { text-align:center; margin-bottom:3.5rem; }
.section-eyebrow {
  display:inline-block; font-size:0.75rem; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--green-bright); margin-bottom:0.75rem;
}
.section-title {
  font-family:var(--font-display); font-size:clamp(2rem,4vw,3rem);
  font-weight:900; color:var(--green-deep); line-height:1.1;
  margin-bottom:0.75rem;
}
.section-sub { font-size:1rem; font-weight:300; color:var(--muted); max-width:480px; margin:0 auto; }

.seasons-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.5rem;
}
.season-card {
  border-radius:10px; overflow:hidden;
  border:1.5px solid var(--border);
  background:var(--white);
  cursor:pointer;
  transition:transform 0.25s, box-shadow 0.25s;
  text-decoration:none; color:inherit;
  display:block;
}
.season-card:hover { transform:translateY(-5px); box-shadow:0 16px 40px rgba(26,58,31,0.12); }
.season-card-top {
  padding:2.5rem 2rem 1.5rem;
  display:flex; flex-direction:column; gap:1rem;
}
.season-icon { font-size:2.5rem; }
.season-name {
  font-family:var(--font-display); font-size:1.5rem; font-weight:700;
  color:var(--green-deep);
}
.season-tagline { font-size:0.9rem; color:var(--muted); font-weight:300; }
.season-card-bar { height:4px; }
.season-card-bottom {
  padding:1.2rem 2rem;
  border-top:1.5px solid var(--border);
  display:flex; justify-content:space-between; align-items:center;
}
.season-count { font-size:0.8rem; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:0.08em; }
.season-arrow { color:var(--green-bright); font-size:1.1rem; }

/* ── WHY US STRIP ── */
.why-strip {
  background:var(--green-deep); padding:4rem 5vw;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:2rem;
}
.why-item { text-align:center; }
.why-icon { font-size:2rem; margin-bottom:0.75rem; display:block; }
.why-title {
  font-family:var(--font-display); font-size:1.1rem; font-weight:700;
  color:var(--white); margin-bottom:0.4rem;
}
.why-desc { font-size:0.85rem; font-weight:300; color:rgba(255,255,255,0.6); line-height:1.6; }

/* ── SEASONAL SERVICE PAGES ── */
.season-page-hero {
  padding:4rem 5vw 3rem;
  position:relative; overflow:hidden;
}
.season-page-hero::before {
  content:''; position:absolute; inset:0;
  opacity:0.06;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 15px, currentColor 15px, currentColor 16px);
}
.season-page-eyebrow {
  display:inline-flex; align-items:center; gap:0.5rem;
  font-size:0.75rem; font-weight:600; letter-spacing:0.2em; text-transform:uppercase;
  margin-bottom:1rem;
}
.season-page-title {
  font-family:var(--font-display); font-size:clamp(2.5rem,6vw,4.5rem);
  font-weight:900; line-height:1.05; margin-bottom:1rem;
}
.season-page-sub { font-size:1.05rem; font-weight:300; max-width:560px; line-height:1.75; }

.services-list-section { padding:3rem 5vw 5rem; background:var(--cream); }
.services-grid-cards {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem;
}
.service-detail-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:8px; padding:2rem; position:relative; overflow:hidden;
  transition:box-shadow 0.25s, transform 0.25s;
}
.service-detail-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  transition:opacity 0.25s;
}
.service-detail-card:hover { box-shadow:0 12px 32px rgba(26,58,31,0.1); transform:translateY(-3px); }
.service-card-icon { font-size:2rem; margin-bottom:1rem; display:block; }
.service-card-title {
  font-family:var(--font-display); font-size:1.3rem; font-weight:700;
  color:var(--green-deep); margin-bottom:0.6rem;
}
.service-card-desc { font-size:0.9rem; color:var(--muted); font-weight:300; line-height:1.7; margin-bottom:1.2rem; }
.service-card-includes { list-style:none; }
.service-card-includes li {
  font-size:0.85rem; color:var(--charcoal); padding:0.3rem 0;
  border-top:1px solid var(--border);
  display:flex; align-items:center; gap:0.5rem;
}
.service-card-includes li::before { content:'✓'; color:var(--green-bright); font-weight:700; font-size:0.8rem; }
.service-pricing {
  margin-top:1.2rem; padding-top:1.2rem; border-top:1.5px solid var(--border);
  display:flex; justify-content:space-between; align-items:center;
}
.price-from { font-size:0.72rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); }
.price-amount { font-family:var(--font-display); font-size:1.4rem; font-weight:700; color:var(--green-bright); }

.season-cta-band {
  margin:0 5vw 5rem; border-radius:10px; padding:3rem;
  display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap;
}

/* ── ABOUT ── */
.about-layout {
  display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center;
  padding:5rem 5vw;
}
.about-visual {
  position:relative;
}
.about-card-main {
  background:var(--green-deep); border-radius:12px;
  padding:3rem; color:var(--white);
  position:relative; overflow:hidden;
}
.about-card-main::after {
  content:'🌿'; position:absolute; bottom:-1rem; right:-1rem;
  font-size:8rem; opacity:0.07; line-height:1;
}
.about-stat-big {
  font-family:var(--font-display); font-size:5rem; font-weight:900;
  color:var(--green-light); line-height:1;
}
.about-stat-label { font-size:0.9rem; color:rgba(255,255,255,0.6); margin-bottom:2rem; }
.about-card-mini {
  position:absolute; bottom:-2rem; right:-2rem;
  background:var(--white); border:1.5px solid var(--border);
  border-radius:8px; padding:1.2rem 1.5rem;
  box-shadow:0 8px 24px rgba(26,58,31,0.12);
}
.about-mini-num {
  font-family:var(--font-display); font-size:1.8rem; font-weight:900; color:var(--green-bright);
}
.about-mini-label { font-size:0.75rem; color:var(--muted); font-weight:500; text-transform:uppercase; letter-spacing:0.08em; }
.about-text { padding-bottom:2rem; }
.about-text p { font-size:0.98rem; color:var(--muted); font-weight:300; line-height:1.8; margin-bottom:1.2rem; }
.about-values {
  display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:2rem;
}
.value-item {
  background:var(--green-pale); border-left:3px solid var(--green-bright);
  padding:1rem 1.2rem; border-radius:0 6px 6px 0;
}
.value-title { font-weight:600; font-size:0.9rem; color:var(--green-deep); margin-bottom:0.2rem; }
.value-desc { font-size:0.82rem; color:var(--muted); }

.team-section { background:var(--green-pale); padding:4rem 5vw; text-align:center; }
.team-card {
  display:inline-block; background:var(--white); border:1.5px solid var(--border);
  border-radius:12px; padding:2.5rem 3rem; margin-top:2rem; max-width:420px;
}
.team-avatar {
  width:80px; height:80px; background:var(--green-deep); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:1.8rem; font-weight:900; color:var(--white);
  margin:0 auto 1rem;
}
.team-name { font-family:var(--font-display); font-size:1.4rem; font-weight:700; color:var(--green-deep); }
.team-role { font-size:0.82rem; color:var(--muted); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:1rem; }
.team-bio { font-size:0.9rem; color:var(--muted); font-weight:300; line-height:1.7; }

/* ── GALLERY ── */
.gallery-section { padding:5rem 5vw; background:var(--cream); }
.gallery-filter {
  display:flex; gap:0.5rem; flex-wrap:wrap; margin-bottom:2.5rem;
}
.filter-btn {
  font-family:var(--font-body); font-size:0.82rem; font-weight:600;
  letter-spacing:0.08em; text-transform:uppercase;
  padding:0.5rem 1.1rem; border-radius:50px; cursor:pointer; border:1.5px solid var(--border);
  background:var(--white); color:var(--muted); transition:all 0.2s;
}
.filter-btn.active,
.filter-btn:hover { background:var(--green-bright); color:var(--white); border-color:var(--green-bright); }
.gallery-mosaic {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows:220px;
  gap:10px;
}
.g-item {
  border-radius:10px; overflow:hidden; background:var(--green-pale);
  border:1.5px solid var(--border); position:relative; cursor:pointer;
  transition:transform 0.25s, box-shadow 0.25s;
}
.g-item:hover { transform:scale(1.015); box-shadow:0 14px 36px rgba(26,58,31,0.18); z-index:2; }
.g-item img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 0.45s ease;
}
.g-item:hover img { transform:scale(1.06); }
.g-item.feature { grid-column:span 2; grid-row:span 2; }
@media (max-width: 600px) {
  .g-item.feature { grid-column:span 1; grid-row:span 1; }
  .gallery-mosaic { grid-auto-rows:180px; }
}
.g-tag {
  position:absolute; bottom:0.75rem; left:0.75rem;
  background:rgba(26,58,31,0.92); color:var(--white);
  font-size:0.68rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  padding:0.3rem 0.7rem; border-radius:50px;
  opacity:0; transform:translateY(4px); transition:0.25s;
  backdrop-filter:blur(4px);
}
.g-item:hover .g-tag { opacity:1; transform:translateY(0); }
.g-badge-before {
  position:absolute; top:0.75rem; left:0.75rem;
  background:linear-gradient(135deg, #c7581f 0%, #a64419 100%);
  color:#fff;
  font-size:0.68rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  padding:0.32rem 0.7rem 0.32rem 0.6rem; border-radius:50px;
  box-shadow:0 4px 12px rgba(166,68,25,0.35);
  opacity:0; transform:translateY(-4px); transition:0.25s;
  pointer-events:none;
  display:inline-flex; align-items:center; gap:0.35rem;
  z-index:2;
}
.g-badge-before::before { content:"🍂"; font-size:0.85rem; }
.g-item:hover .g-badge-before { opacity:1; transform:translateY(0); }

.gallery-note {
  margin-top:1.5rem; font-size:0.88rem; color:var(--muted); font-style:italic; text-align:center;
}

/* ── TESTIMONIALS ── */
.testimonials-section { padding:5rem 5vw; background:var(--green-deep); }
.testimonials-section .section-title { color:var(--white); }
.testimonials-section .section-sub { color:rgba(255,255,255,0.6); }
.testimonials-carousel {
  position:relative; max-width:820px; margin:0 auto 1.5rem; padding:0 64px;
}
.t-viewport { overflow:hidden; border-radius:10px; }
.t-track {
  display:flex; transition:transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change:transform;
}
.t-slide {
  flex:0 0 100%; min-width:100%; box-sizing:border-box; padding:0.25rem;
}
.t-slide .t-card {
  padding:2.75rem 2.75rem 2.25rem; min-height:300px;
  display:flex; flex-direction:column;
}
.t-slide .t-text { font-size:1.05rem; line-height:1.8; margin-bottom:1.75rem; }
.t-slide .t-author { margin-top:auto; }
.t-slide .t-avatar { width:46px; height:46px; font-size:1rem; }
.t-slide .t-name { font-size:1rem; }
.t-slide .t-quote-mark { font-size:5.5rem; top:1rem; right:1.75rem; }
.t-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.22);
  color:var(--white); font-family:var(--font-display);
  font-size:1.9rem; line-height:1; cursor:pointer; padding:0;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  z-index:2;
}
.t-arrow:hover { background:var(--green-bright); border-color:var(--green-bright); transform:translateY(-50%) scale(1.08); }
.t-arrow:focus-visible { outline:2px solid var(--green-light); outline-offset:2px; }
.t-prev { left:0; }
.t-next { right:0; }
.t-dots {
  display:flex; justify-content:center; gap:0.4rem;
  margin:0 auto 2.5rem; padding:0;
}
.t-dot {
  /* 10x10 visible dot, 44x44 hit area via transparent padding */
  width:10px; height:10px; padding:17px;
  box-sizing:content-box;
  border-radius:50%;
  background:rgba(255,255,255,0.25);
  background-clip:content-box;
  border:0; cursor:pointer;
  transition:background 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color:transparent;
}
.t-dot:hover { background:rgba(255,255,255,0.5); }
.t-dot.active { background:var(--green-light); transform:scale(1.3); }

@media (max-width:640px) {
  /* Card uses full width; arrows drop below it side-by-side */
  .testimonials-carousel { padding:0 0 4.75rem; }
  .t-arrow {
    top:auto; bottom:0;
    transform:none;
    width:48px; height:48px; font-size:1.5rem;
    background:rgba(255,255,255,0.1);
  }
  .t-arrow:hover {
    transform:scale(1.05);
    background:var(--green-bright); border-color:var(--green-bright);
  }
  .t-prev { left:calc(50% - 60px); right:auto; }
  .t-next { right:calc(50% - 60px); left:auto; }
  .t-slide .t-card { padding:2rem 1.5rem 1.75rem; min-height:340px; }
  .t-slide .t-text { font-size:0.98rem; line-height:1.7; }
  .t-slide .t-quote-mark { font-size:4rem; top:0.75rem; right:1.25rem; }
}
.t-card {
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
  border-radius:10px; padding:2rem; position:relative; overflow:hidden;
  transition:background 0.25s;
}
.t-card:hover { background:rgba(255,255,255,0.1); }
.t-quote-mark {
  position:absolute; top:1rem; right:1.5rem;
  font-family:var(--font-display); font-size:4rem; font-weight:900;
  color:var(--green-light); opacity:0.2; line-height:1;
}
.t-stars { color:var(--gold); font-size:0.85rem; letter-spacing:2px; margin-bottom:0.9rem; }
.t-text {
  font-size:0.95rem; font-weight:300; color:rgba(255,255,255,0.8);
  line-height:1.75; font-style:italic; margin-bottom:1.5rem;
}
.t-author { display:flex; align-items:center; gap:0.75rem; }
.t-avatar {
  width:38px; height:38px; border-radius:50%;
  background:var(--green-mid); border:2px solid var(--green-light);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:0.9rem; font-weight:700; color:var(--white);
  flex-shrink:0;
}
.t-name { font-weight:600; font-size:0.9rem; color:var(--white); }
.t-service { font-size:0.78rem; color:rgba(255,255,255,0.45); }
.t-season-badge {
  display:inline-block; font-size:0.7rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  padding:0.2rem 0.6rem; border-radius:50px; margin-bottom:0.75rem;
}

.add-testimonial-box {
  background:rgba(255,255,255,0.04); border:1.5px dashed rgba(255,255,255,0.2);
  border-radius:10px; padding:2rem; text-align:center;
}
.add-testimonial-box p { color:rgba(255,255,255,0.5); font-size:0.9rem; margin-bottom:1rem; }

/* ── CONTACT ── */
.contact-section { padding:5rem 5vw; background:var(--cream); }
.contact-layout { display:grid; grid-template-columns:1fr 1.5fr; gap:5rem; align-items:start; }
.contact-info-title {
  font-family:var(--font-display); font-size:2.2rem; font-weight:900;
  color:var(--green-deep); margin-bottom:0.75rem; line-height:1.15;
}
.contact-info-sub { font-size:0.95rem; color:var(--muted); font-weight:300; margin-bottom:2.5rem; line-height:1.7; }
.contact-detail {
  display:flex; align-items:flex-start; gap:1rem;
  padding:1rem 0; border-top:1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom:1px solid var(--border); margin-bottom:2rem; }
.c-icon {
  width:40px; height:40px; background:var(--green-pale);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.c-label { font-size:0.75rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--green-bright); margin-bottom:0.15rem; }
.c-value { font-size:0.95rem; color:var(--charcoal); }
.c-value a { color:var(--charcoal); text-decoration:none; }
.c-value a:hover { color:var(--green-bright); }

.quote-form {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:12px; padding:2.5rem;
  box-shadow:0 8px 40px rgba(26,58,31,0.08);
}
.form-heading {
  font-family:var(--font-display); font-size:1.6rem; font-weight:700;
  color:var(--green-deep); margin-bottom:0.4rem;
}
.form-sub-text { font-size:0.88rem; color:var(--muted); margin-bottom:2rem; }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.f-group { margin-bottom:1.2rem; }
.f-group label {
  display:block; font-size:0.75rem; font-weight:600;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-bottom:0.45rem;
}
.f-group input, .f-group select, .f-group textarea {
  width:100%; background:var(--cream); border:1.5px solid var(--border);
  color:var(--charcoal); padding:0.75rem 1rem; font-family:var(--font-body);
  font-size:0.95rem; border-radius:6px; outline:none; transition:border-color 0.2s;
  -webkit-appearance:none;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color:var(--green-bright); background:var(--white); }
.f-group textarea { resize:vertical; min-height:100px; }
.f-group select { cursor:pointer; }

/* ── Quote-form AJAX thank-you panel ── */
.quote-thanks {
  display:none;
  text-align:center;
  padding:2.5rem 1.5rem;
  background:rgba(74,158,79,0.08);
  border:1px solid rgba(74,158,79,0.35);
  border-radius:16px;
}
.quote-thanks.show { display:block; animation:qtIn 0.35s ease-out; }
.quote-thanks .qt-check {
  width:64px; height:64px; margin:0 auto 1rem;
  border-radius:50%;
  background:var(--green-bright);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; font-weight:700;
  box-shadow:0 6px 18px rgba(26,58,31,0.25);
}
.quote-thanks h3 {
  font-family:var(--font-display); color:var(--green-deep);
  font-size:1.5rem; margin:0 0 0.5rem;
}
.quote-thanks p { color:var(--charcoal); margin:0.25rem 0; }
.quote-thanks .qt-call {
  display:inline-block; margin-top:1.25rem;
  color:var(--green-deep); font-weight:600; text-decoration:none;
}
.quote-thanks .qt-call:hover { text-decoration:underline; }
.quote-form .form-error {
  display:none;
  background:#fdecea; color:#8a1a13; border:1px solid #f1b0ab;
  padding:0.75rem 1rem; border-radius:8px;
  margin:0 0 1rem; font-size:0.95rem;
}
.quote-form .form-error.show { display:block; }
@keyframes qtIn {
  from { opacity:0; transform:translateY(8px); }
  to   { opacity:1; transform:translateY(0); }
}

.form-btn {
  width:100%; font-family:var(--font-body); font-size:0.9rem; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase; padding:1rem;
  background:var(--green-bright); color:var(--white); border:none;
  border-radius:6px; cursor:pointer; transition:background 0.2s, transform 0.15s; margin-top:0.5rem;
}
.form-btn:hover { background:var(--green-deep); transform:translateY(-2px); }

/* ── FOOTER ── */
footer {
  background:var(--dark); padding:4rem 5vw 2rem;
}
.footer-top {
  display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:4rem;
  padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,0.1);
  margin-bottom:2rem;
}
.footer-brand { }
.footer-logo-text {
  font-family:var(--font-display); font-size:1.3rem; font-weight:900;
  color:var(--white); margin-bottom:0.5rem;
}
.footer-logo-text span { color:var(--green-light); }
.footer-tagline { font-size:0.85rem; color:rgba(255,255,255,0.4); font-weight:300; margin-bottom:1.5rem; line-height:1.6; }
.footer-contact-link {
  display:flex; align-items:center; gap:0.5rem;
  font-size:0.88rem; color:rgba(255,255,255,0.7); text-decoration:none;
  margin-bottom:0.5rem; transition:color 0.2s;
}
.footer-contact-link:hover { color:var(--green-light); }
.footer-col-title {
  font-size:0.75rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase;
  color:rgba(255,255,255,0.4); margin-bottom:1.2rem;
}
.footer-links { list-style:none; }
.footer-links li { margin-bottom:0.6rem; }
.footer-links a {
  font-size:0.88rem; color:rgba(255,255,255,0.6); text-decoration:none; transition:color 0.2s;
}
.footer-links a:hover { color:var(--green-light); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
}
.footer-copy { font-size:0.78rem; color:rgba(255,255,255,0.3); }
.footer-insured {
  display:inline-flex; align-items:center; gap:0.4rem;
  background:rgba(61,122,70,0.2); border:1px solid rgba(61,122,70,0.3);
  border-radius:50px; padding:0.3rem 0.9rem;
  font-size:0.75rem; font-weight:600; color:var(--green-light);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── MOBILE ── */

/* ── Sticky mobile 'Call Us' button ── */
.mobile-call-btn {
  display:none;
  position:fixed; bottom:0.85rem; left:1rem; right:1rem;
  background:var(--green-bright); color:var(--white);
  text-align:center; text-decoration:none;
  font-family:var(--font-display); font-weight:700;
  font-size:1rem; letter-spacing:0.04em;
  padding:0.95rem 1.25rem;
  border-radius:50px;
  box-shadow:0 8px 24px rgba(26,58,31,0.4), 0 2px 6px rgba(0,0,0,0.15);
  z-index:400;
  transition:transform 0.15s ease, background 0.2s ease;
}
.mobile-call-btn:hover { background:var(--green-deep); color:var(--white); }
.mobile-call-btn:active { transform:translateY(1px); }
.mobile-call-btn .mc-icon { display:inline-block; margin-right:0.4rem; }
/* Body lock when hamburger menu is open */
body.menu-open { overflow:hidden; }

@media (max-width:768px) {
  .mobile-call-btn { display:block; }
  footer { padding-bottom:6.5rem; }
  .nav-menu { display:none; }
  .hamburger { display:flex; }
  .nav-menu.open {
    display:flex; flex-direction:column; gap:0;
    position:fixed; top:72px; left:0; right:0; bottom:0;
    background:var(--white); border-top:1px solid var(--border);
    padding:1rem 0; overflow-y:auto; z-index:300;
  }
  .nav-menu.open > li > a,
  .nav-menu.open > li > button { padding:1rem 5vw; border-radius:0; width:100%; }
  .season-dropdown { position:static; transform:none; width:100%; border:none; box-shadow:none; border-radius:0; opacity:1; pointer-events:all; }
  .topbar { display:none; }
  .hero { min-height:auto; padding:4rem 5vw 5rem; }
  .hero-badges { position:static; margin-top:2rem; justify-content:flex-start; }
  .hero-leaf { display:none; }
  .about-layout { grid-template-columns:1fr; }
  .about-visual { display:none; }
  .contact-layout { grid-template-columns:1fr; }
  .f-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:2.5rem; }
  .g-item:nth-child(n) { grid-column:span 1; grid-row:span 1; }
  .g-item:nth-child(1) { grid-column:span 2; }
  .season-cta-band { flex-direction:column; text-align:center; }
}

/* ── Launch banner (Commercial services announcement) ── */
.launch-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  position: relative;
  border-bottom: 2px solid var(--gold);
}
.launch-banner .lb-pill {
  background: var(--gold); color: var(--dark);
  font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 50px;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  flex-shrink: 0;
}
.launch-banner .lb-text { color: var(--white); font-weight: 500; }
.launch-banner .lb-text strong { font-weight: 700; }
.launch-banner .lb-cta {
  color: var(--gold); font-weight: 700; text-decoration: none;
  border-bottom: 1.5px solid var(--gold); padding-bottom: 1px;
  transition: 0.2s; white-space: nowrap; flex-shrink: 0;
}
.launch-banner .lb-cta:hover { color: var(--white); border-color: var(--white); }
.launch-banner .lb-close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; color: rgba(255,255,255,0.6);
  font-size: 1.3rem; cursor: pointer; padding: 0.25rem 0.5rem;
  line-height: 1; transition: 0.2s;
}
.launch-banner .lb-close:hover { color: var(--white); }
@media (max-width: 720px) {
  .launch-banner { flex-direction: column; gap: 0.5rem; padding: 0.85rem 2.5rem 0.85rem 1rem; text-align: center; }
  .launch-banner .lb-text { line-height: 1.4; font-size: 0.88rem; }
}

/* ── Commercial page section ── */
#page-commercial .commercial-hero {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#page-commercial .commercial-hero::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 59px, rgba(255,255,255,0.04) 59px 60px);
  pointer-events: none;
}
#page-commercial .ch-eyebrow {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 1rem;
}
#page-commercial .ch-eyebrow::before {
  content: "NEW"; background: var(--gold); color: var(--dark);
  padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.7rem;
  letter-spacing: 0.08em;
}
#page-commercial .commercial-hero h1 {
  font-family: var(--font-display); color: var(--white);
  font-size: 2.6rem; line-height: 1.1; margin-bottom: 0.85rem; position: relative;
}
#page-commercial .commercial-hero h1 em { font-style: italic; color: var(--gold); }
#page-commercial .commercial-hero p {
  color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto;
  font-size: 1.05rem; position: relative;
}
.commercial-body {
  max-width: 1150px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.5rem; align-items: center;
}
.commercial-visual {
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 40px rgba(26,58,31,0.2);
  background: var(--green-pale);   /* fallback while image loads */
}
.commercial-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.commercial-content h3 {
  font-family: var(--font-display); color: var(--green-deep);
  font-size: 1.75rem; margin-bottom: 1rem;
}
.commercial-content p { color: var(--charcoal); margin-bottom: 1.25rem; }
.commercial-features { list-style: none; margin: 1.25rem 0; padding: 0; }
.commercial-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.5rem 0; color: var(--charcoal);
}
.commercial-features li::before {
  content: "✓"; color: var(--green-bright); font-weight: 700; flex-shrink: 0;
  background: var(--green-pale); width: 22px; height: 22px;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem; margin-top: 0.15rem;
}
.commercial-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-bright); color: var(--white);
  padding: 0.95rem 1.85rem; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  margin-top: 1rem;
  box-shadow: 0 10px 24px rgba(61,122,70,0.28);
  transition: 0.25s;
}
.commercial-cta:hover { background: var(--green-deep); transform: translateY(-2px); }
.commercial-cta::after { content: "→"; transition: 0.2s; }
.commercial-cta:hover::after { transform: translateX(4px); }
.services-coming {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem; color: var(--muted); margin-top: 1.5rem; line-height: 1.55;
}
.services-coming strong { color: var(--green-deep); font-weight: 700; }
@media (max-width: 820px) {
  .commercial-body { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem; }
  #page-commercial .commercial-hero h1 { font-size: 1.9rem; }
}
