/* =========================================================
   H&M Junk Removal & Landscaping — Stylesheet v2
   Palette: deep forest green, charcoal black, bone white, tan
   Type:    Bricolage Grotesque (display) + Inter (body)
   ========================================================= */

:root {
  /* H&M Brand — Forest Green */
  --green-50:  #eaf2ec;
  --green-100: #cfe1d3;
  --green-300: #8fb59a;
  --green-500: #3d7a55;
  --green-600: #2c633f;
  --green-700: #1F4D33;     /* PRIMARY — brand forest green */
  --green-800: #163d27;
  --green-900: #0d2818;

  /* Construction Orange (action accent) */
  --orange:       #F47A20;
  --orange-dark:  #d6661a;
  --orange-soft:  #fde7d3;

  /* Ink / Charcoal */
  --ink:       #1F1F1F;
  --ink-2:     #2a2a2a;
  --ink-3:     #3a3a3a;
  --slate-700: #4a4a4a;
  --slate-500: #6b6b6b;
  --slate-300: #b5b5b5;
  --slate-100: #e3e3e3;

  /* Surfaces — Warm Cream + Sage */
  --bg:        #F5F1E6;     /* warm cream */
  --bg-muted:  #ede8d6;
  --bg-cream:  #F5F1E6;
  --bg-paper:  #fbf8ee;
  --bg-dark:   #0d2818;

  /* Sage accent */
  --sage:      #A7B89A;
  --sage-soft: #d2dbc9;

  /* Tan kept for compatibility */
  --tan:       #c9a36a;
  --tan-soft:  #f4ecdc;

  /* Tokens */
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(31,31,31,0.06), 0 1px 3px rgba(31,31,31,0.04);
  --shadow-md: 0 18px 36px rgba(31,31,31,0.10), 0 4px 10px rgba(31,31,31,0.05);
  --shadow-lg: 0 40px 80px rgba(31,31,31,0.18);
  --shadow-glow: 0 12px 36px rgba(31,77,51,0.36);

  --max: 1240px;

  /* ===== UNIVERSAL SPACING SCALE (8px base) ===== */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 120px;

  /* ===== LAYOUT RHYTHM (fluid, shared by every section) ===== */
  --section-py:      clamp(72px, 9vw, 120px);   /* vertical padding per section */
  --section-head-mb: clamp(40px, 6vw, 64px);    /* gap under a section header */
  --container-pad:   clamp(20px, 4vw, 32px);    /* left/right page gutter */
  --card-pad:        clamp(24px, 3vw, 34px);    /* inner padding of cards/panels */
  --grid-gap:        clamp(18px, 2.4vw, 28px);  /* gap between grid cards */
  --panel-border:    1px solid rgba(31,77,51,0.12);

  /* ===== FLUID TYPE SCALE ===== */
  --fs-h1:    clamp(2.2rem, 5.2vw, 4rem);
  --fs-h2:    clamp(1.9rem, 4vw, 3rem);
  --fs-h3:    clamp(1.15rem, 1.5vw, 1.35rem);
  --fs-lead:  clamp(1.02rem, 1.4vw, 1.18rem);
  --fs-body:  1.0625rem;   /* 17px */
  --fs-small: 0.92rem;

  /* ===== LINE HEIGHTS (chosen so descenders never clip) ===== */
  --lh-display: 1.08;
  --lh-head:    1.15;
  --lh-body:    1.6;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-num: 'Bebas Neue', 'Manrope', sans-serif;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: var(--lh-head);
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: var(--fs-h1); font-weight: 800; line-height: var(--lh-display); }
h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.025em; line-height: var(--lh-display); }
h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.01em; line-height: var(--lh-head); }
h4 { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-700); font-family: var(--font-sans); }
em { font-style: italic; color: var(--green-700); font-family: var(--font-display); }

p { margin: 0 0 1em; color: var(--slate-700); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.muted { color: var(--slate-500); }
.small { font-size: 0.92rem; }
.center { text-align: center; }
.fine { font-size: 0.86rem; color: var(--slate-500); margin-top: 0.6em; }

/* ============ KICKER (numbered section label) ============ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.kicker-num {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.kicker-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-800);
}
.kicker-light .kicker-label { color: rgba(255,255,255,0.86); }
.kicker-light .kicker-num { background: #fff; color: var(--green-900); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none !important;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 26px; font-size: 1.04rem; }
.btn.block { display: flex; width: 100%; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(250,70,22,0.30);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 12px 28px rgba(250,70,22,0.36); }
.btn-glow { position: relative; overflow: hidden; }
.btn-glow::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease-out);
}
.btn-glow:hover::after { transform: translateX(100%); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange-soft); }

.btn-ghost-dark {
  background: rgba(15,20,17,0.04);
  color: var(--ink);
  border-color: rgba(15,20,17,0.12);
}
.btn-ghost-dark:hover { background: rgba(15,20,17,0.08); border-color: rgba(15,20,17,0.2); }

.btn-light-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-light-outline:hover { background: rgba(255,255,255,0.1); }

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.phone-pill:hover { background: var(--green-50); text-decoration: none; }

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--orange));
  z-index: 100;
  transition: width 0.06s linear;
}

/* ============ CURTAIN (page-load intro) ============ */
.curtain {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.curtain-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 6rem);
  color: #fff;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(20px);
}
.curtain.is-done { pointer-events: none; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,252,248,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  background: rgba(253,252,248,0.94);
  border-bottom-color: rgba(15,20,17,0.06);
  box-shadow: 0 4px 16px rgba(15,20,17,0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none !important;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out);
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }
.brand-sub { font-size: 0.74rem; color: var(--slate-500); margin-top: 3px; letter-spacing: 0.02em; }

.primary-nav { display: flex; gap: 2px; }
.primary-nav a {
  padding: 10px 14px;
  color: var(--ink);
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  transition: color 0.2s ease;
}
.primary-nav a:hover { color: var(--green-700); text-decoration: none; }
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; gap: 10px; align-items: center; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid rgba(15,20,17,0.12);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 28px 26px;
  border-top: 1px solid rgba(15,20,17,0.06);
  background: var(--bg);
}
.mobile-drawer a {
  padding: 14px 8px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid rgba(15,20,17,0.05);
}
.mobile-drawer .drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, #fdfcf8 0%, #f4f3ee 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,20,17,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob-1 { top: -160px; right: -80px; width: 540px; height: 540px; background: rgba(42,140,76,0.55); }
.blob-2 { bottom: -180px; left: -120px; width: 480px; height: 480px; background: rgba(201,163,106,0.45); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15,20,17,0.06);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.4;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.hero-title .line {
  display: block;
  /* Mask kept for the word-reveal, but extended down + sideways so the clip
     box covers descenders (g, y, j) and the italic accent instead of cutting them. */
  overflow: hidden;
  position: relative;
  padding: 0.04em 0.08em 0.18em;
  margin: -0.04em -0.08em -0.18em;
}
.hero-title .word {
  display: inline-block;
}
.hero-title .accent {
  color: var(--green-700);
  font-style: italic;
  font-weight: 700;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--slate-700);
  max-width: 54ch;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.hero-meta li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--slate-700);
  font-size: 0.92rem;
  line-height: 1.3;
}
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-800);
  letter-spacing: -0.02em;
}

/* Hero right (illustration + floating cards) */
.hero-right {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 560px;
  margin-left: auto;
}
.hero-illo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 100%);
  border: 1px solid rgba(15,20,17,0.04);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-illo svg { width: 100%; height: 100%; }
.hero-illo .float-leaf { animation: floatA 6s ease-in-out infinite; transform-origin: center; }
.hero-illo .float-leaf-2 { animation: floatB 8s ease-in-out infinite; transform-origin: center; }
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(8deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(10px) rotate(-6deg); } }

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15,20,17,0.06);
}
.float-card-1 {
  left: -28px; top: 40px;
  display: flex; align-items: center; gap: 12px;
  animation: floatC 5s ease-in-out infinite;
}
@keyframes floatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.fc-row { display: flex; align-items: center; gap: 10px; }
.fc-avatar {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-50); color: var(--green-700);
  display: grid; place-items: center;
}
.float-card strong { display: block; font-family: var(--font-display); font-size: 0.96rem; font-weight: 700; color: var(--ink); }
.float-card span { font-size: 0.78rem; color: var(--slate-500); }

.float-card-2 {
  right: -16px; bottom: 60px;
  display: flex; flex-direction: column;
  animation: floatD 6s ease-in-out infinite;
}
@keyframes floatD { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.stars { color: #e0a423; font-size: 0.96rem; letter-spacing: 2px; margin-bottom: 4px; }

.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--slate-500);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none !important;
}
.scroll-cue svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============ MARQUEE ============ */
.marquee {
  /* Same dark-green family as the trust bar above, with a subtle gradient
     so the two strips read as one cohesive band instead of a hard clash. */
  background: linear-gradient(180deg, var(--green-900) 0%, #081c11 100%);
  color: #fff;
  padding: 20px 0;
  overflow: hidden;
  /* Faint orange hairline seam echoes the trust bar's orange top accent */
  border-top: 1px solid rgba(244,122,32,0.22);
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollX 38s linear infinite;
}
.marquee-set {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee-set i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  display: inline-block;
  flex-shrink: 0;
}
.marquee-set span:hover { color: var(--green-300); cursor: default; }
@keyframes scrollX {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ SECTION BASE ============ */
.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section-head {
  max-width: 760px;
  margin: 0 auto var(--section-head-mb);
  text-align: center;
}
.section-head h2 { margin-bottom: var(--space-3); }
.section-head p { font-size: var(--fs-lead); color: var(--slate-700); line-height: var(--lh-body); }
.section-head .kicker { justify-content: center; }
.section-head-light h2,
.section-head-light p { color: rgba(255,255,255,0.94); }
.section-head-light p { color: rgba(255,255,255,0.7); }

/* ============ SERVICES ============ */
.section-services {
  background: var(--bg);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid rgba(15,20,17,0.06);
}
.service-row:first-of-type { border-top: 0; }
.service-row-rev .service-visual { order: 2; }
.service-row-rev .service-copy { order: 1; }

.service-visual {
  position: relative;
}
.visual-shell {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease-out);
}
.visual-shell:hover { transform: scale(1.01); }
.visual-junk { background: var(--ink); }
.visual-land { background: var(--green-900); }
.visual-shell svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.visual-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.92);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(6px);
}

.service-copy h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}
.service-copy p {
  font-size: 1.06rem;
  margin-bottom: 24px;
  max-width: 50ch;
}
.service-icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease-out);
}
.service-row:hover .service-icon-wrap { transform: rotate(-6deg) scale(1.05); }

.chip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-list li {
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--bg-muted);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,20,17,0.05);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.chip-list li:hover {
  background: var(--green-50);
  color: var(--green-800);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--green-700);
  font-family: var(--font-sans);
}
.link-arrow svg { transition: transform 0.2s ease; }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============ STATS STRIP ============ */
.stats-strip {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(42,140,76,0.25), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.stat {
  text-align: left;
  padding: 6px 0;
}
.stat strong {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  display: inline-block;
  line-height: 1;
}
.stat .suffix {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--green-300);
  font-weight: 700;
  margin-left: 4px;
}
.stat p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.94rem;
  max-width: 26ch;
}

/* ============ PROCESS ============ */
.section-process {
  background: var(--bg-cream);
  background-image: radial-gradient(ellipse at top, rgba(42,140,76,0.06), transparent 60%);
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  position: relative;
  padding: 32px 28px 32px 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
}
.process-step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.process-step p { color: var(--slate-700); margin: 0; font-size: 0.98rem; }
.step-line {
  position: absolute;
  top: 50px; left: -14px;
  width: calc(100% - 28px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-300) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step:first-child .step-line { left: 50px; width: calc(100% - 80px); }
.process-step:last-child .step-line { display: none; }

/* ============ WHY ============ */
.section-why {
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-muted);
  border: 1px solid rgba(15,20,17,0.04);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,140,76,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.why-card:hover::after { opacity: 1; }

.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--green-700);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform 0.3s var(--ease-out), background 0.3s ease;
}
.why-card:hover .why-icon { transform: rotate(-6deg) scale(1.05); background: var(--green-800); }
.why-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why-card p { color: var(--slate-700); margin: 0; font-size: 0.98rem; }

/* ============ SERVICE AREAS ============ */
.section-areas {
  background:
    radial-gradient(800px 400px at 80% 30%, rgba(42,140,76,0.22), transparent 60%),
    radial-gradient(700px 400px at 10% 80%, rgba(201,163,106,0.18), transparent 60%),
    var(--green-900);
  color: #fff;
  overflow: hidden;
}
.section-areas h2 { color: #fff; }
.areas-pill-grid {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.areas-pill-grid li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.areas-pill-grid li:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.areas-cta {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}

.skyline {
  display: block;
  width: 100%;
  height: 120px;
  margin-top: 60px;
  margin-bottom: -120px;
}

/* ============ PRICING ============ */
.section-pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pricing-card {
  background: var(--bg-muted);
  border: 1px solid rgba(15,20,17,0.04);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.pricing-card-accent {
  background: linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-card-accent::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 16px; }
.pricing-card-accent h3 { color: #fff; }
.pricing-card-accent p, .pricing-card-accent .muted { color: rgba(255,255,255,0.7); }

.check-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.check-list li {
  padding-left: 36px; position: relative;
  color: var(--ink);
  font-size: 1rem;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-700);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-10'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.price-list {
  list-style: none; padding: 0; margin: 18px 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.price-list li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-size: 1rem;
  transition: background 0.2s ease;
}
.price-list li:hover { background: rgba(255,255,255,0.14); }
.price-list span { color: rgba(255,255,255,0.86); }
.price-list strong {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

/* Promo banner above tier grid */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 auto 28px;
  max-width: 720px;
  box-shadow: 0 10px 24px rgba(250,70,22,0.22);
  text-align: center;
}
.promo-banner strong { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; }
.promo-banner .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Tier Grid (Single / Partial / Full) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.tier-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,20,17,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}
.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.tier-card.is-featured {
  background: linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
  border-color: var(--green-600);
  box-shadow: 0 12px 30px rgba(34,164,93,0.16);
}
.tier-flag {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--green-600);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.tier-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  font-weight: 700;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 8px 0 12px;
}
.tier-price small {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0;
  margin-left: 4px;
}
.tier-card p.tier-best {
  color: var(--slate-700);
  font-size: 0.95rem;
  margin: 0 0 16px;
}
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.tier-list li {
  font-size: 0.94rem;
  color: var(--slate-700);
  padding-left: 26px;
  position: relative;
}
.tier-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-600);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-10'/></svg>");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============ ABOUT ============ */
.section-about { background: var(--bg-muted); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-copy h2 { margin-bottom: 18px; }
.about-copy p { font-size: 1.06rem; max-width: 56ch; }
.about-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin: 24px 0 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(15,20,17,0.08);
  border-bottom: 1px solid rgba(15,20,17,0.08);
}
.about-stats div { display: flex; flex-direction: column; gap: 4px; }
.about-stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-700);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.about-stats span { color: var(--slate-500); font-size: 0.92rem; }
.about-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-inner { position: absolute; inset: 0; }
.about-photo-inner svg { width: 100%; height: 100%; }
.photo-stamp {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  z-index: 2;
}
.about-tag {
  position: absolute;
  top: 22px; right: 22px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* ============ GALLERY ============ */
.section-gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gallery-card {
  margin: 0;
  background: var(--bg-muted);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 16 / 9;
  position: relative;
}
.ba::after {
  content: 'BEFORE / AFTER';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.ba-half {
  display: grid; place-items: end start;
  padding: 16px;
  color: #fff; font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.ba-before {
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, #4a4137, #1f1b15);
}
.ba-after {
  background:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, var(--green-600), var(--green-900));
}
.gallery-card figcaption {
  padding: 18px 22px 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.gallery-card figcaption strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.gallery-card figcaption span { color: var(--slate-500); font-size: 0.88rem; }

/* ============ REVIEWS ============ */
.section-reviews { background: var(--bg-muted); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(15,20,17,0.04);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review p { font-size: 1.04rem; color: var(--ink); margin-bottom: 14px; line-height: 1.55; }
.review .stars { font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 12px; }
.review cite {
  font-style: normal;
  color: var(--slate-500);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============ FAQ ============ */
.section-faq { background: var(--bg); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: var(--bg-muted);
  border: 1px solid rgba(15,20,17,0.04);
  border-radius: var(--radius);
  padding: 0 22px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-list details[open] {
  background: #fff;
  border-color: rgba(15,20,17,0.08);
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.08rem;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.plus {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.plus::before, .plus::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--green-700);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out);
}
.plus::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.plus::after { width: 2px; height: 14px; transform: translate(-50%,-50%); }
details[open] .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-list details p { color: var(--slate-700); padding: 0 0 20px; margin: 0; max-width: 60ch; }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 130px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.blob-final {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(42,140,76,0.36), transparent 60%);
  filter: blur(40px);
}
.final-cta-inner { position: relative; max-width: 760px; margin: 0 auto; }
.final-cta-inner .kicker { justify-content: center; }
.final-cta h2 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); }
.final-cta p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 60ch; margin-left: auto; margin-right: auto; }
.final-cta-buttons {
  margin: 32px 0 8px;
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.final-cta .fine { color: rgba(255,255,255,0.5); letter-spacing: 0.08em; margin-top: 16px; }

/* ============ FOOTER ============ */
.site-footer {
  background: #08100b;
  color: #cdd3cf;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-footer .brand-mark { background: var(--green-700); }
.brand-footer .brand-name,
.brand-footer .brand-sub { color: #fff; }
.brand-footer .brand-sub { color: #9ba49e; }
.site-footer h4 { color: #fff; margin-bottom: 14px; }
.footer-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.footer-list a { color: #cdd3cf; }
.footer-list a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-size: 0.88rem;
  color: #8b938e;
}
.back-top {
  display: inline-flex; align-items: center; gap: 6px;
  color: #cdd3cf;
}

/* ============ MOBILE STICKY BAR ============ */
.mobile-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  background: rgba(15,20,17,0.95);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 8px;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}
.mobile-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  font-size: 0.96rem;
  text-decoration: none !important;
}
.mobile-bar-btn-primary { background: var(--orange); }

/* ============ DATA REVEAL (initial state, JS animates in) ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-drawer { display: flex; }
  .mobile-drawer[hidden] { display: none; }

  .hero { padding: 60px 0 100px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; max-width: 460px; margin: 0 auto; }
  .hero-meta { gap: 24px; }
  .hero-meta strong { font-size: 2rem; }

  .section { padding: var(--section-py) 0; }
  .section-head { margin-bottom: var(--section-head-mb); }

  .service-row,
  .service-row-rev { grid-template-columns: 1fr; gap: 36px; }
  .service-row-rev .service-visual,
  .service-row-rev .service-copy { order: initial; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 28px; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .step-line { display: none !important; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .areas-pill-grid { gap: 8px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; gap: 22px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 440px; margin: 0 auto; }

  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .hero-cta .btn { width: 100%; }
  .float-card-1 { left: 6px; top: 6px; padding: 10px 12px; }
  .float-card-2 { right: 6px; bottom: 6px; padding: 10px 12px; }
  .float-card strong { font-size: 0.86rem; }
  .float-card span { font-size: 0.72rem; }

  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .visual-shell { aspect-ratio: 4 / 3; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001s !important;
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .curtain { display: none; }
}

/* =========================================================
   V2 OVERRIDES — brand palette, real photo hero, new sections
   ========================================================= */

body { background: var(--bg-cream); color: var(--ink); }
.muted { color: var(--slate-500); }

/* Curtain uses brand green */
.curtain { background: var(--green-900); }

/* Header on cream */
.site-header { background: rgba(245,241,230,0.85); }
.site-header.is-scrolled {
  background: rgba(245,241,230,0.96);
  border-bottom-color: rgba(31,77,51,0.12);
  box-shadow: 0 4px 16px rgba(31,77,51,0.06);
}

/* Brand logo image in header (replaces SVG mark) */
.brand-logo-img { gap: 0; }
.brand-logo-img img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .brand-logo-img img { height: 42px; }
}

.phone-pill { background: rgba(31,77,51,0.06); color: var(--green-900); }
.phone-pill:hover { background: rgba(31,77,51,0.12); }

/* ===== HERO v2 — real photo ===== */
.hero-v2 .hero-bg .blob-1 { background: radial-gradient(circle, rgba(167,184,154,0.55), transparent 70%); }
.hero-v2 .hero-bg .blob-2 { background: radial-gradient(circle, rgba(244,122,32,0.18), transparent 70%); }

.hero-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(31,77,51,0.08);
  background: var(--green-900);
  aspect-ratio: 5 / 4;
  will-change: transform;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease-out);
}
.hero-photo:hover img { transform: scale(1.05); }
.hero-photo-frame {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(245,241,230,0.18);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}
.hero-photo .float-card {
  position: absolute;
  background: var(--bg-paper);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  color: var(--ink);
  border: 1px solid rgba(31,77,51,0.08);
}
.hero-photo .float-card strong { display: block; font-weight: 700; font-size: 0.92rem; }
.hero-photo .float-card span { color: var(--slate-500); font-size: 0.82rem; }
.hero-photo .float-card-1 { left: -18px; top: 24px; max-width: 220px; }
.hero-photo .float-card-2 { right: -18px; bottom: 28px; max-width: 240px; background: var(--green-700); color: #fff; border-color: transparent; }
.hero-photo .float-card-2 strong { color: #fff; }
.hero-photo .float-card-2 span { color: rgba(255,255,255,0.78); }
.hero-photo .fc-row { display: flex; align-items: center; gap: 10px; }
.hero-photo .fc-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: grid; place-items: center;
}

@media (max-width: 960px) {
  .hero-photo .float-card-1 { left: 8px; top: 12px; max-width: 190px; }
  .hero-photo .float-card-2 { right: 8px; bottom: 12px; max-width: 200px; }
}

/* Trust row replaces hero-meta */
.trust-row {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.95rem;
  color: var(--slate-700);
}
.trust-row li { display: inline-flex; align-items: center; gap: 8px; }
.trust-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,122,32,0.18);
}

/* ===== SERVICES v2 — card grid with brand icons ===== */
.section-services-v2 {
  padding: var(--section-py) 0;
  /* extra room below the cards = a grass lane for the mower to run in */
  padding-bottom: clamp(140px, 14vw, 200px);
  /* warm cream with a faint outdoorsy lift toward the bottom — kills the "too white" flatness */
  background:
    radial-gradient(120% 80% at 50% 120%, rgba(167,184,154,0.22) 0%, rgba(167,184,154,0) 60%),
    linear-gradient(180deg, #fbf8ee 0%, var(--bg-cream) 38%, #eef1e4 100%);
  position: relative;
  overflow: hidden;
}
/* keep the real content above the scenery */
.section-services-v2 > .container { position: relative; z-index: 2; }

/* ===== Landscape scenery (decorative, behind the cards) ===== */
.svc-scenery {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
/* soft sun glow, orange-led per brand */
.svc-scenery .svc-sun {
  position: absolute;
  top: 7%;
  right: 9%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,122,32,0.20) 0%, rgba(244,122,32,0.06) 55%, rgba(244,122,32,0) 72%);
}
/* dark green ground block — soft watercolor landscaping seam */
.svc-scenery .svc-ground-block {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 104px;
  z-index: 1;
  background: linear-gradient(180deg, #305d39 0%, #234a2c 52%, #1b3a22 100%);
  box-shadow: inset 0 3px 0 rgba(140,185,120,0.28);   /* faint sunlit top lip */
}
/* watercolor PNG cutouts — layered decorative scenery */
.svc-scenery .lsc {
  position: absolute;
  height: auto;
  pointer-events: none;
  user-select: none;
}
/* left grove: deciduous (back) -> evergreen -> bush (front) */
.svc-scenery .lsc-decid-l { left: -20px; bottom: 92px; width: 175px; z-index: 2; opacity: 0.95; }
.svc-scenery .lsc-ever-l  { left: 90px;  bottom: 92px; width: 120px; z-index: 3; opacity: 0.95; }
.svc-scenery .lsc-bush-l  { left: 0;     bottom: 88px; width: 140px; z-index: 4; opacity: 0.9; }
/* right grove: evergreen (back) -> single leafy -> bush (front) */
.svc-scenery .lsc-ever-r  { right: 110px; bottom: 92px; width: 155px; z-index: 3; opacity: 0.95; }
.svc-scenery .lsc-leafy-r { right: -20px; bottom: 92px; width: 145px; z-index: 2; opacity: 0.95; }
.svc-scenery .lsc-bush-r  { right: 0;     bottom: 88px; width: 160px; z-index: 4; opacity: 0.9; }
/* faint botanical line-art stencil tiled across the section */
.svc-scenery .svc-stencil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/botany-stencil.png") repeat;
  background-size: 300px;
  opacity: 0.10;
}
/* ===== Lawn (mowable grass patches) — sits on the green ground ===== */
.svc-scenery .svc-lawn {
  position: absolute;
  left: 0; right: 0; bottom: 30px;
  height: 60px;
  z-index: 5;
}
.svc-scenery .svc-tuft {
  position: absolute;
  bottom: 0;
  width: 64px;                 /* soft watercolor grass patch */
  height: auto;
  transform: translateX(-50%) scale(var(--sc, 1));
  transform-origin: 50% 100%;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.svc-scenery .svc-tuft.cut {
  opacity: 0;
  transform: translateX(-50%) scale(0.15);
}

/* ===== Lawn-mower guy (PNG) — walks left → right ===== */
.svc-mower-guy {
  position: absolute;
  bottom: 22px;
  left: 0;
  width: clamp(120px, 13vw, 175px);
  z-index: 6;
  will-change: transform;
}
.svc-mower-img { width: 100%; height: auto; display: block; }
@media (prefers-reduced-motion: no-preference) {
  .svc-mower-img { animation: mow-bob 0.5s ease-in-out infinite; transform-origin: 50% 100%; }
}
@keyframes mow-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2.5px); }
}

/* ===== Small floating bee — a light detail above the left grove ===== */
.svc-scenery .lsc-bee {
  bottom: 150px;
  left: 24%;
  width: 42px;
  z-index: 7;
  opacity: 0.95;
}
@media (prefers-reduced-motion: no-preference) {
  .svc-scenery .lsc-bee { animation: bee-float 4.5s ease-in-out infinite; }
}
@keyframes bee-float {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(5px, -4px); }
  50%      { transform: translate(0, -6px); }
  75%      { transform: translate(-5px, -2px); }
}

@media (max-width: 900px) {
  .svc-scenery .lsc { transform: scale(0.74); transform-origin: bottom center; }
  .svc-scenery .lsc-bee { display: none; }
  .svc-scenery .svc-sun { width: 84px; height: 84px; }
}
@media (max-width: 560px) {
  .svc-scenery .lsc,
  .svc-scenery .svc-ground-block,
  .svc-scenery .svc-lawn,
  .svc-mower-guy { display: none; }
}
.section-lede {
  max-width: 620px;
  color: var(--slate-700);
  font-size: 1.06rem;
  margin: 14px auto 0;   /* auto sides so the centered text actually sits centered */
}
/* give the "What We Do" heading its own panel so it isn't floating on the wallpaper */
.section-services-v2 .section-head {
  background: rgba(255, 252, 246, 0.97);
  border: 1px solid rgba(31, 77, 51, 0.10);
  border-radius: 24px;
  padding: 30px 46px 34px;
  box-shadow: 0 18px 50px rgba(13, 40, 24, 0.10);
}
/* "What We Do" eyebrow becomes a crisp white pill that pops off the stencil bg */
.section-services-v2 .section-head .kicker {
  background: #fff;
  border: 2px solid rgba(244,122,32,0.28);
  border-radius: 999px;
  padding: 6px 20px 6px 6px;
  box-shadow: 0 8px 22px rgba(13,40,24,0.10);
  margin-bottom: 22px;
}
.section-services-v2 .section-head .kicker-num {
  background: var(--orange);     /* orange leads, on-brand anchor */
  width: 30px; height: 30px;
  font-size: 0.82rem;
}
.section-services-v2 .section-head .kicker-label {
  color: var(--green-800);
  letter-spacing: 0.2em;
}
.service-cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--bg-paper);
  border: 1px solid rgba(31,77,51,0.10);
  border-radius: 18px;
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--orange));
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31,77,51,0.22);
}
.svc-card:hover::after { transform: translateX(0); }
.svc-icon {
  width: 74px; height: 74px;
  display: grid; place-items: center;
  background: var(--bg-cream);
  border: 2px solid rgba(31,77,51,0.18);
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--green-700);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(31,77,51,0.08);
  transition: transform .25s ease, border-color .25s ease;
}
.svc-card:hover .svc-icon { transform: translateY(-2px); border-color: rgba(31,77,51,0.34); }
.svc-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 15px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.06));
}
.svc-icon-mono { background: var(--bg-cream); color: var(--green-700); }
.svc-icon-mono svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 1.25rem; color: var(--green-900); margin-bottom: 10px; }
.svc-card p { color: var(--slate-700); font-size: 0.96rem; margin-bottom: 16px; }
.svc-card .link-arrow {
  color: var(--orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.95rem;
}
.svc-card .link-arrow:hover { color: var(--orange-dark); text-decoration: none; }
@media (max-width: 1000px) { .service-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .service-cards { grid-template-columns: 1fr; } }

/* ===== FLOW (unique photo-quote section) ===== */
.section-flow {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--green-900) 0%, #0a1f12 100%);
  color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.section-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(167,184,154,0.18), transparent 50%),
    radial-gradient(circle at 88% 80%, rgba(244,122,32,0.16), transparent 50%);
  pointer-events: none;
}
.section-flow .container { position: relative; }
.section-flow .section-head h2 { color: var(--bg-cream); }
.section-flow .section-head em { color: var(--orange); }
.section-flow .section-lede { color: rgba(245,241,230,0.78); }
.section-flow .kicker-num { background: var(--orange); color: #fff; }
.section-flow .kicker-label { color: var(--sage); }

.flow-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 900px) {
  .flow-grid { grid-template-columns: 1fr; gap: 50px; justify-items: center; }
}

/* Phone mockup */
.flow-phone { display: flex; justify-content: center; }
.phone-frame {
  width: 320px;
  background: #1F1F1F;
  border-radius: 38px;
  padding: 14px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  position: relative;
}
.phone-notch {
  width: 120px; height: 22px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: var(--bg-cream);
  border-radius: 26px;
  padding: 16px 14px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink);
}
.chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 4px 14px;
  border-bottom: 1px solid rgba(31,77,51,0.10);
  margin-bottom: 8px;
}
.chat-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: -0.02em;
}
.chat-name { font-weight: 700; font-size: 0.85rem; color: var(--ink); }
.chat-bubble {
  padding: 9px 12px;
  border-radius: 16px;
  max-width: 80%;
  line-height: 1.4;
  word-wrap: break-word;
}
.chat-in {
  background: var(--slate-100);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-out {
  background: var(--green-700);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-bubble strong { color: var(--orange); }
.chat-in strong { color: var(--green-800); }
.chat-out.chat-photo-row { padding: 0; background: transparent; align-self: flex-end; }
.chat-photo-row { display: flex; gap: 6px; }
.chat-photo {
  width: 60px; height: 60px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6b7a5e, #3a4836);
  border: 2px solid var(--bg-cream);
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.chat-photo.p2 { background: linear-gradient(135deg, #8a6b48, #4d3a26); }
.chat-photo.p3 { background: linear-gradient(135deg, #4f6a4f, #2a3a2a); }
.chat-short { font-size: 0.95rem; }

/* Flow side: steps */
.flow-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.flow-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245,241,230,0.10);
}
.flow-steps li:last-child { border-bottom: none; }
.flow-num {
  font-family: var(--font-num);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--orange);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.flow-steps h3 { color: var(--bg-cream); font-size: 1.2rem; margin: 0 0 6px; }
.flow-steps p { color: rgba(245,241,230,0.74); margin: 0; font-size: 0.96rem; }

.flow-badges {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.flow-badge {
  background: rgba(245,241,230,0.08);
  border: 1px solid rgba(245,241,230,0.16);
  color: var(--bg-cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.flow-note {
  margin: 50px auto 0;
  max-width: 720px;
  text-align: center;
  color: rgba(245,241,230,0.72);
  font-size: 0.96rem;
  line-height: 1.6;
  padding: 22px 28px;
  background: rgba(245,241,230,0.04);
  border-radius: 14px;
  border: 1px solid rgba(245,241,230,0.10);
}

/* ===== ABOUT photo v2 (real truck photo) ===== */
.about-photo-v2 {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-900);
  min-height: 460px;
}
.about-photo-v2 img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}
.about-photo-v2 .about-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(13,40,24,0.86);
  color: var(--bg-cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
/* Remove old placeholder styles that no longer apply */
.about-photo-inner, .photo-stamp { display: none !important; }

/* About badge panel (clean brand block instead of reusing truck photo) */
.about-badge-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 48px 32px 64px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(167,184,154,0.22), transparent 55%),
    linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
  box-shadow: var(--shadow-lg);
  will-change: transform;
}
.about-badge {
  width: 200px;
  max-width: 60%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.about-badge-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bg-cream);
  margin: 0;
  letter-spacing: 0.01em;
}
.about-badge-panel .about-tag {
  position: absolute;
  left: 50%; bottom: 18px; top: auto; right: auto;
  transform: translateX(-50%);
  background: rgba(13,40,24,0.7);
  color: var(--sage);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(167,184,154,0.25);
}

/* ===== RECENT WORK ===== */
.section-gallery { background: var(--bg-cream); padding: var(--section-py) 0; }
.work-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .work-grid { grid-template-columns: 1fr; } }

.work-card {
  background: var(--bg-paper);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31,77,51,0.10);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  margin: 0;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-card img,
.work-card .empty-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--sage), var(--green-700));
  position: relative;
}
.work-card-feature { grid-column: span 2; }
@media (max-width: 1000px) { .work-card-feature { grid-column: span 2; } }
@media (max-width: 620px)  { .work-card-feature { grid-column: span 1; } }
.work-card-feature img { aspect-ratio: 16 / 10; }

.empty-photo {
  display: grid;
  place-items: center;
  background-image:
    linear-gradient(135deg, rgba(31,77,51,0.85), rgba(13,40,24,0.95)),
    repeating-linear-gradient(45deg, rgba(245,241,230,0.04) 0 8px, transparent 8px 16px);
  background-blend-mode: normal;
  color: var(--bg-cream);
}
.empty-tag {
  background: rgba(245,241,230,0.14);
  border: 1px solid rgba(245,241,230,0.22);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.work-card figcaption {
  padding: 16px 18px;
  display: flex; flex-direction: column;
  gap: 2px;
}
.work-card figcaption strong { color: var(--green-900); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.work-card figcaption span { color: var(--slate-500); font-size: 0.88rem; }

/* ===== REVIEWS (empty/ready state) ===== */
.section-reviews { background: var(--bg-cream); padding: var(--section-py) 0; }
.reviews-empty {
  margin-top: 40px;
  display: flex; justify-content: center;
}
.reviews-empty-card {
  max-width: 520px;
  width: 100%;
  text-align: center;
  background: var(--bg-paper);
  border: 1px dashed rgba(31,77,51,0.25);
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}
.reviews-empty-card .stars { color: var(--orange); font-size: 1.4rem; letter-spacing: 0.1em; margin-bottom: 14px; }
.reviews-empty-card p { color: var(--slate-700); font-size: 1.02rem; margin-bottom: 22px; }

/* ===== FOOTER tweaks ===== */
.site-footer { background: var(--green-900); color: var(--bg-cream); }
.site-footer h4 { color: var(--bg-cream); }
.site-footer .footer-list a { color: rgba(245,241,230,0.78); }
.site-footer .footer-list a:hover { color: #fff; }
.brand-footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}
.brand-footer-logo img {
  height: 56px;
  width: auto;
  display: block;
  /* logo has a light bg in PNG; sit it on dark with a clean card */
  background: var(--bg-cream);
  padding: 6px 10px;
  border-radius: 10px;
}
.footer-tag {
  color: var(--orange) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  margin-top: 14px;
}

/* ===== H1 / H2 base color in cream contexts ===== */
.section-services-v2 h2,
.section-gallery h2,
.section-reviews h2,
.section-about h2,
.section-faq h2,
.section-why h2 { color: var(--green-900); }

/* Final CTA — keep dark, use forest green */
.final-cta { background: var(--green-900); }
.final-cta h2 { color: var(--bg-cream); }
.final-cta em { color: var(--orange); }
.final-cta p { color: rgba(245,241,230,0.82); }
.final-cta .fine { color: rgba(245,241,230,0.6); }

/* Areas dark green */
.section-areas { background: var(--green-800); }
.areas-pill-grid li {
  background: rgba(245,241,230,0.10);
  border: 1px solid rgba(245,241,230,0.18);
  color: var(--bg-cream);
}

/* Hero title size tighten for 3-line layout */
.hero-v2 .hero-title { font-size: clamp(2.2rem, 5.4vw, 4.2rem); line-height: 1.04; }
.hero-v2 .hero-title .accent { color: var(--orange); }
@media (max-width: 620px) {
  .hero-v2 .hero-title { font-size: 2.05rem; line-height: 1.08; }
}
.hero-v2 .hero-sub { color: var(--slate-700); }

/* ===== Mobile sticky bar — brand colors ===== */
.mobile-bar-btn-primary { background: var(--orange) !important; }
.mobile-bar { background: var(--green-900); }
.mobile-bar-btn { color: var(--bg-cream); }

/* =========================================================
   V3 REFINEMENT — finished Recent Work, stronger Reviews,
   tighter cards. No fake placeholders, no empty boxes.
   ========================================================= */

/* ----- Service cards: pin CTA to bottom for equal rhythm ----- */
.svc-card { display: flex; flex-direction: column; }
.svc-card .link-arrow { margin-top: auto; }
.svc-card .link-arrow svg { transition: transform 0.25s var(--ease-out); }
.svc-card .link-arrow:hover svg { transform: translateX(4px); }

/* ----- Recent Work v3: feature photo + honest panels ----- */
.work-grid-v3 {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  align-items: stretch;
}
.work-grid-v3 .work-card-feature { grid-column: span 2; }
.work-grid-v3 .work-panel-list   { grid-column: span 1; }
.work-grid-v3 .work-panel-cta    { grid-column: 1 / -1; }

.work-panel {
  background: var(--bg-paper);
  border: 1px solid rgba(31,77,51,0.10);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.work-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-panel h3 {
  font-family: var(--font-display);
  color: var(--green-900);
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 16px;
}
.work-panel-list ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.work-panel-list li {
  position: relative;
  padding-left: 22px;
  color: var(--slate-700);
  font-size: 0.96rem;
  line-height: 1.4;
}
.work-panel-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--orange);
}
.work-panel-note {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-700);
  font-weight: 600;
  font-size: 0.92rem;
}

.work-panel-cta {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--green-900), #0d2818);
  border: none;
  color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.work-panel-cta::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,122,32,0.22), transparent 70%);
  pointer-events: none;
}
.work-panel-cta .work-panel-text { max-width: 560px; position: relative; z-index: 1; }
.work-panel-cta h3 { color: var(--bg-cream); margin-bottom: 8px; }
.work-panel-cta p { color: rgba(245,241,230,0.84); font-size: 0.98rem; line-height: 1.5; }
.work-panel-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.work-panel-soon { font-size: 0.82rem; color: rgba(245,241,230,0.62); }

/* ----- Jobs We Handle: honest tag pills on cards ----- */
.work-card { position: relative; }
.work-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(31,31,31,0.72);
  color: var(--bg-cream);
  backdrop-filter: blur(3px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.work-tag-real {
  background: var(--orange);
  color: #fff;
}

/* ----- Real before/after cards: one tidy row of three (compressed) ----- */
.work-grid-v3 .work-card-ba { grid-column: span 1; }
.work-card-ba .ba-img { width: 100%; line-height: 0; }
.work-card-ba .ba-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;    /* uniform crop so all three align in the row */
  object-fit: cover;
  display: block;
}
/* subtle center seam to read as a true before | after split */
.work-card-ba .ba-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--green-900);
}
.work-card-ba .ba-img::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(245,241,230,0.55);
  pointer-events: none;
}
@media (max-width: 620px) {
  .work-card-ba .ba-img::after { display: none; }
}

/* ----- Trust bar under hero ----- */
.trust-bar {
  background: var(--green-900);
  color: var(--bg-cream);
  border-top: 3px solid var(--orange);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 15px 20px;
  text-align: center;
}
.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(245,241,230,0.92);
}
.trust-bar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}
@media (max-width: 620px) {
  .trust-bar-inner { flex-direction: column; gap: 10px; }
  .trust-bar-item { font-size: 0.9rem; }
}

/* ----- Footer brand messaging strip (per brand board) ----- */
.footer-strip {
  background: var(--orange);
  color: #fff;
}
.footer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 20px;
  text-align: center;
}
.footer-strip-item {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
  text-transform: uppercase;
}
.footer-strip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  flex: none;
}
@media (max-width: 620px) {
  .footer-strip-dot { display: none; }
  .footer-strip-inner { flex-direction: column; gap: 8px; }
  .footer-strip-item { font-size: 0.9rem; }
}

@media (max-width: 1000px) {
  .work-grid-v3 { grid-template-columns: repeat(2, 1fr); }
  .work-grid-v3 .work-card-feature,
  .work-grid-v3 .work-panel-list,
  .work-grid-v3 .work-panel-cta { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .work-grid-v3 { grid-template-columns: 1fr; }
  .work-grid-v3 .work-card-feature { grid-column: 1 / -1; }
  .work-panel-cta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .work-panel-actions { width: 100%; }
  .work-panel-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ----- Reviews v3: honest invitation + trust signals ----- */
.reviews-layout {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 820px) { .reviews-layout { grid-template-columns: 1fr; } }

.reviews-invite {
  background: var(--bg-paper);
  border: 1px solid rgba(31,77,51,0.12);
  border-radius: 18px;
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.reviews-invite .stars {
  color: var(--orange);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  line-height: 1.1;
}
.reviews-invite .stars-note {
  display: block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate-500);
  margin-top: 8px;
}
.reviews-invite h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-900);
  font-size: 1.4rem;
  margin: 18px 0 8px;
}
.reviews-invite p { color: var(--slate-700); font-size: 1.0rem; margin-bottom: 22px; line-height: 1.5; }
.reviews-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.reviews-actions .btn {
  justify-content: center;
  min-height: 46px;
  padding-inline: 14px;
  text-align: center;
}

.trust-signals {
  list-style: none;
  margin: 0;
  padding: 32px 30px;
  display: grid;
  gap: 14px;
  align-content: center;
  background: linear-gradient(135deg, var(--green-900), #0d2818);
  border-radius: 18px;
  color: var(--bg-cream);
}
.trust-signals li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.99rem;
  color: rgba(245,241,230,0.92);
}
.trust-signals li::before {
  content: '✓';
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
}
@media (max-width: 620px) {
  .reviews-actions { grid-template-columns: 1fr; }
  .reviews-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* =========================================================
   UNIVERSAL SYSTEM (applied last)
   One spacing rhythm + one brand-board card style everywhere.
   ========================================================= */

/* Readable body + lead copy, consistent line-height (no cramped text) */
body { font-size: var(--fs-body); line-height: var(--lh-body); }
p { line-height: var(--lh-body); }
.section-lede,
.hero-sub { font-size: var(--fs-lead); line-height: var(--lh-body); }

/* Every card grid breathes with the same gap */
.service-cards,
.why-grid,
.work-grid,
.work-grid-v3 { gap: var(--grid-gap); }

/* Brand-board card surface: warm paper, soft green hairline, rounded, soft shadow */
.svc-card,
.why-card,
.work-panel {
  background: var(--bg-paper);
  border: var(--panel-border);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  box-shadow: var(--shadow-sm);
}
/* The green CTA + trust panels keep their own forest-green fill */
.work-panel-cta {
  background: linear-gradient(120deg, var(--green-900), #0d2818);
  border: none;
}

/* Consistent hover lift across all cards */
.svc-card:hover,
.why-card:hover,
.work-card:hover,
.work-panel:hover { box-shadow: var(--shadow-md); }

/* A little more air under the numbered section badge, board-style */
.section-head .kicker { margin-bottom: var(--space-4); }

/* Safety net: headings never clip their letter tails anywhere */
h1, h2, h3, .hero-title { padding-bottom: 0.02em; }

/* ----- About: real crew photo in the green frame ----- */
.about-crew-panel {
  min-height: 0;
  padding: 18px 18px 58px;
  gap: 18px;
  justify-content: flex-start;
  background: linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
}
.about-crew {
  width: 100%;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,0.30);
}
.about-crew img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ============================================================
   REVAMP: show-more / tell-less for hero, trust bar, services
   ============================================================ */

/* ----- Hero: visual service chips (replace the wordy paragraph) ----- */
.hero-chips {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(31,77,51,0.14);
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
}
.hero-chips li img {
  width: 24px; height: 24px;
  object-fit: contain;
  background: var(--bg-cream);
  border-radius: 50%;
  padding: 3px;
}
.hero-chips .hero-chip-more {
  background: var(--green-700);
  color: var(--bg-cream);
  border-color: transparent;
  padding: 7px 16px;
}

/* ----- Hero: trust badges with icons (replace plain dots) ----- */
.trust-row-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 4px;
}
.trust-row-badges li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
}
.trust-ico {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(31,77,51,0.10);
  color: var(--green-700);
  flex: none;
}

/* ----- Trust bar: small icons instead of dots ----- */
.trust-bar-ico {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(245,241,230,0.12);
  color: var(--orange);
  flex: none;
}

/* ----- Services: brand-board 09 photo cards (photo + overlapping icon badge) ----- */
.svc-card {
  padding: 0;            /* override universal card padding for photo layout */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.svc-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--green-900);
}
.svc-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease-out);
}
.svc-card:hover .svc-photo > img { transform: scale(1.07); }
.svc-photo::after {
  content: '';
  position: absolute; inset: 0;
  /* Stronger bottom scrim so the white badge + any caption read crisply */
  background: linear-gradient(180deg, transparent 42%, rgba(13,40,24,0.55));
  pointer-events: none;
}
/* Icon badge floats FULLY INSIDE the photo bottom-left (no clipping),
   crisp white on the dark scrim so it pops instead of blending. */
.svc-card .svc-icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  width: 62px; height: 62px;
  margin-bottom: 0;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(13,40,24,0.40), 0 0 0 4px rgba(255,255,255,0.14);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.svc-card:hover .svc-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 26px rgba(13,40,24,0.35), 0 0 0 4px rgba(244,122,32,0.55);
}
.svc-icon img { padding: 13px; }
.svc-icon-mono { background: #fff; color: var(--green-700); }
.svc-icon-mono svg { width: 26px; height: 26px; }
.svc-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { margin-bottom: 18px; }

/* ----- Make the service grid POP: clean orange accents (no green/red clash) ----- */
.svc-card {
  border: 2px solid rgba(244,122,32,0.28);   /* soft orange border */
  border-radius: 18px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}
/* Always-visible solid orange top bar (was hover-only). Sits above the photo. */
.svc-card::after {
  inset: 0 0 auto 0;        /* move strip to the TOP */
  height: 5px;
  transform: none;          /* always shown, no slide-in */
  background: var(--orange);
  z-index: 3;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);   /* border deepens to full orange on hover */
  box-shadow: 0 18px 38px rgba(244,122,32,0.20);
}
.svc-card:hover::after { transform: none; }  /* keep it; don't re-trigger slide */
/* Title is the "value" the eye should land on: bigger, heavier, tighter,
   with a bolder orange accent bar so each service name reads as a headline. */
.svc-card h3 {
  position: relative;
  padding-left: 16px;
  font-size: clamp(1.32rem, 1.05rem + 0.7vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--green-900);
  margin-bottom: 10px;
}
.svc-card h3::before {
  content: '';
  position: absolute;
  left: 0; top: 0.12em; bottom: 0.12em;
  width: 5px;
  border-radius: 5px;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(244,122,32,0);
  transition: box-shadow 0.3s var(--ease-out), height 0.3s var(--ease-out);
}
.svc-card:hover h3::before {
  box-shadow: 0 4px 12px rgba(244,122,32,0.45);
}

/* ----- Responsive: keep hero readable, no horizontal spill ----- */
@media (max-width: 620px) {
  .hero-chips { gap: 8px; }
  .hero-chips li { font-size: 0.84rem; }
  .svc-photo { aspect-ratio: 16 / 11; }
}

/* ====================================================================
   HERO COVER — full-bleed truck photo, dark scrim, white text on top
   (replaces the cream split-layout hero)
   ==================================================================== */
.hero-cover {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: 132px 0 90px;
  background: var(--green-900);
}
.hero-cover-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-cover-media img {
  width: 104%;             /* slight overscale so blurred edges never show a gap */
  height: 116%;
  margin: -8% 0 0 -2%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  /* this copy is now a soft, atmospheric backdrop — the sharp version sits in the frame */
  filter: blur(11px) brightness(0.78) saturate(1.1);
  transform: scale(1.04);
}
.hero-cover-scrim {
  position: absolute;
  inset: 0;
  /* lighter wash so more of the scene shows through; copy panel carries its own contrast */
  background:
    linear-gradient(180deg, rgba(12,15,13,0.38) 0%, rgba(12,15,13,0.22) 42%, rgba(12,15,13,0.52) 100%),
    radial-gradient(140% 110% at 30% 46%, rgba(12,15,13,0.06) 34%, rgba(12,15,13,0.34) 100%);
}
/* stack the big photo and the copy panel in one grid cell so the hero
   grows to fit whichever is taller, and the panel overlaps the photo's left edge */
.hero-cover-inner {
  position: relative;
  z-index: 2;
  max-width: 1860px;        /* hero spans wider than the rest of the site */
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.hero-cover-inner > .hero-panel,
.hero-cover-inner > .hero-frame {
  grid-area: 1 / 1;
}

/* glass copy panel floats over the left edge of the big photo */
.hero-panel {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 483px;
  justify-self: start;
  align-self: center;
  padding: clamp(22px, 2.2vw, 32px) clamp(20px, 2.2vw, 30px) clamp(24px, 2.2vw, 32px);
  background: rgba(8,13,10,0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.44);
}

/* sharp, fully-framed crew photo on the right — whole crew visible, no crop,
   with a real matted-frame feel (cream mat + dark border + deep shadow) */
.hero-frame {
  position: relative;
  align-self: center;        /* center the photo vertically in the hero */
  display: flex;
  flex-direction: column;    /* logo header stacked above the photo */
  /* wide toward the right wall; photo keeps its natural shape so the whole crew shows */
  width: calc(100% - 583px);
  margin: 0 0 0 601px;       /* moved over: bigger left gap, right edge near the wall */
  padding: clamp(12px, 1vw, 18px);     /* the "mat" around the photo */
  background: var(--bg-cream);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.12),
    0 40px 90px rgba(0,0,0,0.52),
    0 8px 24px rgba(0,0,0,0.34);
}
.hero-frame::after {
  /* thin inner keyline so the photo edge reads crisp against the mat */
  content: '';
  position: absolute;
  inset: clamp(10px, 0.9vw, 16px);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.16);
  pointer-events: none;
  z-index: 2;
}
.hero-frame .hero-frame-logo {
  display: block;
  box-sizing: border-box;
  width: 100%;                         /* span the full top bar so the brand pops */
  height: clamp(118px, 9.5vw, 152px);  /* bigger logo banner */
  padding: 18px 44px;                  /* breathing room inside the pill */
  margin: 6px 0 18px;                  /* full-width header above the photo */
  object-fit: contain;
  background: #fff;                    /* white pill bubble around the logo */
  border: 4px solid var(--green-700);  /* lighter green outline around the pill */
  border-radius: 999px;
  box-shadow:
    0 0 28px 6px rgba(255,255,255,0.45),  /* dim light glow all the way around */
    0 8px 22px rgba(0,0,0,0.16);
}
.hero-frame .hero-frame-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  flex: none;
  width: 100%;
  aspect-ratio: 4 / 3;   /* match the photo's natural shape so the full crew shows, no crop */
}
/* soft green tint riding the very outer edge, blended into the white feather */
.hero-frame .hero-frame-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 26px 7px rgba(34,84,52,0.34);
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* soft feathered edges — photo blurs/fades into the frame instead of a hard rectangle */
.hero-frame-img img {
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
  mask-image:
    linear-gradient(to right,  transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.hero-frame figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 16px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(8,12,9,0.74));
  z-index: 1;
}
.hero-cover .hero-title { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
.hero-cover .hero-title .accent { font-size: clamp(1.15rem, 2vw, 1.6rem); }
.hero-cover .hero-sub { font-size: 1.02rem; margin-bottom: 22px; }
/* keep the copy in a left-aligned column, not full container width */
.hero-cover .hero-title,
.hero-cover .hero-sub,
.hero-cover .hero-chips,
.hero-cover .hero-cta,
.hero-cover .trust-row-badges {
  max-width: 640px;
}

/* desktop: a taller copy panel with everything centered inside */
@media (min-width: 901px) {
  .hero-cover .hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 1100px;
  }
  .hero-cover .hero-panel .hero-chips,
  .hero-cover .hero-panel .hero-cta,
  .hero-cover .hero-panel .trust-row-badges {
    justify-content: center;
  }
}

/* eyebrow on dark */
.hero-cover .hero-eyebrow {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  backdrop-filter: blur(6px);
}

/* headline goes white, accent stays warm */
.hero-cover .hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  color: #fff;
  -webkit-text-stroke: 8px var(--green-900);  /* dark green outline around the white letters */
  paint-order: stroke fill;                   /* stroke behind, white fill on top stays bold */
  text-shadow:
    0 0 1px var(--green-900),
    0 2px 24px rgba(0,0,0,0.28);
  margin-bottom: 22px;
}
.hero-cover .hero-title .accent {
  font-size: clamp(1.25rem, 2.4vw, 1.95rem);
  line-height: 1.18;
  color: var(--sage);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.34);
}
.hero-cover .hero-sub {
  color: rgba(255,255,255,0.90);
  max-width: 52ch;
  margin-bottom: 26px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.30);
}

/* chips slightly translucent-glass so they sit on the photo */
.hero-cover .hero-chips { margin-bottom: 30px; }
.hero-cover .hero-chips li {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.4);
}
/* keep the "+ more" chip solid green with visible cream text (it inherited the white pill above) */
.hero-cover .hero-chips .hero-chip-more {
  background: var(--green-700);
  color: var(--bg-cream);
  border-color: transparent;
}

/* secondary call button reads as glass-on-photo */
.btn-call {
  background: rgba(255,255,255,0.95);
  color: var(--green-900);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-call:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* trust badges go light on the dark hero */
.hero-cover .hero-cta { margin-bottom: 34px; }
.hero-cover .trust-row-badges li { color: rgba(255,255,255,0.92); }
.hero-cover .trust-ico {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* scroll cue light */
.hero-cover .scroll-cue { color: rgba(255,255,255,0.8); }

@media (max-width: 860px) {
  .hero-cover {
    min-height: 0;
    padding: 116px 0 64px;
  }
  .hero-cover-media img { object-position: 64% center; }
  .hero-cover-scrim {
    background:
      linear-gradient(180deg,
        rgba(11,33,20,0.78) 0%,
        rgba(11,33,20,0.70) 45%,
        rgba(11,33,20,0.84) 100%);
  }
}

/* ----- Tablet: stack the hybrid (panel over blurred bg, sharp frame below) ----- */
@media (max-width: 900px) and (min-width: 761px) {
  .hero-cover-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-panel { max-width: 600px; }
  .hero-frame { max-width: 600px; }
}

/* ----- Phone: reformat hero — copy on green, crew as a framed photo below
   (so the full crew shows small and nobody is covered by the panel) ----- */
@media (max-width: 760px) {
  .hero-cover {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 104px 0 30px;
    background: linear-gradient(180deg, #103019 0%, #0b2114 100%);
  }
  /* photo becomes a contained, rounded frame at the end of the hero */
  .hero-cover-media {
    position: relative;
    inset: auto;
    order: 2;
    margin: 22px var(--container-pad) 0;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 44px rgba(0,0,0,0.42);
  }
  .hero-cover-media img {
    position: absolute;
    top: -5%; left: 0;
    width: 100%; height: 110%;   /* small buffer so parallax never reveals an edge */
    margin: 0;
    object-fit: cover;
    object-position: center 42%;
    filter: none;                /* sharp on mobile (it's the framed photo here) */
    transform: none;
  }
  .hero-cover-scrim { display: none; }
  /* the desktop sharp frame is redundant here — mobile uses the media block as the frame */
  .hero-frame { display: none; }
  /* text sits directly on the green, panel styling removed and pinned left */
  .hero-cover-inner {
    order: 1;
    display: block;
  }
  .hero-panel {
    max-width: none;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
  }
}
@media (max-width: 620px) {
  .hero-cover .hero-title { font-size: 2.35rem; line-height: 1.06; }
  .hero-cover .hero-cta .btn { width: 100%; }
}

/* ============================================================
   Desktop design scale: make 100% browser zoom feel like 80%
   without changing the page structure or responsive format.
   ============================================================ */
@media (min-width: 761px) {
  html {
    font-size: 80%;
  }

  :root {
    --max: 992px;
    --section-py:      clamp(58px, 7.2vw, 96px);
    --section-head-mb: clamp(32px, 4.8vw, 51px);
    --container-pad:   clamp(16px, 3.2vw, 26px);
    --card-pad:        clamp(19px, 2.4vw, 27px);
    --grid-gap:        clamp(14px, 1.92vw, 22px);
    --radius:          11px;
    --radius-lg:       18px;
    --radius-xl:       24px;
    --fs-h1:           clamp(2.2rem, 5.2vw, 4rem);
    --fs-h2:           clamp(1.9rem, 4vw, 3rem);
    --fs-h3:           clamp(1.15rem, 1.5vw, 1.35rem);
    --fs-lead:         clamp(1.02rem, 1.4vw, 1.18rem);
  }

  .site-header {
    transform-origin: top center;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand-logo-img img {
    height: 42px;
  }

  .btn {
    padding: 10px 16px;
    gap: 8px;
  }

  .btn-lg {
    padding: 13px 21px;
  }

  .hero-cover {
    min-height: 74vh;
    padding: 106px 0 72px;
  }

  .hero-cover-inner {
    max-width: 1488px;
  }

  .hero-panel {
    max-width: 386px;
    padding: clamp(18px, 1.76vw, 26px) clamp(16px, 1.76vw, 24px) clamp(19px, 1.76vw, 26px);
    border-radius: 18px;
  }

  .hero-frame {
    width: calc(100% - 466px);
    margin-left: 481px;
    padding: clamp(10px, .8vw, 14px);
    border-radius: 14px;
  }

  .hero-frame::after {
    inset: clamp(8px, .72vw, 13px);
    border-radius: 8px;
  }

  .hero-frame .hero-frame-logo {
    width: 95%;                           /* full top-bar banner so the brand pops */
    height: clamp(99px, 7.6vw, 131px);
    padding: 16px 40px;
    margin: 6px auto 14px;
    border-width: 3px;
  }

  .hero-frame figcaption {
    padding: 24px 13px 10px;
  }

  .hero-cover .hero-title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    -webkit-text-stroke-width: 6px;
    margin-bottom: 18px;
  }

  h1,
  h2,
  h3,
  .hero-title {
    padding-bottom: .08em;
    overflow: visible;
  }

  .hero-cover .hero-title .accent {
    margin-top: 10px;
  }

  .hero-cover .hero-sub {
    max-width: 46ch;
    margin-bottom: 21px;
  }

  .hero-cover .hero-chips {
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-cover .hero-chips li {
    padding: 6px 11px 6px 7px;
  }

  .hero-chips li img {
    width: 19px;
    height: 19px;
  }

  .hero-cover .hero-cta {
    margin-bottom: 27px;
  }

  .trust-row-badges {
    gap: 8px 14px;
  }

  .trust-ico,
  .trust-bar-ico {
    width: 21px;
    height: 21px;
  }
}

@media (min-width: 901px) {
  .hero-cover .hero-panel {
    min-height: 880px;
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .hero-panel,
  .hero-frame {
    max-width: 480px;
  }

  .hero-frame {
    width: 100%;
    margin-left: 0;
  }
}

/* ============================================================
   Accessibility: visible keyboard focus (WCAG 2.4.7)
   Only shows for keyboard nav (:focus-visible), not mouse clicks.
   ============================================================ */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 0 6px rgba(244,122,32,0.25);
}

/* =========================================================
   HOW IT WORKS - PNG asset rebuild with live editable text
   ========================================================= */
.hm-how-it-works {
  --hiw-asset: "public/assets/hm-how-it-works";
  position: relative;
  isolation: isolate;
  min-height: 910px;
  padding: 26px 0 70px;
  overflow: hidden;
  background: #071f14;
  color: var(--bg-cream);
}
.hm-how-it-works::before,
.hm-how-it-works::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hm-how-it-works::before {
  z-index: 2;
  background:
    radial-gradient(circle at 30% 66%, rgba(155, 178, 77, 0.13), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(229, 182, 70, 0.13), transparent 27%),
    linear-gradient(90deg, rgba(4, 24, 15, 0.22), transparent 38%, rgba(3, 24, 15, 0.12));
  mix-blend-mode: screen;
  opacity: 0.48;
}
.hm-how-it-works::after {
  z-index: 3;
  background:
    radial-gradient(circle at 50% 44%, transparent 0 48%, rgba(3, 19, 13, 0.11) 78%),
    linear-gradient(180deg, rgba(2, 16, 10, 0.07), transparent 24%, rgba(3, 16, 10, 0.15));
}
.hm-how-it-works .container { position: relative; z-index: 5; }

.hiw-bg,
.hiw-layer,
.hiw-headline-plate {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.hiw-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(1.03) contrast(1.01);
  z-index: 0;
}
.hiw-layer { z-index: 1; }
.hiw-path {
  right: 0;
  bottom: 52px;
  width: min(34vw, 610px);
  opacity: 0.12;
  filter: blur(0.4px) saturate(0.9);
  mix-blend-mode: soft-light;
  -webkit-mask-image: radial-gradient(ellipse at 100% 72%, #000 0 35%, rgba(0, 0, 0, 0.52) 58%, transparent 82%);
  mask-image: radial-gradient(ellipse at 100% 72%, #000 0 35%, rgba(0, 0, 0, 0.52) 58%, transparent 82%);
}
.hiw-sun {
  right: 0;
  top: 0;
  width: min(34vw, 520px);
  opacity: 0.36;
  mix-blend-mode: screen;
}
.hiw-upper-leaves {
  right: 0;
  top: 0;
  width: min(25vw, 380px);
  opacity: 0.24;
  z-index: 2;
}
.hiw-left-soft {
  left: -2.5vw;
  bottom: 0;
  width: min(32vw, 470px);
  opacity: 0.20;
  z-index: 2;
  filter: saturate(1.05);
  -webkit-mask-image: linear-gradient(90deg, #000 0 36%, rgba(0, 0, 0, 0.42) 56%, transparent 78%);
  mask-image: linear-gradient(90deg, #000 0 36%, rgba(0, 0, 0, 0.42) 56%, transparent 78%);
}
.hiw-left-plants {
  left: -1.5vw;
  bottom: 0;
  width: min(27vw, 390px);
  opacity: 0.74;
  z-index: 3;
  filter: saturate(1.08) contrast(1.04);
  -webkit-mask-image: linear-gradient(90deg, #000 0 50%, rgba(0, 0, 0, 0.52) 66%, transparent 84%);
  mask-image: linear-gradient(90deg, #000 0 50%, rgba(0, 0, 0, 0.52) 66%, transparent 84%);
}
.hiw-headline-plate {
  top: 22px;
  left: 50%;
  width: min(1280px, 78vw);
  height: 220px;
  object-fit: fill;
  opacity: 0.98;
  transform: translateX(-50%);
  z-index: 4;
  border: 3px solid rgba(255, 122, 26, 0.46);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(7, 38, 24, 0.95), rgba(4, 27, 18, 0.92));
  box-shadow:
    0 0 0 1px rgba(255, 188, 83, 0.16),
    0 22px 55px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(255, 122, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -20px 42px rgba(0, 0, 0, 0.20);
}

.hiw-container {
  max-width: 1360px;
  min-height: 840px;
}
.hiw-head {
  position: relative;
  z-index: 6;
  max-width: min(1040px, 72vw);
  margin: 0 auto;
  padding-top: 14px;
  text-align: center;
}
.hiw-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 178, 92, 0.78);
  border-radius: 999px;
  background: rgba(245, 241, 230, 0.92);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
  color: #143723;
}
.hiw-label span {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(180deg, #ff9a2e 0%, #f47a20 100%);
  color: #102717;
  font-weight: 900;
  font-size: 1.05rem;
}
.hiw-label strong {
  padding: 0 24px 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hiw-head h2 {
  max-width: 900px;
  margin: 0 auto 14px;
  color: #f4f0e6;
  font-size: clamp(46px, 4.2vw, 58px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.32);
}
.hiw-head h2 em {
  color: #ff7a1a;
  font-style: italic;
  font-weight: 800;
  font-family: inherit;
}
.hiw-head p {
  width: fit-content;
  max-width: min(760px, 88vw);
  margin: 0 auto;
  padding: 9px 24px 10px;
  border: 1px solid rgba(255, 169, 58, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 250, 236, 0.94), rgba(236, 224, 196, 0.88));
  color: #153723;
  font-size: 18px;
  line-height: 1.38;
  text-wrap: balance;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 0 3px rgba(255, 122, 26, 0.08);
  backdrop-filter: blur(10px);
}

.hm-how-it-works .hiw-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
  margin-top: 34px;
}
.hiw-phone-stage {
  position: relative;
  min-height: 720px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 34px;
}
.hiw-phone-shadow {
  display: none;
}
.hiw-phone-art {
  position: relative;
  z-index: 1;
  width: clamp(430px, 35vw, 580px);
  height: auto;
  max-width: 100%;
  margin-top: -12px;
  transform: translateX(0);
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.30));
  transition: transform 0.35s var(--ease-out), filter 0.35s var(--ease-out);
  pointer-events: none;
  user-select: none;
}
@media (hover: hover) and (pointer: fine) {
  .hiw-phone-stage:hover .hiw-phone-art {
    transform: translateY(-6px);
    filter: drop-shadow(0 42px 56px rgba(0, 0, 0, 0.36));
  }
}

.hm-how-it-works .hiw-process {
  width: 100%;
  max-width: 800px;
  margin-top: 18px;
}
.hm-how-it-works .hiw-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.hm-how-it-works .hiw-step {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 88px 94px 1fr;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0 34px;
  border: 2px solid rgba(255, 122, 26, 0.52);
  border-radius: 20px;
  background-color: rgba(14, 55, 36, 0.97);
  background-image:
    linear-gradient(100deg, rgba(245, 241, 230, 0.15) 0%, rgba(28, 88, 58, 0.82) 42%, rgba(6, 39, 26, 0.78) 100%),
    url("public/assets/hm-how-it-works/03_step_card_backplate.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  box-shadow:
    0 0 0 1px rgba(255, 177, 77, 0.16),
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -18px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}
.hm-how-it-works .hiw-step-num {
  font-family: var(--font-display);
  color: #ff7a1a;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}
.hiw-step-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.hm-how-it-works .hiw-step-copy h3 {
  margin: 0 0 6px;
  color: #f4f0e6;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}
.hm-how-it-works .hiw-step-copy p {
  margin: 0;
  color: rgba(244, 240, 230, 0.82);
  font-size: 15.5px;
  line-height: 1.36;
}

.hm-how-it-works .hiw-trust {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 18px;
}
.hm-how-it-works .hiw-trust-chip {
  flex: 1 1 0;
  min-width: 0;
  max-width: 210px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid rgba(245, 241, 230, 0.13);
  border-radius: 999px;
  background-color: rgba(32, 82, 55, 0.92);
  background-image:
    linear-gradient(100deg, rgba(245, 241, 230, 0.11), rgba(15, 62, 41, 0.52)),
    url("public/assets/hm-how-it-works/04_trust_pill_base.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #f4f0e6;
  font-size: 16px;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.18);
}
.hiw-cta-wrap {
  display: grid;
  justify-items: center;
  margin-top: 18px;
}
.hiw-cta {
  width: 430px;
  max-width: 100%;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background-color: #ff8a19;
  background-image:
    linear-gradient(90deg, rgba(255, 111, 13, 0.45), rgba(255, 183, 54, 0.28)),
    url("public/assets/hm-how-it-works/05_cta_orange_button_base.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -8px 18px rgba(171, 72, 5, 0.18),
    0 22px 46px rgba(255, 122, 26, 0.42),
    0 0 0 2px rgba(255, 205, 128, 0.32);
  transition: transform 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}
.hiw-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.hiw-cta-wrap p {
  margin: 10px 0 0;
  color: rgba(244, 240, 230, 0.76);
  font-size: 15px;
  text-align: center;
}

@media (max-width: 1180px) {
  .hiw-head { max-width: min(840px, 82vw); }
  .hiw-head h2 { font-size: 48px; }
  .hiw-head p { font-size: 17px; }
  .hm-how-it-works .hiw-grid { gap: 42px; }
  .hm-how-it-works .hiw-step { padding: 0 24px; grid-template-columns: 72px 84px 1fr; }
  .hm-how-it-works .hiw-step-num { font-size: 38px; }
  .hiw-step-icon { width: 70px; height: 70px; }
  .hm-how-it-works .hiw-trust-chip { font-size: 14.5px; padding: 0 14px; }
}

@media (max-width: 900px) {
  .hm-how-it-works {
    min-height: auto;
    padding: 72px 0 86px;
  }
  .hiw-headline-plate {
    top: 52px;
    width: 94vw;
    height: 260px;
    object-fit: fill;
    opacity: 0.78;
  }
  .hiw-path { width: 78vw; opacity: 0.08; bottom: 12%; }
  .hiw-sun { width: 70vw; opacity: 0.38; }
  .hiw-upper-leaves { width: 54vw; opacity: 0.18; }
  .hiw-left-soft { width: 54vw; opacity: 0.08; }
  .hiw-left-plants { width: 44vw; opacity: 0.22; }
  .hiw-container { min-height: 0; }
  .hiw-label { min-height: 40px; margin-bottom: 18px; }
  .hiw-label span { padding: 0 18px; }
  .hiw-label strong { padding: 0 20px 0 16px; }
  .hiw-head { max-width: min(720px, 88vw); padding-top: 2px; }
  .hiw-head h2 { font-size: 40px; max-width: 640px; }
  .hiw-head p { font-size: 16.5px; max-width: 560px; padding-inline: 18px; border-radius: 22px; }
  .hm-how-it-works .hiw-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    margin-top: 34px;
  }
  .hiw-phone-stage {
    min-height: 660px;
    width: 100%;
    justify-content: center;
    padding: 0 0 30px;
  }
  .hiw-phone-art {
    width: min(92vw, 520px);
    transform: translateX(0);
  }
  .hm-how-it-works .hiw-process {
    max-width: 720px;
    margin-top: 0;
  }
  .hm-how-it-works .hiw-step {
    min-height: auto;
    grid-template-columns: 58px 76px 1fr;
    padding: 18px 20px;
  }
  .hm-how-it-works .hiw-step-copy h3 { font-size: 20px; }
  .hm-how-it-works .hiw-step-copy p { font-size: 15.5px; }
  .hm-how-it-works .hiw-trust { flex-wrap: wrap; gap: 10px; }
  .hm-how-it-works .hiw-trust-chip { flex: 1 1 190px; min-width: min(100%, 190px); max-width: none; }
  .hiw-cta { width: min(100%, 430px); }
}

@media (max-width: 620px) {
  .hm-how-it-works { padding: 64px 0 70px; }
  .hiw-headline-plate { height: 285px; opacity: 0.68; }
  .hiw-head { max-width: 90vw; }
  .hiw-head h2 { font-size: 33px; }
  .hiw-head p { font-size: 15.5px; padding: 8px 15px 9px; }
  .hiw-label strong { font-size: 0.78rem; letter-spacing: 0.06em; }
  .hiw-phone-stage { min-height: 560px; padding-bottom: 18px; }
  .hiw-phone-art { width: min(94vw, 430px); }
  .hm-how-it-works .hiw-step {
    grid-template-columns: 54px 64px;
    grid-template-areas:
      "num icon"
      "copy copy";
    row-gap: 8px;
    column-gap: 8px;
    padding: 20px;
    background-size: 100% 100%;
  }
  .hm-how-it-works .hiw-step-num { grid-area: num; font-size: 34px; }
  .hiw-step-icon { grid-area: icon; width: 60px; height: 60px; }
  .hiw-step-copy { grid-area: copy; }
  .hm-how-it-works .hiw-trust { gap: 10px; }
  .hm-how-it-works .hiw-trust-chip { width: 100%; max-width: 430px; }
  .hiw-cta { font-size: 17px; height: 58px; }
}
