/* ============================================================
   RIDGELINE LANDSCAPE CO. — STYLESHEET
   Forest green · Charcoal · Warm tan
   ============================================================ */

:root {
  --green:        #2D5A27;
  --green-hover:  #3D7A35;
  --green-light:  #EDF5EB;
  --charcoal:     #3A3A3A;
  --charcoal-lt:  #5A5A5A;
  --tan:          #C4A882;
  --tan-light:    #F5EFE6;
  --white:        #FFFFFF;
  --off-white:    #F8F6F2;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --nav-h:   80px;
  --pad:     5rem;
  --max-w:   1200px;
  --r:       4px;
  --r-lg:    10px;
  --shadow:  0 4px 24px rgba(0,0,0,0.11);
  --shadow-lg: 0 10px 48px rgba(0,0,0,0.18);
  --trans:   0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 700; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.75rem;
}
.divider {
  width: 56px; height: 3px;
  background: var(--tan);
  margin: 1rem 0 0;
}
.divider--center { margin: 1rem auto 0; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: var(--pad) 0; }
.section--green    { background: var(--green); color: var(--white); }
.section--off-white{ background: var(--off-white); }
.section--tan-light{ background: var(--tan-light); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section--dark     { background: #1C2B19; color: var(--white); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section__header p {
  margin-top: 1rem;
  color: var(--charcoal-lt);
  font-size: 1.05rem;
}
.section--green .section__header p,
.section--charcoal .section__header p,
.section--dark .section__header p { color: rgba(255,255,255,0.72); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--r);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-hover); border-color: var(--green-hover);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,90,39,0.3);
}
.btn--secondary {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn--secondary:hover {
  background: var(--green); color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white); color: var(--green); border-color: var(--white);
}
.btn--white:hover {
  background: transparent; color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: var(--white); color: var(--green);
  transform: translateY(-2px);
}
.btn--tan {
  background: var(--tan); color: var(--white); border-color: var(--tan);
}
.btn--tan:hover {
  background: #b8956e; border-color: #b8956e; transform: translateY(-2px);
}
.btn--lg { padding: 1.1rem 2.5rem; font-size: 0.88rem; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav--transparent { background: transparent; }
.nav--solid { background: #1C2B19; box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.nav__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 2rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo-img { height: 72px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 0.125rem; }
.nav__link {
  padding: 0.5rem 0.875rem;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border-radius: var(--r);
  transition: color var(--trans);
}
.nav__link:hover { color: var(--tan); }
.nav__link--active { color: var(--tan); }
.nav__cta {
  background: var(--green); color: var(--white) !important;
  border-radius: var(--r); margin-left: 0.5rem;
}
.nav__cta:hover { background: var(--green-hover); color: var(--white) !important; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 0.5rem;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: #1C2B19; z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile .nav__link { font-size: 1.2rem; padding: 0.75rem 2rem; }
.nav__mobile .nav__cta { margin-left: 0; margin-top: 1rem; font-size: 1rem; padding: 0.875rem 2.5rem; }

/* ---- HERO (home) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../Assets/hero-home.png');
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    125deg,
    rgba(28,43,25,0.82) 0%,
    rgba(28,43,25,0.55) 55%,
    rgba(58,58,58,0.45) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 2rem;
  padding-top: var(--nav-h);
}
/* Hero brand block — large logo + pill stacked, synced width */
.hero__brand-block {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 2rem;
  transform-origin: left center;
  will-change: opacity, transform;
}
.hero__logo-display-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}

.hero__pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(196,168,130,0.15);
  border: 1px solid rgba(196,168,130,0.45);
  color: var(--tan);
  padding: 0.4rem 1.1rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 0;
}
.hero__pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--tan); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.hero__heading {
  color: var(--white);
  max-width: 740px; margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero__heading em { color: var(--tan); font-style: normal; }
.hero__sub {
  color: rgba(255,255,255,0.85); font-size: 1.1rem;
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 5rem; }
.hero__scroll {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero__scroll-line { width: 44px; height: 1px; background: rgba(255,255,255,0.3); }

/* ---- TRUST BAR ---- */
.trust-bar { background: #1C2B19; padding: 1.125rem 0; }
.trust-bar__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 3rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.625rem;
  color: rgba(255,255,255,0.82); font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.03em;
}
.trust-item__icon { color: var(--tan); font-size: 1rem; }

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-7px); box-shadow: var(--shadow-lg);
}
.service-card__image { height: 220px; overflow: hidden; }
.service-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__image img { transform: scale(1.07); }
.service-card__body { padding: 1.625rem; }
.service-card__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.3rem; margin-bottom: 1rem;
}
.service-card__body h3 { color: var(--charcoal); margin-bottom: 0.5rem; }
.service-card__body p { color: var(--charcoal-lt); font-size: 0.9rem; line-height: 1.65; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  margin-top: 1rem; color: var(--green);
  font-size: 0.84rem; font-weight: 700; letter-spacing: 0.04em;
  transition: gap 0.25s ease;
}
.service-card__link:hover { gap: 0.7rem; }

/* ---- WHY RIDGELINE ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}
.why-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.why-card:last-child { border-right: none; }
.why-card__number {
  font-family: var(--font-head);
  font-size: 5rem; font-weight: 700; color: rgba(196,168,130,0.25);
  line-height: 1; margin-bottom: 0.5rem;
}
.why-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.why-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.75; }

/* ---- PROJECT GRID ---- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.project-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}
.project-card--featured { grid-column: span 2; aspect-ratio: 16/9; }
.project-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card__img { transform: scale(1.06); }
.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,25,0.88) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__type {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tan); margin-bottom: 0.25rem;
}
.project-card__label {
  color: var(--white); font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 600; letter-spacing: 0.04em;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; box-shadow: var(--shadow);
  position: relative; border-top: 4px solid var(--green);
}
.testimonial-card__quote {
  font-family: Georgia, serif; font-size: 4rem;
  color: var(--tan); opacity: 0.3;
  position: absolute; top: 0.75rem; left: 1.25rem;
  line-height: 1;
}
.testimonial-card__stars {
  color: #F59E0B; font-size: 0.85rem;
  letter-spacing: 0.1em; margin-bottom: 1rem; margin-top: 0.5rem;
}
.testimonial-card__text {
  color: var(--charcoal); font-size: 0.93rem;
  line-height: 1.75; margin-bottom: 1.25rem; font-style: italic;
}
.testimonial-card__author {
  font-weight: 700; font-size: 0.85rem; color: var(--green);
}

/* ---- SERVICE AREA ---- */
.service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.service-area__content h2 { margin-bottom: 1rem; }
.service-area__content p { color: var(--charcoal-lt); margin-bottom: 1.5rem; }
.service-area__towns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem;
  margin-bottom: 2rem;
}
.service-area__town {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--charcoal-lt);
}
.service-area__town::before { content: '✓'; color: var(--green); font-weight: 800; }
.service-area__map {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 400px; background: #D8D8D3;
}
.service-area__map iframe { width: 100%; height: 100%; border: 0; }

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative; overflow: hidden;
  padding: 6rem 0; text-align: center;
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background-image: url('../Assets/hero-services.png');
  background-size: cover; background-position: center;
  filter: brightness(0.35) saturate(0.8);
}
.cta-banner__green {
  position: absolute; inset: 0;
  background: rgba(45,90,39,0.75);
}
.cta-banner__inner {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto; padding: 0 2rem;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---- CHECKLIST PROMO ---- */
.checklist-promo {
  background: var(--tan-light);
  border: 2px solid var(--tan);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.checklist-promo__icon { font-size: 2.75rem; color: var(--tan); flex-shrink: 0; }
.checklist-promo__text h3 { margin-bottom: 0.375rem; }
.checklist-promo__text p { font-size: 0.9rem; color: var(--charcoal-lt); }

/* ---- FOOTER ---- */
.footer { background: #111C10; color: rgba(255,255,255,0.65); padding: 4.5rem 0 2rem; }
.footer__grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer__brand p {
  margin: 0.875rem 0; font-size: 0.88rem; line-height: 1.75; max-width: 280px;
}
.footer__logo { height: 160px; width: auto; }
.footer__tagline {
  font-size: 0.7rem !important; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tan) !important; margin-top: 0.375rem !important;
}
.footer__social { display: flex; gap: 0.625rem; margin-top: 1.25rem; }
.footer__social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.8rem; font-weight: 700;
  transition: var(--trans);
}
.footer__social-link:hover { border-color: var(--tan); color: var(--tan); }
.footer__col h4 {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  color: rgba(255,255,255,0.55); font-size: 0.875rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--tan); }
.footer__contact-items { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact-item { font-size: 0.875rem; line-height: 1.5; }
.footer__contact-item a { color: rgba(255,255,255,0.65); }
.footer__contact-item a:hover { color: var(--tan); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.8rem;
}
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: var(--tan); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,43,25,0.88) 0%, rgba(45,90,39,0.62) 60%, rgba(58,58,58,0.5) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
}
.page-hero__content h1 { color: var(--white); max-width: 720px; }
.page-hero__content p {
  color: rgba(255,255,255,0.82); margin-top: 1rem;
  max-width: 560px; font-size: 1.05rem;
}

/* ---- BREADCRUMB ---- */
.breadcrumb { background: var(--off-white); padding: 0.75rem 0; border-bottom: 1px solid #E4DDD8; margin-top: var(--nav-h); }
.breadcrumb__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--charcoal-lt);
}
.breadcrumb__inner a { color: var(--green); font-weight: 700; }
.breadcrumb__inner a:hover { text-decoration: underline; }

/* ---- STATS ROW ---- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--tan);
  gap: 1px;
}
.stat-item { background: var(--white); padding: 2.5rem 1rem; text-align: center; }
.stat-item__number {
  font-family: var(--font-head); font-size: 2.75rem; font-weight: 700;
  color: var(--green); line-height: 1;
}
.stat-item__suffix { font-size: 2rem; color: var(--tan); }
.stat-item__label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal-lt); margin-top: 0.5rem;
}

/* ---- ABOUT STORY ---- */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.story-grid__image {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  position: relative;
  transform: translateX(-20%);
}
.story-grid__image img { width: 100%; height: 100%; object-fit: cover; }

/* Override fade-up animation to preserve the X shift */
.story-grid__image.fade-up {
  opacity: 0;
  transform: translateX(-20%) translateY(28px);
}
.story-grid__image.fade-up.visible {
  opacity: 1;
  transform: translateX(-20%) translateY(0);
}
.story-grid__badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--green); color: var(--white);
  padding: 1rem 1.5rem; border-radius: var(--r-lg);
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
  line-height: 1.3;
}
.story-grid__badge span { display: block; font-size: 0.7rem; opacity: 0.75; letter-spacing: 0.08em; text-transform: uppercase; }
.story-grid__body h2 { margin-bottom: 1.25rem; }
.story-grid__body p { color: var(--charcoal-lt); margin-bottom: 1rem; line-height: 1.8; }
.story-grid__body p:last-of-type { margin-bottom: 2rem; }

/* ---- VALUES ---- */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  padding: 2rem 1.75rem; background: var(--white);
  border-radius: var(--r-lg); border-left: 4px solid var(--green);
  box-shadow: var(--shadow);
}
.value-card__icon { font-size: 2rem; color: var(--green); margin-bottom: 0.875rem; }
.value-card h3 { color: var(--charcoal); margin-bottom: 0.5rem; }
.value-card p { color: var(--charcoal-lt); font-size: 0.9rem; line-height: 1.7; }

/* ---- SERVICE DETAIL (alternating) ---- */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center; padding: 3.5rem 0;
  border-bottom: 1px solid #ECEAE6;
}
.service-detail:last-child { border-bottom: none; }
.service-detail--flip .service-detail__image { order: 2; }
.service-detail--flip .service-detail__body   { order: 1; }
.service-detail__image {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
}
.service-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__body .eyebrow { color: var(--green); }
.service-detail__body h2 { margin-bottom: 1rem; }
.service-detail__body p { color: var(--charcoal-lt); line-height: 1.8; margin-bottom: 1.25rem; }
.service-detail__list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.service-detail__list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--charcoal);
}
.service-detail__list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

/* ---- SEASONAL PACKAGES ---- */
.seasonal-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.seasonal-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.seasonal-card__header { padding: 1.5rem 1.75rem; }
.seasonal-card--spring .seasonal-card__header { background: var(--green); }
.seasonal-card--summer .seasonal-card__header { background: #4A7C26; }
.seasonal-card--fall   .seasonal-card__header { background: #7D5426; }
.seasonal-card--winter .seasonal-card__header { background: #3A5068; }
.seasonal-card__header h3 { color: var(--white); margin: 0; }
.seasonal-card__header .eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; }
.seasonal-card__body { padding: 1.5rem 1.75rem; background: var(--white); }
.seasonal-card__body li {
  display: flex; gap: 0.5rem; font-size: 0.87rem;
  color: var(--charcoal-lt); padding: 0.25rem 0;
}
.seasonal-card__body li::before { content: '→'; color: var(--green); flex-shrink: 0; }

/* ---- BEFORE/AFTER SLIDER ---- */
.ba-wrapper { position: relative; }
.ba-slider {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  cursor: ew-resize; user-select: none;
  box-shadow: var(--shadow-lg);
}
.ba-before { display: block; width: 100%; }
.ba-before img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after {
  position: absolute; inset: 0;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}
.ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-line {
  position: absolute; top: 0; left: 50%;
  width: 3px; height: 100%; background: var(--white);
  transform: translateX(-50%); z-index: 10; pointer-events: none;
}
.ba-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  z-index: 11;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.1rem; font-weight: 700;
  letter-spacing: -2px; pointer-events: none;
}
.ba-label {
  position: absolute; bottom: 1rem; z-index: 5;
  padding: 0.3rem 0.875rem;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 100px;
  pointer-events: none;
}
.ba-label--before { right: 1rem; }
.ba-label--after  { left: 1rem; }
.ba-caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.82rem; color: var(--charcoal-lt);
  font-style: italic;
}

/* ---- GALLERY ---- */
.gallery-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem;
}
.gallery-tab {
  padding: 0.5rem 1.375rem; border: 2px solid #D0CBC5;
  border-radius: 100px; background: transparent;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--charcoal-lt); transition: var(--trans);
}
.gallery-tab.active,
.gallery-tab:hover {
  background: var(--green); border-color: var(--green); color: var(--white);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:nth-child(3n+1) { aspect-ratio: 4/3; }
.gallery-item:nth-child(3n+2) { aspect-ratio: 1/1; }
.gallery-item:nth-child(3n+3) { aspect-ratio: 16/10; }
.gallery-item.hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,25,0.85) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem;
}
.gallery-item:hover .gallery-item__info { opacity: 1; }
.gallery-item__cat {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tan); margin-bottom: 0.2rem;
}
.gallery-item__title { font-family: var(--font-head); font-size: 1rem; color: var(--white); font-weight: 600; }

/* ---- ESTIMATE FORM PAGE ---- */
.estimate-layout { display: grid; grid-template-columns: 1.8fr 1fr; gap: 4rem; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.84rem; font-weight: 700; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #DED8D3; border-radius: var(--r);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--charcoal); background: var(--white);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233A3A3A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
.form-submit { margin-top: 0.5rem; }
.form-notice { font-size: 0.78rem; color: var(--charcoal-lt); margin-top: 0.75rem; }

.estimate-sidebar {
  background: var(--off-white); border-radius: var(--r-lg);
  padding: 2rem; position: sticky; top: calc(var(--nav-h) + 1.5rem);
}
.estimate-sidebar h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.sidebar-items { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-item { display: flex; gap: 1rem; align-items: flex-start; }
.sidebar-item__icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.sidebar-item h4 { font-size: 0.88rem; margin-bottom: 0.2rem; }
.sidebar-item p { font-size: 0.82rem; color: var(--charcoal-lt); }
.sidebar-divider { border: none; border-top: 1px solid #DDD8D3; margin: 1.5rem 0; }
.sidebar-cta { text-align: center; }
.sidebar-cta p { font-size: 0.84rem; color: var(--charcoal-lt); margin-bottom: 1rem; }

.success-msg {
  display: none; padding: 1.25rem 1.5rem;
  background: var(--green-light); border: 2px solid var(--green);
  border-radius: var(--r-lg); color: var(--green);
  font-weight: 600; margin-top: 1.25rem; text-align: center;
}

/* ---- CONTACT PAGE ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item__icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.1rem;
}
.contact-info-item h4 {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal-lt); margin-bottom: 0.25rem;
}
.contact-info-item a { color: var(--charcoal); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--green); }
.contact-info-item p { font-size: 0.95rem; color: var(--charcoal); }
.map-container { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); height: 380px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ---- SCROLL TOP ---- */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
  border: none; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(45,90,39,0.4);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 200;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-hover); }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-green  { color: var(--green); }
.text-tan    { color: var(--tan); }
.mt-2 { margin-top: 2rem; }
.mb-half { margin-bottom: 0.5rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-card--featured { grid-column: span 2; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail--flip .service-detail__image,
  .service-detail--flip .service-detail__body { order: 0; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid__image { max-width: 560px; transform: none; }
  .story-grid__image.fade-up { transform: translateY(28px); }
  .story-grid__image.fade-up.visible { transform: translateY(0); }
  .estimate-layout { grid-template-columns: 1fr; }
  .estimate-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-area { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-area__map { height: 320px; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --pad: 3.5rem; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card--featured { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .service-area__towns { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .why-card:last-child { border-bottom: none; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .checklist-promo { flex-direction: column; text-align: center; }
}
