/* O'Brien Air Conditioning - Foundation Styles */
/* Mobile-first, premium design system per CONTRACT.md */

:root {
  /* § 3 Color Tokens */
  --ink:        #101815;
  --ink-soft:   #4f5d58;
  --canvas:     #f6f7f4;
  --canvas-2:   #edf1ed;
  --paper:      #ffffff;
  --line:       #d9e0d8;
  --green:      #157a45;
  --green-deep: #0b5530;
  --green-bright: #23a65b;
  --charcoal:   #101815;
  --gold:       #b98635;
  --steel:      #19343a;
  --shadow-sm:  0 1px 2px rgba(16,24,21,.06), 0 8px 24px rgba(16,24,21,.08);
  --shadow-md:  0 20px 48px rgba(16,24,21,.14);
  --radius:     8px;
  --radius-lg:  8px;
  --radius-pill: 999px;
  --header-h:   76px;

  /* § 2 Typography Tokens */
  --step-hero: 3.95rem;
  --step-h2: 3rem;
  --step-h3: 1.35rem;
  --step-body: 1rem;
  --step-eyebrow: 0.78rem;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--step-body);
  line-height: 1.6;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(245,247,242,0) 18rem),
    var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Lock body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Focus visibility for accessibility */
:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 2px;
  border-radius: 2px;
}

/* § 4 Layout Classes */
.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 5.75rem 0;
}

.section--alt {
  background-color: var(--canvas-2);
  border-block: 1px solid rgba(16, 28, 23, 0.05);
}

.section--dark {
  background-color: var(--charcoal);
  color: var(--canvas);
}

.section--dark .eyebrow {
  color: var(--green-bright);
}

/* § 4 Header Classes */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 221, 208, 0.7);
  transition: box-shadow 0.3s ease;
}

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

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--ink);
}

.brand img {
  height: auto;
  max-height: 48px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.primary-nav a {
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: center;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--green);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: var(--paper);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: color 0.2s ease;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--green);
}

/* § 4 Button Classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step-body);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 52px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background-color: var(--green);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--green-deep);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background-color: var(--paper);
  border-color: var(--green);
  color: var(--green-deep);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}

.btn--on-dark {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--paper);
  backdrop-filter: blur(10px);
}

.btn--on-dark:hover,
.btn--on-dark:focus-visible {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: var(--green-bright);
}

.btn--sm {
  padding: 0.675rem 1.25rem;
  font-size: 0.9rem;
  min-height: 44px;
}

/* § 4 Eyebrow Classes */
.eyebrow {
  display: inline-block;
  font-size: var(--step-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.75rem;
  position: relative;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* § 4 Hero Classes */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 56px);
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__bg[data-parallax] {
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(16, 28, 23, 0.68) 0%,
      rgba(16, 28, 23, 0.08) 48%
    ),
    linear-gradient(
      90deg,
      rgba(14, 28, 23, 0.96) 0%,
      rgba(14, 28, 23, 0.78) 48%,
      rgba(14, 28, 23, 0.34) 100%
    );
}

.hero__content {
  padding: 2.4rem 0;
  max-width: 65%;
}

.hero__title {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--step-hero);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem 0;
  max-width: 15ch;
}

.hero__lead {
  font-size: 1.18rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  max-width: 50ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero__stats {
  display: none;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.hero__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: rgba(35, 166, 91, 0.15);
  border: 1px solid var(--green-bright);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-bright);
  margin-top: 0;
}

/* § 4 Section Heading Classes */
.section-head {
  margin-bottom: 2.5rem;
}

.section-head--center {
  text-align: center;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.section-head__title {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--step-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem 0;
  color: var(--ink);
}

.section--dark .section-head__title {
  color: var(--canvas);
}

.section-head__lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.section--dark .section-head__lead {
  color: rgba(247, 244, 238, 0.8);
}

/* § 4 Services Carousel Classes */
.services {
  margin-inline: calc((100vw - min(1200px, 100vw - 4rem)) / -2);
  padding-inline: calc((100vw - min(1200px, 100vw - 4rem)) / 2);
  background: linear-gradient(180deg, rgba(255,255,255,.62) 0%, rgba(255,255,255,0) 100%);
}

.carousel[data-carousel] {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.25rem 0 1.15rem;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 auto;
  width: min(380px, 86vw);
  scroll-snap-align: start;
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 122, 69, 0.35);
}

.service-card__media {
  position: relative;
  overflow: hidden;
}

.service-card__media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.service-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 35, 30, 0) 50%, rgba(16, 35, 30, 0.55) 100%);
  pointer-events: none;
}

.service-card__content {
  padding: 1.35rem 1.45rem 1.5rem;
}

.service-card__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-deep);
  background-color: rgba(247, 244, 238, 0.95);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  text-decoration: none;
}

.service-card__link i {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__link i {
  transform: translateX(4px);
}

.service-card h3 {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--step-h3);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.75rem 0;
  color: var(--ink);
}

.service-card p {
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

.carousel__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel__btn {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background-color: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.carousel__btn:hover,
.carousel__btn:focus-visible {
  background-color: var(--green);
  color: var(--paper);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.carousel__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: var(--line);
  cursor: pointer;
  transition: background-color 0.25s ease, width 0.25s ease;
}

.carousel__dot.is-active {
  width: 30px;
  background-color: var(--green);
}

/* § 4 Tune-up Classes */
.tuneup {
  max-width: 1050px;
  margin-inline: auto;
  background-color: transparent;
  color: var(--canvas);
}

.tuneup__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin: 2rem 0 1.4rem;
}

.tuneup__point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 68px;
  padding: 1rem 1.1rem;
  background-color: rgba(247, 244, 238, 0.1);
  border: 1px solid rgba(247, 244, 238, 0.14);
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}

.tuneup__point:hover {
  background-color: rgba(247, 244, 238, 0.15);
}

.tuneup__point i {
  color: var(--green-bright);
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.tuneup__point span {
  font-weight: 600;
}

.tuneup__offer {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tuneup__offer p {
  margin: 0;
  color: rgba(247, 244, 238, 0.86);
  line-height: 1.65;
}

/* § 4 Trust Strip Classes */
.trust {
  background-color: var(--canvas-2);
  padding: 2rem 0;
}

.trust__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  text-align: center;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  min-height: 164px;
  padding: 1.6rem 1.35rem;
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 122, 69, 0.35);
}

.trust__item i {
  color: var(--green);
  width: 2rem;
  height: 2rem;
}

.trust__item [data-count],
.trust__item .trust__value {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.trust__item span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.trust__item h3 {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.25rem 0 0;
  color: var(--ink);
}

.trust__item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.95rem;
}

.team__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.team__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.team__media--single {
  grid-template-columns: 1fr;
}

.team__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.founder-photo {
  width: 300px !important;
  height: 300px !important;
  max-width: 100%;
  border-radius: 50% !important;
  object-fit: cover;
  object-position: center;
  justify-self: center;
}

.team__copy h2 {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--step-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem 0;
  color: var(--ink);
}

.team__copy p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.team__copy p + p {
  margin-top: 1rem;
}

/* § 4 Process Classes */
.process {
  background: transparent;
}

.process__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.process__steps {
  display: grid;
  gap: 1.25rem;
}

.process__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  padding: 1.45rem;
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 122, 69, 0.3);
}

.process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--green);
  color: var(--paper);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
}

.process__step h3 {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--step-h3);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
  color: var(--ink);
}

.process__step p {
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

/* § 4 Van Showcase Classes */
.van {
  background:
    linear-gradient(180deg, rgba(14, 28, 23, 0.12) 0%, rgba(14, 28, 23, 0) 22%),
    linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--canvas);
  text-align: center;
  padding: 4.5rem 2rem;
}

.van__content {
  max-width: 60ch;
  margin: 0 auto;
}

.van h2 {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--step-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem 0;
}

.van p {
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(247, 244, 238, 0.9);
  margin: 0 0 2rem 0;
}

.van__media {
  position: relative;
  display: block;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.van__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* haze: blend the photo into the green band */
.van__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 85, 48, 0) 42%, rgba(11, 85, 48, 0.6) 100%),
    radial-gradient(125% 90% at 50% 35%, rgba(11, 85, 48, 0) 52%, rgba(11, 85, 48, 0.4) 100%);
}

/* § 4 Areas/Marquee Classes */
.areas {
  overflow: hidden;
}

.areas__marquees {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 3rem 0;
}

.areas__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.areas__copy {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.areas__copy h2 {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--step-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem 0;
  color: var(--ink);
}

.areas__copy p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

.areas__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 780px;
  margin: 0 auto;
  padding: 1.1rem 1.6rem;
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  text-align: center;
  color: var(--ink);
}

.areas__address i {
  color: var(--green);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.marquee[data-marquee] {
  overflow: hidden;
  padding: 0.4rem 0;
  position: relative;
}

.marquee[data-marquee-reverse] .marquee__track {
  animation-direction: reverse;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7rem;
  z-index: 1;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--canvas-2) 0%, transparent 100%);
}

.marquee::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--canvas-2) 100%);
}

.marquee__track {
  display: flex;
  gap: 2rem;
  will-change: transform;
  animation: marquee 60s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__track span {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.3rem;
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.marquee__track span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--green-bright);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Symptoms / pain-point strip */
.symptoms {
  background-color: var(--charcoal);
  color: var(--canvas);
  padding: 2.5rem 0;
  overflow: hidden;
}

.symptoms__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 0 1.75rem 0;
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
  color: var(--canvas);
}

.symptoms__label i {
  color: var(--gold);
  width: 1.4rem;
  height: 1.4rem;
}

.symptoms .marquee__track span {
  background-color: rgba(247, 244, 238, 0.07);
  border-color: rgba(247, 244, 238, 0.2);
  color: var(--canvas);
  box-shadow: none;
}

.symptoms .marquee__track span::before {
  background-color: var(--gold);
}

.symptoms .marquee::before {
  background: linear-gradient(90deg, var(--charcoal) 0%, transparent 100%);
}

.symptoms .marquee::after {
  background: linear-gradient(90deg, transparent 0%, var(--charcoal) 100%);
}

/* § 4 Contact Classes */
.contact {
  background-color: var(--charcoal);
  color: var(--canvas);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact__layout--single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.contact__panel {
  background-color: rgba(247, 244, 238, 0.1);
  border: 1px solid rgba(247, 244, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(10px);
}

.contact__panel h2 {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--step-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem 0;
}

.contact__panel p {
  color: rgba(247, 244, 238, 0.8);
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact__detail i {
  color: var(--green-bright);
}

/* Contact CTA band (homepage) */
.contact-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(22, 35, 30, 0.14) 0%, rgba(22, 35, 30, 0) 40%),
    linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--canvas);
  text-align: center;
}

.contact-cta .container {
  position: relative;
  z-index: 1;
}

.contact-cta .eyebrow {
  color: rgba(247, 244, 238, 0.85);
}

.contact-cta .eyebrow::before {
  background-color: var(--gold);
}

.contact-cta__title {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--step-h2);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin: 0 auto 1rem;
}

.contact-cta__lead {
  font-size: 1.16rem;
  line-height: 1.6;
  color: rgba(247, 244, 238, 0.88);
  max-width: 58ch;
  margin: 0 auto 2.5rem;
}

.contact-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.contact-cta__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}

.contact-cta__detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  padding: 1.15rem 1.35rem;
  background: rgba(247, 244, 238, 0.08);
  border: 1px solid rgba(247, 244, 238, 0.18);
  border-radius: var(--radius);
}

.contact-cta__detail i {
  color: var(--canvas);
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.contact-cta__detail strong {
  display: block;
  font-size: 0.95rem;
}

.contact-cta__detail span {
  color: rgba(247, 244, 238, 0.78);
  font-size: 0.88rem;
}

.btn--cream {
  background-color: var(--canvas);
  color: var(--green-deep);
}

.btn--cream:hover,
.btn--cream:focus-visible {
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
  min-height: 58px;
}

/* FAQ accordion */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq__item[open] {
  border-color: rgba(21, 122, 69, 0.35);
  box-shadow: var(--shadow-md);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 1.5rem;
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q i {
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__q i {
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 1.5rem 1.4rem;
}

.faq__a p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* § 4 Footer Classes */
.site-footer {
  background-color: var(--charcoal);
  color: var(--canvas);
  padding: 3rem 0 2rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand,
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img,
.footer__brand img {
  max-height: 40px;
}

.footer-brand span,
.footer__brand p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(247, 244, 238, 0.8);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-weight: 600;
}

.footer-links a {
  color: rgba(247, 244, 238, 0.9);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green-bright);
}

.footer-phone {
  font-weight: 600;
  color: var(--green-bright);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
}

.footer__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(247, 244, 238, 0.7);
}

.footer__detail svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--green-bright);
}

@media (max-width: 720px) {
  .footer__contact {
    align-items: flex-start;
    text-align: left;
  }
}

/* § 4 Reveal Animation Hook */
[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 1;
  transform: translateY(18px);
  transition: all 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Navigation - Slide/Overlay Menu */
@media (max-width: 900px) {
  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--paper);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 40;
    box-shadow: var(--shadow-md);
  }

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

  .primary-nav a {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
    text-align: center;
  }

  .primary-nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions {
    display: none;
  }

  .phone-link {
    display: none;
  }
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
  .container {
    width: min(1200px, 100% - 3rem);
  }

  .hero__content {
    max-width: 70%;
  }

  .hero__stats {
    gap: 3rem;
  }

  .service-card {
    width: min(380px, 90vw);
  }
}

@media (min-width: 900px) {
  .container {
    width: min(1200px, 100% - 4rem);
  }

  .nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    padding: 0;
  }

  .primary-nav {
    justify-content: center;
  }

  .hero__content {
    max-width: 60%;
  }

  .carousel__track {
    gap: 2rem;
  }

  .service-card {
    width: 360px;
  }

  .team__layout,
  .process__layout,
  .areas__layout,
  .contact__layout {
    grid-template-columns: 1fr 1fr;
  }

  .contact__layout--single {
    grid-template-columns: minmax(0, 820px);
  }

  .process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1200px) {
  .container {
    width: min(1200px, 100% - 5rem);
  }

  .hero__content {
    max-width: 55%;
  }

  .process__layout {
    grid-template-columns: 1fr 1.2fr;
  }

  .areas__layout {
    grid-template-columns: 1fr 1.3fr;
  }
}

/* Mobile Adjustments */
@media (max-width: 639px) {
  :root {
    --step-hero: 2.55rem;
    --step-h2: 2.1rem;
    --step-h3: 1.25rem;
    --step-body: 1rem;
  }

  .container {
    width: min(100% - 2rem, 1200px);
  }

  .section {
    padding: 3.75rem 0;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero__content {
    max-width: 100%;
    padding: 3rem 0 3.25rem;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .hero__guarantee {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .hero__stats {
    display: none;
  }

  .hero__actions,
  .contact__actions,
  .contact-cta__actions {
    flex-direction: column;
  }

  .contact-cta__details {
    grid-template-columns: 1fr;
  }

  .hero__video {
    display: none;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .team__layout,
  .process__layout,
  .areas__layout,
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .team__media img {
    height: 260px;
  }

  .process__step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }

  .process__num {
    justify-self: center;
    margin-bottom: 0.5rem;
  }

  .trust__items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tuneup__points {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .carousel__track {
    gap: 1rem;
  }

  .areas__address {
    align-items: flex-start;
    text-align: left;
  }
}

/* 2026 UI audit polish: container rhythm, typography, contrast, and responsive behavior */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--step-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--canvas) 760px),
    var(--canvas);
}

h1,
h2,
h3,
.hero__title,
.section-head__title,
.team__copy h2,
.service-card h3,
.process__step h3,
.faq__q,
.van h2,
.contact__panel h2,
.contact-cta__title {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.container {
  width: min(1160px, calc(100% - 32px));
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--canvas-2);
}

.section--dark {
  background:
    linear-gradient(135deg, var(--charcoal) 0%, var(--steel) 58%, var(--green-deep) 100%);
}

.site-header {
  background-color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 216, 0.9);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(16, 24, 21, 0.08);
}

.nav-shell {
  padding: 0;
}

.brand img {
  max-height: 42px;
}

.primary-nav {
  gap: 1.55rem;
  font-size: 0.88rem;
}

.phone-link {
  min-height: 44px;
  color: var(--green-deep);
}

.phone-link svg,
.btn svg,
.contact__detail svg,
.contact-cta__detail svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.btn {
  min-height: 48px;
  border-width: 1px;
  border-radius: 8px;
  padding: 0.82rem 1.25rem;
  font-size: 0.96rem;
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

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

.btn--on-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}

.btn--lg {
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  font-size: 1rem;
}

.eyebrow,
.service-card__label {
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  text-transform: none;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  margin: 0;
}

.hero {
  min-height: 0;
  padding: 64px 0 54px;
  background: var(--charcoal);
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(260px, 360px);
  gap: 64px;
  align-items: end;
}

.hero__bg {
  filter: saturate(1.02) contrast(1.03);
  transform: scale(1.04);
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(16, 24, 21, 0.55) 0%, rgba(16, 24, 21, 0.18) 46%, rgba(16, 24, 21, 0.76) 100%),
    linear-gradient(90deg, rgba(16, 24, 21, 0.92) 0%, rgba(16, 24, 21, 0.72) 44%, rgba(16, 24, 21, 0.16) 100%);
}

.hero__content {
  max-width: 680px;
  padding: 0;
}

.hero__title {
  max-width: 17ch;
  margin-bottom: 1.25rem;
  font-size: var(--step-hero);
  font-weight: 800;
  line-height: 0.98;
}

.hero__lead {
  max-width: 56ch;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.hero__guarantee {
  margin-top: 0;
  border-radius: 8px;
  color: #d8f8e4;
  background: rgba(36, 168, 101, 0.14);
  border-color: rgba(87, 213, 137, 0.55);
}

.hero__stats {
  justify-self: end;
  width: min(360px, 100%);
  display: none;
  gap: 0;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 0;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.stat:last-child {
  border-bottom: 0;
}

.stat__num {
  font-family: Manrope, Inter, sans-serif;
  font-size: 2rem;
  color: #9af1b8;
}

.stat__label {
  max-width: 16ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}

.section-head {
  margin-bottom: 2.25rem;
}

.section-head--center {
  max-width: 720px;
}

.section-head__title {
  margin-bottom: 0.85rem;
  font-size: var(--step-h2);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
}

.section-head__lead {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.services,
.process,
.team,
.tuneup {
  background: transparent;
}

.carousel[data-carousel],
.marquee[data-marquee] {
  max-width: 100%;
  overflow-x: clip;
}

.carousel__track {
  gap: 1rem;
  padding: 0.25rem 0.25rem 1rem;
  scroll-padding-inline: 0.25rem;
}

.service-card {
  width: 338px;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(16, 24, 21, 0.04);
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card__media img {
  height: 216px;
}

.service-card__content {
  padding: 1.25rem;
}

.service-card__label {
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
}

.service-card h3 {
  font-size: 1.18rem;
}

.service-card p {
  font-size: 0.95rem;
}

.carousel__btn {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.tuneup__points {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.tuneup__point {
  min-height: 78px;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tuneup__offer {
  max-width: 760px;
  margin: 1.25rem auto 0;
  text-align: center;
  color: rgba(247, 244, 238, 0.82);
}

.trust__items {
  gap: 1rem;
}

.trust__item {
  align-items: flex-start;
  min-height: 170px;
  padding: 1.25rem;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 1px 0 rgba(16, 24, 21, 0.04);
}

.trust__item:hover {
  transform: translateY(-2px);
}

.trust__item [data-count],
.trust__item .trust__value {
  font-family: Manrope, Inter, sans-serif;
  font-size: 2rem;
}

.trust__item span {
  font-size: 0.92rem;
}

.trust__item h3 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.05rem;
}

.trust__item p {
  font-size: 0.94rem;
}

.team__layout {
  gap: 3.25rem;
}

.team__media {
  gap: 0.85rem;
}

.team__media--single {
  grid-template-columns: 1fr;
}

.team__media img {
  height: 320px;
  border-radius: 8px;
}

.team__copy h2 {
  max-width: 14ch;
  font-size: 2.55rem;
  font-weight: 800;
}

.team__copy p + p {
  margin-top: 1rem;
}

#construction .team__copy h2,
.van__copy h2 {
  max-width: 16ch;
}

#construction .trust__items {
  margin-top: 2rem;
}

.process__steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process__step {
  min-height: 230px;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  padding: 1.35rem;
  border-radius: 8px;
}

.process__num {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.process__step h3 {
  font-size: 1.12rem;
}

.van {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 3rem;
  align-items: center;
  padding: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.van__media {
  max-width: none;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.van__media::after {
  display: none;
}

.van p {
  margin: 0;
  font-size: 1.03rem;
  color: var(--ink-soft);
}

.van__copy {
  max-width: 410px;
}

.areas__address {
  max-width: 720px;
  border-radius: 8px;
}

.faq__list {
  max-width: 900px;
}

.faq__item {
  border-radius: 8px;
  box-shadow: none;
}

.faq__item[open] {
  box-shadow: var(--shadow-sm);
}

.faq__q {
  font-size: 1.05rem;
}

.contact-cta {
  background:
    linear-gradient(135deg, var(--charcoal) 0%, var(--steel) 54%, var(--green-deep) 100%);
}

.contact-cta__title {
  max-width: 18ch;
  font-size: 3rem;
}

.contact-cta__lead {
  font-size: 1.05rem;
}

.contact-cta__detail {
  min-height: 84px;
  border-radius: 8px;
}

.contact__layout--single {
  display: block;
  max-width: 860px;
  margin: 0 auto;
}

.contact__panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.contact__panel h2 {
  max-width: 16ch;
  font-size: 3rem;
}

.contact__detail {
  margin-bottom: 0.75rem;
}

.founder-card {
  justify-self: end;
  width: min(380px, 100%);
  overflow: hidden;
  border: 1px solid rgba(16, 24, 21, 0.22);
  border-radius: 8px;
  background: #070908;
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 0;
  box-shadow: none;
}

.founder-card__body {
  padding: 1rem 1.15rem;
}

.founder-card__body strong,
.founder-card__body span {
  display: block;
}

.founder-card__body strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.08rem;
}

.founder-card__body span {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.about-points span {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 700;
  font-size: 0.9rem;
}

.site-footer {
  padding: 2.25rem 0;
}

.footer-layout {
  gap: 1.5rem;
}

.footer__brand img,
.footer-brand img {
  max-height: 38px;
}

.footer__brand p,
.footer-brand span {
  margin: 0.5rem 0 0;
  color: rgba(247, 244, 238, 0.76);
  font-size: 0.88rem;
}

@media (min-width: 768px) {
  .container {
    width: min(1160px, calc(100% - 48px));
  }
}

@media (min-width: 1200px) {
  .container {
    width: min(1160px, calc(100% - 80px));
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
    --step-hero: 2.75rem;
    --step-h2: 2.25rem;
  }

  .primary-nav {
    background-color: var(--paper);
  }

  .hero {
    min-height: auto;
    padding: 52px 0 44px;
  }

  .hero .container,
  .team__layout,
  .van {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .hero__lead,
  .hero__title {
    max-width: 100%;
  }

  .hero__stats {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .process__steps,
  .tuneup__points,
  .contact-cta__details {
    grid-template-columns: 1fr;
  }

  .team__copy h2,
  .contact__panel h2,
  .contact-cta__title {
    max-width: 100%;
    font-size: 2.2rem;
  }
}

@media (max-width: 639px) {
  :root {
    --step-hero: 2.35rem;
    --step-h2: 2rem;
    --step-h3: 1.18rem;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding: 42px 0 38px;
  }

  .hero__lead,
  .section-head__lead,
  .contact-cta__lead {
    font-size: 1rem;
  }

  .hero__stats {
    padding: 6px 14px;
  }

  .stat__num {
    font-size: 1.65rem;
  }

  .service-card {
    width: min(318px, calc(100vw - 44px));
  }

  .trust__item,
  .process__step,
  .contact-cta__detail {
    min-height: auto;
  }

  .team__media img {
    height: 260px;
  }

  .footer-links {
    gap: 0.85rem;
  }
}

/* Premium finish pass: richer surfaces, stronger hierarchy, and tighter responsive polish */
html {
  scroll-padding-top: calc(var(--header-h) + 18px);
}

:root {
  --canvas: #f7f9f5;
  --canvas-2: #eef3ee;
  --paper: #ffffff;
  --line: #d7dfd6;
  --green: #118049;
  --green-deep: #073d25;
  --green-bright: #37c874;
  --gold: #c4964b;
  --steel: #163239;
  --shadow-sm: 0 1px 0 rgba(16, 24, 21, 0.05), 0 14px 32px rgba(16, 24, 21, 0.08);
  --shadow-md: 0 22px 56px rgba(16, 24, 21, 0.16);
  --shadow-lg: 0 34px 90px rgba(7, 30, 22, 0.24);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0, rgba(247, 249, 245, 0.94) 620px),
    linear-gradient(180deg, var(--canvas) 0%, #f0f4ef 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(189, 203, 189, 0.62);
  box-shadow: 0 1px 0 rgba(16, 24, 21, 0.03);
}

@supports (backdrop-filter: blur(18px)) {
  .site-header {
    backdrop-filter: saturate(1.18) blur(18px);
  }
}

.nav-shell {
  min-height: 74px;
}

.brand img {
  max-height: 46px;
}

.primary-nav a {
  color: rgba(16, 24, 21, 0.82);
}

.phone-link {
  gap: 0.55rem;
  padding: 0.62rem 0.8rem;
  border: 1px solid rgba(17, 128, 73, 0.18);
  border-radius: 8px;
  background: rgba(17, 128, 73, 0.06);
}

.phone-link:hover,
.phone-link:focus-visible {
  background: rgba(17, 128, 73, 0.1);
}

.btn {
  position: relative;
  overflow: hidden;
  font-weight: 800;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn--primary {
  background: linear-gradient(180deg, #15965a 0%, var(--green) 100%);
  box-shadow: 0 14px 26px rgba(17, 128, 73, 0.2);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: linear-gradient(180deg, #138850 0%, var(--green-deep) 100%);
}

.btn--on-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn--cream {
  background: linear-gradient(180deg, #fffdf7 0%, #f3eadc 100%);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--green-deep);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.hero {
  min-height: min(820px, calc(100vh - var(--header-h)));
  padding: clamp(84px, 9vw, 132px) 0 clamp(70px, 8vw, 118px);
}

.hero .container {
  align-items: end;
}

.hero__bg {
  filter: saturate(1.04) contrast(1.08);
}

.hero__video {
  display: block;
  opacity: 0.56;
  filter: saturate(1.06) contrast(1.08);
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(7, 20, 15, 0.46) 0%, rgba(7, 20, 15, 0.1) 42%, rgba(7, 20, 15, 0.8) 100%),
    linear-gradient(90deg, rgba(7, 20, 15, 0.94) 0%, rgba(7, 20, 15, 0.78) 42%, rgba(7, 20, 15, 0.24) 72%, rgba(7, 20, 15, 0.52) 100%);
}

.hero__content {
  position: relative;
}

.hero__content::before {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 1.35rem;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
  border-radius: 999px;
}

.hero__title {
  max-width: 15ch;
  text-wrap: balance;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.hero__lead {
  max-width: 54ch;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__guarantee {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 34px rgba(0, 0, 0, 0.18);
}

.hero__stats {
  display: grid;
  width: min(360px, 100%);
  margin: 0;
  padding: 0.7rem 1.1rem;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.stat {
  padding: 1rem 0;
}

.stat__num {
  color: #a7f7c2;
}

.stat__label {
  color: rgba(255, 255, 255, 0.82);
}

.symptoms {
  padding: 2.15rem 0 2.35rem;
  background:
    linear-gradient(90deg, var(--charcoal) 0%, var(--steel) 52%, var(--green-deep) 100%);
}

.symptoms__label {
  margin-bottom: 1.2rem;
  font-size: 1.08rem;
}

.section {
  position: relative;
}

.section-head__title,
.team__copy h2,
.contact__panel h2,
.contact-cta__title {
  text-wrap: balance;
}

.section-head__lead,
.team__copy p,
.contact-cta__lead {
  text-wrap: pretty;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 34%),
    var(--canvas-2);
}

.section--dark {
  background:
    linear-gradient(135deg, #07140f 0%, #102e2e 56%, #0a4f30 100%);
}

.services {
  padding-block: 0.4rem 0.1rem;
  background: transparent;
}

.carousel__track {
  gap: 1.2rem;
  padding: 0.4rem 0.35rem 1.35rem;
}

.service-card,
.trust__item,
.process__step,
.faq__item,
.areas__address {
  border-color: rgba(122, 144, 125, 0.24);
  box-shadow: 0 1px 0 rgba(16, 24, 21, 0.04), 0 18px 42px rgba(16, 24, 21, 0.07);
}

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
}

.service-card:hover,
.trust__item:hover,
.process__step:hover,
.faq__item[open] {
  border-color: rgba(17, 128, 73, 0.38);
  box-shadow: var(--shadow-md);
}

.service-card__media img {
  height: 236px;
}

.service-card__label {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 128, 73, 0.16);
  color: var(--green-deep);
}

.carousel__dot {
  padding: 0;
  border: 0;
}

.tuneup {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tuneup__point {
  background: rgba(255, 255, 255, 0.085);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust__item i,
.process__num,
.contact-cta__detail i {
  filter: drop-shadow(0 8px 16px rgba(17, 128, 73, 0.12));
}

.trust__item {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
}

.team__media,
.team__media--single,
.van__media,
.founder-card {
  position: relative;
}

.team__media::before,
.van__media::before,
.founder-card::before {
  content: '';
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 1px solid rgba(17, 128, 73, 0.16);
  border-radius: 8px;
}

.team__media img,
.van__media,
.founder-card {
  box-shadow: var(--shadow-md);
}

.team__media img {
  filter: saturate(1.04) contrast(1.03);
}

.team__copy .btn {
  margin-top: 1.5rem;
}

.process__step {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
}

.process__num {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
}

.van {
  align-items: center;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
}

.van__media {
  overflow: visible;
}

.van__media img {
  border-radius: 8px;
}

.areas__marquees {
  margin: 2.5rem 0;
}

.marquee__track span {
  border-color: rgba(122, 144, 125, 0.24);
  box-shadow: 0 1px 0 rgba(16, 24, 21, 0.03), 0 12px 26px rgba(16, 24, 21, 0.06);
}

.faq__q {
  min-height: 72px;
}

.contact-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #07140f 0%, #13393a 50%, #075532 100%);
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 70%, transparent 100%);
  opacity: 0.28;
  pointer-events: none;
}

.contact-cta__detail {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer {
  background:
    linear-gradient(180deg, #07140f 0%, #050b08 100%);
}

.reveal-ready [data-reveal] {
  opacity: 0;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
}

@media (min-width: 901px) {
  .hero__stats {
    display: grid;
  }

  .site-header .phone-link {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    min-height: var(--header-h);
  }

  .primary-nav {
    background:
      linear-gradient(180deg, #ffffff 0%, #f6f9f5 100%);
  }

  .hero {
    min-height: auto;
    padding: 58px 0 50px;
  }

  .hero .container {
    gap: 1.4rem;
  }

  .hero__content::before {
    width: 58px;
    margin-bottom: 1.1rem;
  }

  .hero__video {
    display: none;
  }

  .hero__stats {
    display: none;
  }

  .team__media::before,
  .van__media::before,
  .founder-card::before {
    inset: -7px;
  }
}

@media (max-width: 639px) {
  .brand img {
    max-height: 40px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 48px 0 44px;
  }

  .hero__title {
    line-height: 1.02;
  }

  .hero__actions {
    gap: 0.75rem;
  }

  .hero__guarantee {
    padding: 0.78rem 0.9rem;
  }

  .service-card {
    width: min(326px, calc(100vw - 36px));
  }

  .service-card__media img {
    height: 218px;
  }

  .tuneup {
    padding: 1rem;
  }

  .faq__q {
    min-height: 64px;
    padding: 1.05rem 1.1rem;
  }

  .contact-cta__details {
    gap: 0.85rem;
  }
}

/* Service suite replacement: no desktop carousel, just clear service choices */
.service-suite {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 249, 245, 0.96) 44%, rgba(238, 243, 238, 0.88) 100%);
}

.service-suite .container {
  position: relative;
}

.service-suite .services {
  margin-inline: 0;
  padding-inline: 0;
}

.service-suite__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.service-suite__heading {
  max-width: 700px;
}

.service-suite__heading .section-head__title {
  max-width: 15ch;
  margin-bottom: 1rem;
}

.service-suite__priority {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1.25rem;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 20, 15, 0.96) 0%, rgba(17, 80, 50, 0.92) 100%);
  box-shadow: var(--shadow-md);
}

.service-suite__priority strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1.18;
}

.service-suite__priority p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-suite__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(55, 200, 116, 0.34);
  border-radius: 8px;
  background: rgba(55, 200, 116, 0.13);
  color: #bdf8d2;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-suite__tag svg {
  width: 1rem;
  height: 1rem;
}

.service-suite__actions {
  display: flex;
  gap: 0.7rem;
}

.service-suite__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font-weight: 800;
}

.service-suite__actions a:first-child {
  background: linear-gradient(180deg, #15965a 0%, var(--green) 100%);
  border-color: rgba(55, 200, 116, 0.42);
}

.service-suite__actions svg {
  width: 1rem;
  height: 1rem;
}

.service-suite__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) minmax(0, 0.88fr);
  grid-auto-rows: minmax(245px, auto);
  gap: 1rem;
  align-items: stretch;
}

.service-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(122, 144, 125, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
  box-shadow: 0 1px 0 rgba(16, 24, 21, 0.04), 0 18px 42px rgba(16, 24, 21, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 128, 73, 0.38);
  box-shadow: var(--shadow-md);
}

.service-tile--feature {
  grid-row: span 2;
}

.service-tile--dark {
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(7, 20, 15, 0.98) 0%, rgba(14, 54, 46, 0.98) 100%);
}

.service-tile__media {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background: #dfe9df;
}

.service-tile__media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.45s ease;
}

.service-tile:hover .service-tile__media img {
  transform: scale(1.045);
}

.service-tile__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 15, 0) 46%, rgba(7, 20, 15, 0.34) 100%);
  pointer-events: none;
}

.service-tile__media span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.42rem 0.66rem;
  border: 1px solid rgba(17, 128, 73, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-tile--feature .service-tile__media {
  min-height: 285px;
}

.service-tile--feature .service-tile__media img {
  min-height: 285px;
}

.service-tile--dark {
  grid-template-rows: 1fr;
}

.service-tile__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.2rem;
}

.service-tile--feature .service-tile__body {
  padding: 1.45rem;
}

.service-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.95rem;
  border-radius: 8px;
  background: rgba(17, 128, 73, 0.1);
  color: var(--green);
}

.service-tile--dark .service-tile__icon {
  background: rgba(55, 200, 116, 0.14);
  color: #a7f7c2;
}

.service-tile__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-tile__kicker {
  margin: 0 0 0.45rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-tile--dark .service-tile__kicker {
  color: #a7f7c2;
}

.service-tile h3 {
  margin: 0 0 0.65rem;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
  color: var(--ink);
}

.service-tile--feature h3 {
  font-size: 1.75rem;
  max-width: 12ch;
}

.service-tile--dark h3 {
  color: var(--paper);
}

.service-tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.58;
}

.service-tile--dark p {
  color: rgba(255, 255, 255, 0.76);
}

.service-tile ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-tile li {
  display: flex;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.service-tile li::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--gold);
  flex: 0 0 auto;
}

.service-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.15rem;
  color: var(--green-deep);
  font-weight: 900;
}

.service-tile--dark .service-tile__link {
  color: #a7f7c2;
}

.service-tile__link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.service-tile:hover .service-tile__link svg {
  transform: translateX(4px);
}

.service-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(17, 128, 73, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(237, 245, 239, 0.94) 100%);
  box-shadow: 0 1px 0 rgba(16, 24, 21, 0.04), 0 18px 42px rgba(16, 24, 21, 0.07);
}

.service-checks div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 58px;
  padding: 0.75rem;
  border: 1px solid rgba(122, 144, 125, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--green-deep);
  font-weight: 900;
}

.service-checks svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--green);
  flex: 0 0 auto;
}

@media (max-width: 1040px) {
  .service-suite__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-tile--feature {
    grid-column: span 2;
    grid-row: auto;
  }

  .service-tile--feature .service-tile__media,
  .service-tile--feature .service-tile__media img {
    min-height: 245px;
  }
}

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

  .service-suite__heading .section-head__title {
    max-width: 100%;
  }
}

@media (max-width: 639px) {
  .service-suite {
    padding-top: 3rem;
  }

  .service-suite__top {
    gap: 1.25rem;
    margin-bottom: 1rem;
  }

  .service-suite__priority {
    padding: 1rem;
  }

  .service-suite__priority strong {
    font-size: 1.16rem;
  }

  .service-suite__heading .section-head__title {
    margin-bottom: 0.75rem;
    font-size: 1.92rem;
    line-height: 1.04;
  }

  .service-suite__heading .section-head__lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .service-suite__grid {
    grid-template-columns: 1fr;
  }

  .service-tile--feature {
    grid-column: auto;
  }

  .service-tile__media,
  .service-tile__media img,
  .service-tile--feature .service-tile__media,
  .service-tile--feature .service-tile__media img {
    min-height: 210px;
  }

  .service-tile__body,
  .service-tile--feature .service-tile__body {
    padding: 1.05rem;
  }

  .service-tile--feature h3 {
    max-width: 100%;
    font-size: 1.42rem;
  }

  .service-checks {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Finishing layer — softer containers, generous rhythm,
   crisper surfaces. The site read a touch flat and boxy;
   this warms it up without changing the structure.
   ============================================================ */

:root {
  --r-card: 16px;
  --r-tile: 14px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Section rhythm: more air between bands */
.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

/* Containers: a hair wider with calmer gutters */
.container {
  width: min(1180px, calc(100% - 40px));
}

@media (min-width: 768px) {
  .container { width: min(1180px, calc(100% - 56px)); }
}

@media (min-width: 1200px) {
  .container { width: min(1180px, calc(100% - 96px)); }
}

/* --- Card containers: round the corners, layer the shadow,
       add a faint top highlight so they catch light --- */
.service-tile,
.trust__item,
.process__step,
.faq__item,
.service-checks,
.areas__address,
.service-suite__priority {
  border-radius: var(--r-card);
}

.service-tile,
.trust__item,
.process__step {
  border-color: rgba(122, 144, 125, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(16, 24, 21, 0.04),
    0 22px 48px -28px rgba(16, 24, 21, 0.5);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.3s ease;
}

.service-tile:hover,
.trust__item:hover,
.process__step:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 128, 73, 0.34);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 30px 60px -26px rgba(16, 24, 21, 0.42);
}

/* Media corners follow the card */
.service-tile__media { border-radius: var(--r-card) var(--r-card) 0 0; }
.service-tile__media img { border-radius: inherit; }

/* Pills/buttons stay fully rounded for contrast against the softer cards */
.btn,
.btn--primary,
.btn--on-dark,
.btn--cream,
.btn--lg,
.phone-link {
  border-radius: var(--radius-pill);
}

/* --- Eyebrow accent: small gold tick reads more intentional --- */
.eyebrow::before {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
}

/* --- Centered section heads get a subtle underline accent --- */
.section-head--center .section-head__title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 1.1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.section--dark .section-head--center .section-head__title::after {
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
}

/* --- Hero: a bit more presence + a soft vignette so the copy pops --- */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 18% 30%, transparent 40%, rgba(5, 11, 8, 0.42) 100%);
}

.hero__title {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  letter-spacing: -0.018em;
}

/* --- Service tile icons: filled tint chip with soft glow --- */
.service-tile__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(17, 128, 73, 0.14), rgba(17, 128, 73, 0.08));
  box-shadow: 0 8px 18px -8px rgba(17, 128, 73, 0.5);
}

/* --- Trust strip icons: same treatment for consistency --- */
.trust__item i {
  padding: 0.55rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(17, 128, 73, 0.12), rgba(17, 128, 73, 0.06));
  box-sizing: content-box;
}

/* --- Process number chips: rounder, glow --- */
.process__num {
  border-radius: 12px;
  box-shadow: 0 10px 22px -10px rgba(17, 128, 73, 0.7);
}

/* --- Marquee chips: softer, lift on the card surface --- */
.marquee__track span {
  border-radius: var(--radius-pill);
}

/* --- FAQ: roomier, rounder, clearer open state --- */
.faq__item {
  border-radius: var(--r-tile);
}

/* --- Image frames a touch rounder to match cards --- */
.team__media img,
.van__media,
.van__media img,
.team__media::before,
.van__media::before,
.founder-card,
.founder-card::before {
  border-radius: var(--r-card);
}

/* --- Reveal: gentler, longer travel for a more crafted entrance --- */
.reveal-ready [data-reveal] {
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
  transform: translateY(0);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__bg[data-parallax] {
    transform: none !important;
  }

  .hero__video {
    display: none;
  }

  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===================================================================
   Blog styles
   Card grid (blog landing) + article typography for /blog/ pages.
   Uses existing tokens only; appended per blog team-lead contract.
   =================================================================== */

/* Blog hero (compact, on-brand intro band) */
.blog-hero {
  background-color: var(--charcoal);
  color: var(--canvas);
  padding: 6.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(16, 28, 23, 0.05);
}
.blog-hero .eyebrow {
  color: var(--green-bright);
}
.blog-hero__title {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--step-h2);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 1rem 0;
  color: var(--canvas);
}
.blog-hero__lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(247, 244, 238, 0.8);
  margin: 0;
  max-width: 60ch;
}

/* Blog landing card grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}
.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.blog-card__date i,
.blog-card__date svg {
  width: 15px;
  height: 15px;
}
.blog-card__title {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem 0;
  color: var(--ink);
}
.blog-card__title a { color: inherit; }
.blog-card__title a:hover,
.blog-card__title a:focus-visible { color: var(--green-deep); }
.blog-card__excerpt {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1.25rem 0;
}
.blog-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
}
.blog-card__more i,
.blog-card__more svg { width: 17px; height: 17px; transition: transform 0.2s ease; }
.blog-card:hover .blog-card__more i,
.blog-card:hover .blog-card__more svg { transform: translateX(3px); }

/* Article (single post) layout + typography */
.article {
  padding: 3rem 0 5.25rem;
}
.article__inner {
  width: min(720px, 100% - 2.5rem);
  margin-inline: auto;
}
.article__breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.article__breadcrumb a { color: var(--green); font-weight: 600; }
.article__breadcrumb a:hover { color: var(--green-deep); }
.article__breadcrumb span[aria-current] { color: var(--ink-soft); }
.article__sep { margin: 0 0.45rem; color: var(--line); }

.article__header { margin-bottom: 2.25rem; }
.article__title {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 1rem 0;
  color: var(--ink);
}
.article__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.article__byline span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.article__byline i,
.article__byline svg { width: 16px; height: 16px; color: var(--green); }

.article__body {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--ink);
}
.article__body > *:first-child { margin-top: 0; }
.article__body p { margin: 0 0 1.3rem 0; }
.article__body h2 {
  font-family: Manrope, Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 2.5rem 0 1rem 0;
}
.article__body h3 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 1.9rem 0 0.75rem 0;
}
.article__body ul,
.article__body ol {
  margin: 0 0 1.3rem 0;
  padding-left: 1.4rem;
}
.article__body li { margin-bottom: 0.5rem; }
.article__body a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(21, 122, 69, 0.35);
  text-underline-offset: 2px;
}
.article__body a:hover { text-decoration-color: var(--green); }
.article__body strong { font-weight: 700; }

/* Soft in-article CTA box */
.article__cta {
  margin: 2.5rem 0 0.5rem;
  padding: 1.75rem;
  background: var(--canvas-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
}
.article__cta h2 {
  margin: 0 0 0.5rem 0 !important;
  font-size: 1.35rem;
}
.article__cta p { margin: 0 0 1.1rem 0; color: var(--ink-soft); }
.article__cta .btn { margin: 0; }

/* Back-to-blog link */
.article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
  font-weight: 600;
  color: var(--green-deep);
}
.article__back i,
.article__back svg { width: 17px; height: 17px; }

/* ============================================================
   Request Service form
   ============================================================ */
.request__layout{
  display:grid;grid-template-columns:minmax(0,0.85fr) minmax(0,1.15fr);
  gap:clamp(2rem,4vw,3.5rem);align-items:start;
}
.request__intro .section-head__lead{margin-bottom:1.4rem}
.request__points{list-style:none;margin:0 0 1.4rem;padding:0;display:grid;gap:.7rem}
.request__points li{display:flex;align-items:center;gap:.6rem;font-weight:600;color:var(--ink)}
.request__points i{width:1.15rem;height:1.15rem;color:var(--green);flex:0 0 auto}
.request__call{display:inline-flex;align-items:center;gap:.5rem;font-weight:800;color:var(--green-deep)}
.request__call i{width:1.1rem;height:1.1rem}
.request__form{
  background:linear-gradient(180deg,#fff,#fbfcfa);border:1px solid var(--line);
  border-radius:var(--r-card,16px);padding:clamp(1.3rem,2.5vw,2rem);
  box-shadow:0 1px 0 rgba(255,255,255,.9) inset,0 22px 48px -28px rgba(16,24,21,.5);
  display:grid;gap:1rem;
}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.field{display:grid;gap:.4rem}
.field>span{font-size:.82rem;font-weight:700;color:var(--ink)}
.field>span em{color:var(--ink-soft);font-weight:600;font-style:normal}
.field input,.field select,.field textarea{
  width:100%;padding:.8rem .9rem;font:inherit;color:var(--ink);
  background:var(--canvas);border:1px solid var(--line);border-radius:10px;
  transition:border-color .2s,box-shadow .2s;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--green);box-shadow:0 0 0 3px rgba(17,128,73,.14);background:#fff;
}
.field textarea{resize:vertical;min-height:84px}
.field select{appearance:none;-webkit-appearance:none;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%234f5d58' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .85rem center;padding-right:2.2rem;
}
.hp{position:absolute!important;left:-9999px;width:1px;height:1px;opacity:0}
.request__submit{width:100%;justify-content:center;margin-top:.2rem}
.request__status{margin:0;font-size:.92rem;font-weight:600;text-align:center;min-height:1.2rem}
.request__status.is-ok{color:var(--green-deep)}
.request__status.is-err{color:#b4453a}
.request__form.sent .field,.request__form.sent .request__submit{opacity:.5;pointer-events:none}
@media(max-width:760px){
  .request__layout{grid-template-columns:1fr}
  .field-row{grid-template-columns:1fr}
}

/* ============================================================
   AUTHORITATIVE MOBILE NAV (final override — wins the cascade)
   Full-screen solid sheet, big tap targets, phone CTA.
   ============================================================ */
@media (max-width: 900px) {
  /* Toggle button: clear, on-brand */
  .site-header .nav-toggle {
    display: inline-flex;
    width: 46px; height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    color: var(--ink);
    z-index: 60;
  }
  .site-header .nav-toggle svg { width: 24px; height: 24px; }

  /* The menu panel — solid, full screen below header */
  .site-header .primary-nav[data-nav] {
    position: fixed !important;
    top: var(--header-h) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: auto !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0.5rem 1.25rem 2rem !important;
    background: #ffffff !important;
    background-image: none !important;
    box-shadow: 0 24px 48px -24px rgba(16,24,21,.4) !important;
    transform: translateX(100%) !important;
    transition: transform .32s cubic-bezier(.22,1,.36,1) !important;
    overflow-y: auto !important;
    z-index: 55 !important;
    -webkit-overflow-scrolling: touch;
  }
  .site-header .primary-nav[data-nav].is-open {
    transform: translateX(0) !important;
  }

  /* Links: big rows, clear separators, current-page accent */
  .site-header .primary-nav[data-nav] a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding: 1.15rem 0.25rem !important;
    border-bottom: 1px solid var(--line) !important;
    font-family: Manrope, Inter, sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    text-align: left !important;
  }
  .site-header .primary-nav[data-nav] a::after { display: none !important; }
  .site-header .primary-nav[data-nav] a[aria-current="page"] {
    color: var(--green) !important;
  }
  .site-header .primary-nav[data-nav] a[aria-current="page"]::before {
    content: "" !important;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green-bright);
    margin-right: 0.6rem;
  }

  /* Phone CTA pinned at the bottom of the menu */
  .site-header .primary-nav[data-nav] .mobile-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 1.5rem !important;
    padding: 1rem 1.25rem !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #15965a 0%, var(--green) 100%) !important;
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    box-shadow: 0 14px 26px rgba(17,128,73,.25) !important;
  }
  .site-header .primary-nav[data-nav] .mobile-cta svg { width: 1.15rem; height: 1.15rem; }

}

/* Fix: backdrop-filter/transform on the header create a containing block for
   position:fixed children, which collapsed the mobile menu. Remove on mobile so
   the fixed nav anchors to the viewport, not the header box. */
@media (max-width: 900px) {
  .site-header,
  .site-header .container,
  .site-header .nav-shell {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    transform: none !important;
    perspective: none !important;
  }
  /* Keep the header readable without the blur */
  .site-header { background: #ffffff !important; }
}
