/* =====================================================================
   Michael E. Jones Landscaping & Irrigation
   Quality Landscaping Since 1984
   Main Stylesheet — clean HTML5 / CSS3, no frameworks
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Design Tokens (CSS Variables)
   ------------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --green-primary: #355E3B;
  --green-pine: #21412A;
  --gold-warm: #C8A96A;
  --gold-dark: #b08f4d;
  --stone-light: #F5F2EC;
  --earth-rich: #7A5C3E;
  --charcoal: #2A2A2A;
  --white: #FFFFFF;

  /* Derived / Functional Colors */
  --text-dark: #2A2A2A;
  --text-muted: #5b5b53;
  --text-light: #f3f1ea;
  --border-soft: #e3ddd0;
  --bg-section: #ffffff;
  --bg-alt: #F5F2EC;
  --overlay-dark: rgba(33, 65, 42, 0.72);
  --overlay-darker: rgba(20, 38, 25, 0.85);

  /* Typography */
  --font-head: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans Pro', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-btn: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 920px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(33, 65, 42, 0.08);
  --shadow-md: 0 8px 26px rgba(33, 65, 42, 0.12);
  --shadow-lg: 0 18px 48px rgba(33, 65, 42, 0.18);
  --transition: 0.25s ease;

  --header-h: 96px;
}

/* ---------------------------------------------------------------------
   2. Reset & Base
   ------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--green-pine);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

/* ---------------------------------------------------------------------
   3. Layout Helpers
   ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--space-2xl);
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--pine {
  background-color: var(--green-pine);
}

.section--green {
  background-color: var(--green-primary);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}

.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-btn);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-head h2 { margin-bottom: 0.85rem; }

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

.section--pine .section-head h2,
.section--green .section-head h2 { color: var(--white); }

.section--pine .section-head p,
.section--green .section-head p { color: rgba(255, 255, 255, 0.82); }

.divider-leaf {
  width: 64px;
  height: 3px;
  background: var(--gold-warm);
  margin: 1.1rem auto 0;
  border-radius: 2px;
  position: relative;
}

.text-center { text-align: center; }

/* ---------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-btn);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.9rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background-color: var(--gold-warm);
  color: var(--green-pine);
  border-color: var(--gold-warm);
}

.btn--primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--green-pine);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--green:hover {
  background-color: var(--green-pine);
  border-color: var(--green-pine);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

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

.btn--outline-dark {
  background-color: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}

.btn--outline-dark:hover {
  background-color: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.btn--block { width: 100%; }

/* ---------------------------------------------------------------------
   5. Header / Navigation
   ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--transition), background-color var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

/* Top utility bar */
.topbar {
  background-color: var(--green-pine);
  color: var(--text-light);
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding-block: 0.35rem;
}

.topbar-left { letter-spacing: 0.03em; }

.topbar-left strong { color: var(--gold-warm); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.topbar-right a {
  color: var(--text-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-right a:hover { color: var(--gold-warm); }

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-primary);
  display: grid;
  place-items: center;
  border: 2px solid var(--gold-warm);
}

.logo-mark svg { width: 28px; height: 28px; }

.logo-text { line-height: 1.1; }

.logo-text .logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--green-pine);
  display: block;
}

.logo-text .logo-tag {
  font-family: var(--font-btn);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Primary nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* CTA block that lives inside the mobile drawer only */
.nav-mobile-cta { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-list a {
  font-family: var(--font-btn);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--gold-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-list a:hover { color: var(--green-primary); }
.nav-list a:hover::after { transform: scaleX(1); }

.nav-list a.active {
  color: var(--green-primary);
  font-weight: 600;
}

.nav-list a.active::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-btn);
}

.header-phone span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.header-phone a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-pine);
}

.header-phone a:hover { color: var(--gold-dark); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--green-pine);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(var(--overlay-dark), var(--overlay-darker)),
    url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  padding-block: clamp(4rem, 12vw, 9rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(20, 38, 25, 0.5), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero .est-badge { margin-bottom: 1.6rem; }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero h1 .accent { color: var(--gold-warm); }

.hero-sub {
  font-size: 1.22rem;
  max-width: 620px;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-btn);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-note svg { width: 20px; height: 20px; color: var(--gold-warm); }

/* Page banner (interior heroes) */
.page-banner {
  position: relative;
  color: var(--white);
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background:
    linear-gradient(var(--overlay-dark), var(--overlay-darker)),
    var(--green-pine);
  background-size: cover;
  background-position: center;
}

.page-banner--about {
  background-image:
    linear-gradient(var(--overlay-dark), var(--overlay-darker)),
    url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1920&q=80");
}

.page-banner--services {
  background-image:
    linear-gradient(var(--overlay-dark), var(--overlay-darker)),
    url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=1920&q=80");
}

.page-banner--projects {
  background-image:
    linear-gradient(var(--overlay-dark), var(--overlay-darker)),
    url("https://images.unsplash.com/photo-1564540586988-aa4e53c3d799?auto=format&fit=crop&w=1920&q=80");
}

.page-banner--contact {
  background-image:
    linear-gradient(var(--overlay-dark), var(--overlay-darker)),
    url("https://images.unsplash.com/photo-1591857177580-dc82b9ac4e1e?auto=format&fit=crop&w=1920&q=80");
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 0.9rem;
}

.page-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

.breadcrumb {
  font-family: var(--font-btn);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a { color: var(--gold-warm); }
.breadcrumb span { margin-inline: 0.4rem; }

/* ---------------------------------------------------------------------
   7. "Established" Badge component
   ------------------------------------------------------------------ */
.est-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(33, 65, 42, 0.55);
  border: 1px solid var(--gold-warm);
  border-radius: 999px;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  backdrop-filter: blur(2px);
}

.est-badge .est-years {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-warm);
  color: var(--green-pine);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
}

.est-badge .est-copy {
  font-family: var(--font-btn);
  line-height: 1.15;
}

.est-badge .est-copy strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.est-badge .est-copy span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-warm);
}

/* Solid badge variant for light backgrounds */
.est-badge--solid {
  background: var(--stone-light);
  border-color: var(--gold-warm);
}

.est-badge--solid .est-copy strong { color: var(--green-pine); }

/* ---------------------------------------------------------------------
   8. Trust Bar
   ------------------------------------------------------------------ */
.trust-bar {
  background: var(--green-pine);
  color: var(--text-light);
  padding-block: 1.6rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-inline: 1rem;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.trust-item svg { width: 30px; height: 30px; color: var(--gold-warm); }

.trust-item strong {
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--white);
}

.trust-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------------------------------------------------------------------
   9. Cards & Grids
   ------------------------------------------------------------------ */
.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service card */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-warm);
}

.service-card-media {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-media img { transform: scale(1.06); }

.service-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--stone-light);
  color: var(--green-primary);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { margin-bottom: 0.6rem; }

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

.service-card .card-link {
  margin-top: auto;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card .card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card .card-link:hover { color: var(--gold-dark); }
.service-card .card-link:hover svg { transform: translateX(4px); }

/* Feature card (Why choose us) */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-soft);
  border-top: 4px solid var(--green-primary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--gold-warm);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}

.feature-card .feature-icon svg { width: 30px; height: 30px; }

.feature-card h3 { margin-bottom: 0.6rem; font-size: 1.3rem; }

.feature-card p { color: var(--text-muted); font-size: 0.98rem; }

/* ---------------------------------------------------------------------
   10. About Preview / Split sections
   ------------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split--reverse .split-media { order: 2; }

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.split-media .media-accent {
  position: absolute;
  inset: -14px -14px auto auto;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold-warm);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.split-content .eyebrow {
  display: inline-block;
  font-family: var(--font-btn);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.split-content h2 { margin-bottom: 1.1rem; }

.split-content p { color: var(--text-muted); margin-bottom: 1.1rem; }

.signature {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--green-primary);
  margin-top: 1.5rem;
}

.signature span {
  display: block;
  font-family: var(--font-btn);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Check list */
.check-list { display: grid; gap: 0.75rem; margin: 1.4rem 0; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1rem;
}

.check-list li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--green-primary);
  margin-top: 2px;
}

/* Floating stat card on media */
.media-stat {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--gold-warm);
  color: var(--green-pine);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  font-family: var(--font-head);
  line-height: 1.1;
}

.media-stat strong { font-size: 2rem; display: block; }
.media-stat span { font-family: var(--font-btn); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; }

/* ---------------------------------------------------------------------
   11. Statistics Section
   ------------------------------------------------------------------ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat {
  padding: 1.5rem 1rem;
}

.stat .stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--gold-warm);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat .stat-label {
  font-family: var(--font-btn);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.section--pine .stat .stat-label,
.section--green .stat .stat-label { color: rgba(255, 255, 255, 0.85); }

/* ---------------------------------------------------------------------
   12. Featured Projects / Portfolio
   ------------------------------------------------------------------ */
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-media {
  height: 250px;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.project-card:hover .project-media img { transform: scale(1.07); }

.project-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-warm);
  color: var(--green-pine);
  font-family: var(--font-btn);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  z-index: 2;
}

.project-body {
  padding: 1.5rem;
}

.project-body .project-loc {
  font-family: var(--font-btn);
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.project-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.project-body p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 1rem; }

.project-result {
  border-top: 1px solid var(--border-soft);
  padding-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.project-result strong { color: var(--green-primary); }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  font-family: var(--font-btn);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border: 2px solid var(--border-soft);
  background: var(--white);
  color: var(--charcoal);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.filter-btn.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}

.project-card.is-hidden {
  display: none;
}

/* ---------------------------------------------------------------------
   13. Before / After
   ------------------------------------------------------------------ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-figure {
  position: relative;
  margin: 0;
}

.ba-figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.ba-figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--green-pine);
  color: var(--white);
  font-family: var(--font-btn);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.ba-figure.after figcaption { background: var(--gold-warm); color: var(--green-pine); }

.ba-body {
  padding: 1.4rem 1.6rem;
}

.ba-body h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.ba-body p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------------------------------------------------------------------
   14. Testimonials
   ------------------------------------------------------------------ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card .quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold-warm);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.stars {
  display: flex;
  gap: 0.15rem;
  color: var(--gold-warm);
  margin-bottom: 1rem;
}

.stars svg { width: 18px; height: 18px; }

.testimonial-card blockquote {
  font-size: 1.02rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.1rem;
}

.testimonial-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--gold-warm);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author .name { font-weight: 700; color: var(--green-pine); font-family: var(--font-head); font-size: 0.98rem; }
.testimonial-author .meta { font-size: 0.84rem; color: var(--text-muted); }

/* ---------------------------------------------------------------------
   15. CTA Section
   ------------------------------------------------------------------ */
.cta-band {
  position: relative;
  background:
    linear-gradient(rgba(33, 65, 42, 0.92), rgba(33, 65, 42, 0.92)),
    url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?auto=format&fit=crop&w=1920&q=80") center/cover fixed no-repeat;
  color: var(--white);
  text-align: center;
  padding-block: var(--space-2xl);
}

.cta-band h2 { color: var(--white); margin-bottom: 1rem; max-width: 720px; margin-inline: auto; }
.cta-band p { color: rgba(255, 255, 255, 0.88); font-size: 1.15rem; max-width: 600px; margin: 0 auto 2rem; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-phone-lg {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold-warm);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.cta-phone-lg:hover { color: var(--white); }

/* ---------------------------------------------------------------------
   16. Services page — detailed blocks
   ------------------------------------------------------------------ */
/* Service jump-link index */
.jump-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--gold-warm);
  border-radius: var(--radius);
  padding: 0.95rem 1.1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-pine);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.jump-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--green-primary);
  color: var(--green-primary);
}

.jump-card svg { width: 18px; height: 18px; color: var(--gold-dark); flex-shrink: 0; }

.service-detail {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.service-detail + .service-detail { margin-top: var(--space-xl); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-media { order: 2; }

.service-detail-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  max-height: 460px;
  object-fit: cover;
}

.service-detail-content .service-number {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.service-detail-content h2 { margin: 0.3rem 0 1rem; }

.service-meta {
  display: grid;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.service-meta-block h4 {
  font-family: var(--font-btn);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.service-meta-block p { color: var(--text-muted); font-size: 0.98rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag-list li {
  font-family: var(--font-btn);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-primary);
  background: var(--stone-light);
  border: 1px solid var(--border-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem 1.8rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--border-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.process-step .step-num {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  border: 3px solid var(--gold-warm);
}

.process-step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }

.process-connector {
  display: none;
}

/* ---------------------------------------------------------------------
   17. About page extras
   ------------------------------------------------------------------ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.value-card .value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--stone-light);
  color: var(--green-primary);
  display: grid;
  place-items: center;
}

.value-card .value-icon svg { width: 32px; height: 32px; }

.value-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--text-muted); font-size: 0.96rem; }

/* Timeline */
.timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gold-warm);
}

.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 2.2rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item .tl-dot {
  position: absolute;
  left: 8px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-primary);
  border: 3px solid var(--gold-warm);
}

.timeline-item .tl-year {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.timeline-item h3 { font-size: 1.2rem; margin: 0.2rem 0 0.4rem; }
.timeline-item p { color: var(--text-muted); }

/* Team cards */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-media {
  height: 280px;
  background: var(--green-primary);
  overflow: hidden;
}

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

.team-body { padding: 1.5rem; }
.team-body h3 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.team-body .role { font-family: var(--font-btn); font-weight: 600; color: var(--gold-dark); font-size: 0.9rem; margin-bottom: 0.8rem; }
.team-body p { color: var(--text-muted); font-size: 0.94rem; }

/* Service area map block */
.map-embed {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.5rem;
  margin-top: 1.4rem;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.98rem;
}

.area-list li svg { width: 18px; height: 18px; color: var(--green-primary); flex-shrink: 0; }

/* ---------------------------------------------------------------------
   18. Contact page
   ------------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-info-card {
  background: var(--green-pine);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-line .ci-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-warm);
  display: grid;
  place-items: center;
}

.contact-line .ci-icon svg { width: 22px; height: 22px; }

.contact-line .ci-label {
  font-family: var(--font-btn);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-warm);
}

.contact-line .ci-value { font-size: 1.05rem; color: var(--white); font-weight: 600; }
.contact-line .ci-value a { color: var(--white); }
.contact-line .ci-value a:hover { color: var(--gold-warm); }
.contact-line .ci-sub { font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); }

.contact-hours {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.contact-hours h4 { color: var(--gold-warm); font-family: var(--font-btn); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.85);
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-card h3 { margin-bottom: 0.4rem; }
.form-card .form-intro { color: var(--text-muted); margin-bottom: 1.8rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.4rem;
}

.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--font-btn);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group label .req { color: #b3261e; }

.form-control {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(53, 94, 59, 0.12);
}

textarea.form-control { resize: vertical; min-height: 130px; }

.form-control.invalid { border-color: #b3261e; background: #fdf3f2; }

.field-error {
  color: #b3261e;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  font-family: var(--font-btn);
  display: none;
}

.field-error.show { display: block; }

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--stone-light);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
}

.checkbox-line input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--green-primary); flex-shrink: 0; }
.checkbox-line label { font-size: 0.94rem; color: var(--text-dark); font-family: var(--font-body); margin: 0; }
.checkbox-line label strong { color: var(--green-primary); }

.radio-row { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.radio-row label { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-body); font-weight: 400; font-size: 0.96rem; margin: 0; cursor: pointer; }
.radio-row input { accent-color: var(--green-primary); width: 17px; height: 17px; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--green-pine);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
  transition: transform var(--transition);
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.faq-question .faq-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-question .faq-icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform var(--transition); }

.faq-item.open .faq-question .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------------
   19. Footer
   ------------------------------------------------------------------ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: var(--space-lg);
}

.footer-brand .logo-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.3rem;
}

.footer-brand .logo-tag {
  font-family: var(--font-btn);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-warm);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.95rem; margin-bottom: 1rem; }

.footer-motto {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold-warm);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-btn);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-col ul a:hover { color: var(--gold-warm); padding-left: 4px; }

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact-line svg { width: 20px; height: 20px; color: var(--gold-warm); flex-shrink: 0; margin-top: 2px; }
.footer-contact-line a { color: rgba(255, 255, 255, 0.85); }
.footer-contact-line a:hover { color: var(--gold-warm); }

.footer-phone-big {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
}

.footer-bottom .footer-badges { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   20. Floating action button (mobile) + Back to top
   ------------------------------------------------------------------ */
.fab-estimate {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  box-shadow: var(--shadow-lg);
}

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  border: 2px solid var(--gold-warm);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 850;
  box-shadow: var(--shadow-md);
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-pine); }
.back-to-top svg { width: 22px; height: 22px; }

/* ---------------------------------------------------------------------
   21. Modal / Notification
   ------------------------------------------------------------------ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 38, 25, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.show { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  text-align: center;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(0.97);
  transition: transform var(--transition);
}

.modal-overlay.show .modal { transform: translateY(0) scale(1); }

.modal .modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: grid;
  place-items: center;
}

.modal .modal-icon svg { width: 38px; height: 38px; }

.modal h3 { margin-bottom: 0.6rem; }
.modal p { color: var(--text-muted); margin-bottom: 1.6rem; }
.modal .btn { min-width: 160px; }

/* ---------------------------------------------------------------------
   22. Scroll reveal animation
   ------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   23. Intro strip / generic utilities
   ------------------------------------------------------------------ */
.lead { font-size: 1.2rem; color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.callout {
  background: var(--stone-light);
  border-left: 4px solid var(--gold-warm);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--green-pine);
}

/* ---------------------------------------------------------------------
   24. Responsive
   ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  :root { --header-h: 84px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-list { gap: 0; }
  .nav-list a { padding: 0.6rem 0.6rem; font-size: 0.9rem; }
  .header-phone { display: none; }
}

@media (max-width: 920px) {
  .header-cta .btn { display: none; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(320px, 84vw);
    height: calc(100vh - var(--header-h));
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid var(--border-soft);
  }

  .nav.open { transform: translateX(0); }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-list a {
    padding: 0.95rem 0.5rem;
    border-bottom: 1px solid var(--border-soft);
    font-size: 1.05rem;
  }

  .nav-list a::after { display: none; }

  .nav-mobile-cta {
    margin-top: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav-mobile-cta .btn { display: inline-flex; width: 100%; }

  .nav-mobile-phone {
    text-align: center;
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--green-pine);
    font-weight: 700;
    margin-top: 0.5rem;
  }

  /* layout collapses */
  .grid-3, .grid-4, .stats-grid, .trust-grid, .values-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }

  .split, .service-detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media,
  .service-detail:nth-child(even) .service-detail-media { order: 0; }

  .media-stat { left: 1rem; bottom: 1rem; }

  .fab-estimate { display: inline-flex; }

  .back-to-top { bottom: 5.5rem; }

  .topbar-left { display: none; }
  .topbar .container { justify-content: center; }
}

@media (max-width: 680px) {
  body { font-size: 1rem; }

  .section { padding-block: var(--space-xl); }

  .grid-2, .grid-3, .grid-4,
  .stats-grid, .trust-grid, .values-grid,
  .process-grid, .ba-grid, .ba-pair, .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item:not(:last-child)::after { display: none; }
  .trust-item { padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .trust-item:last-child { border-bottom: none; }

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

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  .form-card { padding: 1.6rem; }

  .logo-text .logo-name { font-size: 1rem; }
  .logo-mark { width: 44px; height: 44px; }

  .media-stat { position: static; margin-top: 1rem; display: inline-block; }
  .split-media .media-accent { display: none; }

  .cta-band { background-attachment: scroll; }
}

@media (max-width: 420px) {
  .topbar-right { gap: 0.8rem; font-size: 0.78rem; }
}
