/* =========================================================================
   Eco Home and Tree Care, LLC
   Premium contractor styling: serif display headings on a system sans body,
   forest green + gold, pill buttons, dark hero bands over light content.
   All tokens live in :root — change them here to re-skin the whole site.
   ========================================================================= */

:root {
  /* Light only, on purpose: this audience skews older, so every page stays on a
     bright background with high-contrast text instead of following an OS dark
     preference that would make the whole site dim. */
  color-scheme: light;

  /* brand */
  --forest: #1a6b3f;
  --forest-dark: #125230;
  --forest-light: #248a51;
  --gold: #a8760a;            /* darkened from the reference so gold text passes contrast */
  --gold-bright: #c8a24d;     /* decorative use only — dashes, stars, dark backgrounds */
  --gold-soft: #f2e4b8;
  --gold-grad: linear-gradient(135deg, #e6c672, #cfa64f);

  /* neutrals — lighter surfaces, darker text */
  --charcoal: #22322a;
  --charcoal-2: #33463b;
  --night: #1a6b3f;
  --white: #ffffff;
  --gray-50: #f4f8f5;
  --gray-100: #e9f0eb;
  --gray-200: #d6e2da;
  --gray-400: #8b9a91;
  --gray-500: #4b5c53;        /* ~7:1 on white, so secondary text is still easy to read */

  /* semantic */
  --bg: var(--white);
  --bg-alt: var(--gray-50);
  --surface: var(--white);
  --surface-2: var(--gray-50);
  --ink: var(--charcoal);
  --ink-2: var(--charcoal-2);
  --muted: var(--gray-500);
  --line: var(--gray-200);
  --brand: var(--forest);
  --brand-strong: var(--forest-dark);
  --brand-soft: #e4f1e9;
  --danger: #a32b1c;

  --shadow-sm: 0 2px 8px rgba(34, 50, 42, .06);
  --shadow-md: 0 8px 24px rgba(34, 50, 42, .10);
  --shadow-lg: 0 20px 48px rgba(34, 50, 42, .15);
  --shadow-brand: 0 12px 30px rgba(26, 107, 63, .26);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 100px;

  --container: 1220px;
  --container-header: 1320px;  /* header row needs more track than body copy, but
                                  staying close to --container keeps the logo
                                  roughly aligned with the content below it */
  --header-h: 128px;
  --header-h-sm: 104px;
  --tap: 52px;                /* minimum comfortable touch/click target */
  --ease: cubic-bezier(.16, 1, .3, 1);

  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }

body {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold-soft); color: var(--charcoal); }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-strong); text-decoration: underline; text-underline-offset: 3px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: 24px;
}
.container--narrow { max-width: 860px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--forest); color: #fff; padding: 12px 20px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- typography -------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(38px, 5vw, 60px); }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: clamp(22px, 1.6vw, 25px); }
h4 { font-family: var(--sans); font-size: 19px; letter-spacing: 0; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--gold-bright); }
.on-dark .eyebrow, .band-dark .eyebrow { color: var(--gold-soft); }

.lede { font-size: clamp(19px, 1.3vw, 21px); color: var(--muted); }
.muted { color: var(--muted); }

.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(23px, 2vw, 30px); margin: 1.5em 0 .5em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.4em 0 .4em; }
.prose ul, .prose ol { margin: 0 0 1.05em; padding-left: 1.25em; }
.prose li { margin-bottom: .45em; }
.prose > p:first-of-type { font-size: 1.06em; color: var(--ink-2); }

/* ---------- header ------------------------------------------------------ */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .4s var(--ease), background-color .4s var(--ease),
    box-shadow .4s var(--ease);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; height: 100%;
  /* wider than the content column: the logo, six menu items, phone and CTA do
     not fit in 1220px, which was ellipsising the business name and pushing the
     phone icon into "Jobs" */
  max-width: var(--container-header);
}

.site-header.at-top.over-hero { background: transparent; }

/* Pages without a hero open on a light page-head, so the header is solid and
   dark-text from the very top rather than white-on-white. */
.site-header.at-top:not(.over-hero) {
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.site-header.at-top:not(.over-hero) .nav-toggle {
  background: var(--surface-2); border-color: var(--line);
}
.site-header.at-top:not(.over-hero) .nav-toggle svg { color: var(--ink); }
.site-header.scrolled {
  height: var(--header-h-sm);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex; align-items: center; gap: 16px;
  flex: 0 1 auto; min-width: 0;   /* shrinkable, so it never pushes the menu button off-screen */
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 96px; height: 96px; flex: 0 0 auto; padding: 6px;
  border-radius: 20px; background: #fff;
  box-shadow: var(--shadow-md);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 14px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; min-width: 0; }
.brand-text .name {
  font-family: var(--serif); font-weight: 700; font-size: 25px;
  color: var(--ink); transition: color .4s ease;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-text .tag {
  margin-top: 4px; font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
}
.site-header.at-top.over-hero .brand-text .name { color: #fff; }

/* Desktop gets a real menu bar; the hamburger and drawer take over below the
   nav breakpoint (see the max-width block near the bottom of this file). */
.main-nav { display: flex; align-items: center; min-width: 0; }
.main-nav > ul {
  display: flex; align-items: center; gap: 15px; flex-wrap: nowrap;
  margin: 0; padding: 0; list-style: none;
}
.main-nav li { position: relative; }

.main-nav > ul > li > a {
  position: relative; display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 2px; min-height: 44px;
  font-size: 16px; font-weight: 700; color: var(--ink-2);
  white-space: nowrap; transition: color .3s ease;
}
.main-nav > ul > li > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 4px;
  height: 3px; border-radius: 2px;
  background: var(--gold-bright); transition: right .35s var(--ease);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.is-active > a { color: var(--brand); text-decoration: none; }
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li.is-active > a::after { right: 0; }

.site-header.at-top.over-hero .main-nav > ul > li > a { color: #fff; }
.site-header.at-top.over-hero .main-nav > ul > li > a:hover,
.site-header.at-top.over-hero .main-nav > ul > li.is-active > a { color: #fff; }

.has-sub > a .caret {
  width: 7px; height: 7px; margin-top: -4px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); opacity: .7;
}

/* Submenu opens on hover and on keyboard focus. The parent link still goes to a
   real page, so nothing is reachable only by hovering. */
.main-nav .sub {
  position: absolute; top: 100%; left: -16px; z-index: 30;
  min-width: 262px; margin: 0; padding: 10px; list-style: none;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.main-nav li:hover > .sub,
.main-nav li:focus-within > .sub { opacity: 1; visibility: visible; transform: none; }
.main-nav .sub a {
  display: block; padding: 12px 14px; min-height: 48px; border-radius: 10px;
  font-size: 17px; font-weight: 600; color: var(--ink-2);
}
.main-nav .sub a:hover { background: var(--surface-2); color: var(--brand); text-decoration: none; }
.main-nav .sub li.is-active > a { color: var(--brand); background: var(--brand-soft); }

.header-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.nav-toggle { flex: 0 0 auto; }

.call-pill {
  display: flex; align-items: center; gap: 10px; min-height: var(--tap);
  font-size: 17.5px; font-weight: 700; color: var(--ink);
  transition: color .3s ease; white-space: nowrap;
}
.call-pill:hover { text-decoration: none; color: var(--brand); }
.site-header.at-top.over-hero .call-pill { color: #fff; }
.call-pill .icon-dot {
  width: 38px; height: 38px; flex: 0 0 auto;
  border-radius: 50%; background: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
}
.call-pill .icon-dot svg { width: 18px; height: 18px; color: #2a2008; }

.nav-toggle {
  display: none; width: 62px; height: 62px;
  align-items: center; justify-content: center;
  border: 2px solid var(--line); border-radius: 14px; cursor: pointer;
  background: var(--surface-2);
}
.nav-toggle svg { color: var(--ink); }
.over-hero.at-top .nav-toggle {
  border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .16);
}
.over-hero.at-top .nav-toggle svg { color: #fff; }
.nav-toggle svg { width: 32px; height: 32px; }
.site-header.scrolled .nav-toggle { background: var(--surface-2); border-color: var(--line); }
.site-header.scrolled .nav-toggle svg { color: var(--ink); }

/* ---------- mobile drawer ----------------------------------------------- */

.mobile-nav {
  position: fixed; inset: 0; z-index: 300;
  display: flex; flex-direction: column;
  padding: 26px 26px 36px;
  background: var(--night); color: #fff;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: none; }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-nav-top .name { font-family: var(--serif); font-size: 24px; font-weight: 700; color: #fff; }
.mobile-nav-close {
  width: 56px; height: 56px; border: 0; border-radius: 12px; cursor: pointer;
  background: rgba(255, 255, 255, .1);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-close svg { width: 28px; height: 28px; color: #fff; }

.mobile-nav ul { margin: 0; padding: 0; list-style: none; }
.mobile-nav > nav > ul > li > a {
  display: block; padding: 18px 0; min-height: var(--tap);
  font-family: var(--serif); font-size: 30px; color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.mobile-nav > nav > ul > li > a:hover { color: var(--gold-soft); text-decoration: none; }
.mobile-nav .sub {
  padding: 8px 0 14px 20px; margin-bottom: 2px;
  border-left: 3px solid var(--gold-bright);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.mobile-nav .sub a {
  display: block; padding: 13px 0; min-height: 48px; font-size: 20px;
  color: rgba(255, 255, 255, .88);
}
.mobile-nav .sub a:hover { color: #fff; text-decoration: none; }
.mobile-nav-footer { margin-top: auto; padding-top: 26px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- buttons ----------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 32px; border: 0; border-radius: var(--r-pill);
  font-family: var(--sans); font-size: 17.5px; font-weight: 700; line-height: 1;
  min-height: var(--tap);
  white-space: nowrap; cursor: pointer; text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-3px); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn-lg { padding: 20px 38px; font-size: 19px; }
.btn-sm { padding: 13px 22px; font-size: 16px; }
.btn-sm svg { width: 18px; height: 18px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--forest); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--forest-light); color: #fff; box-shadow: 0 18px 36px rgba(30, 90, 54, .34); }

.btn-gold { background: var(--gold-grad); color: #2a2008; box-shadow: 0 12px 30px rgba(200, 162, 77, .35); }
.btn-gold:hover { color: #2a2008; box-shadow: 0 18px 36px rgba(200, 162, 77, .42); }

.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

.btn-quiet {
  background: transparent; color: var(--brand);
  border: 1.5px solid var(--line);
}
.btn-quiet:hover { background: var(--forest); border-color: var(--forest); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 17px; color: var(--brand);
  min-height: 44px;
}
.text-link svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.text-link:hover { text-decoration: none; }
.text-link:hover svg { transform: translateX(5px); }

/* ---------- sections ---------------------------------------------------- */

main { display: block; }

.section { padding: clamp(64px, 7vw, 100px) 0; }
.section--tight { padding: clamp(46px, 5vw, 74px) 0; }
.bg-gray { background: var(--bg-alt); }

/* "band" is now a light tinted panel rather than a charcoal slab */
.band-dark { background: var(--brand-soft); color: var(--ink-2); }
.band-dark h2, .band-dark h3, .band-dark h4 { color: var(--ink); }

.section-head { max-width: 660px; margin: 0 0 clamp(34px, 4vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 19px; margin: 0; }
.band-dark .section-head p { color: var(--muted); }

/* dark page header for interior pages — the compact cousin of the hero */
.page-head {
  position: relative;
  padding: calc(var(--header-h) + 46px) 0 54px;
  background:
    radial-gradient(ellipse at 20% 0%, #dcebe1, transparent 62%),
    linear-gradient(170deg, #eef5f0 0%, #f7fbf8 60%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  overflow: hidden;
}
.page-head h1 { color: var(--ink); margin-bottom: 16px; }
.page-head .lede { color: var(--muted); max-width: 68ch; }
.page-head .eyebrow { color: var(--brand); }

/* ---------- hero -------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  background: var(--charcoal);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(44, 122, 75, .55), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(200, 162, 77, .16), transparent 45%),
    linear-gradient(160deg, #1c4a2e 0%, #23593a 40%, #2a6742 65%, #1e5133 100%);
}
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: blur(3px); transform: scale(1.05); opacity: .7;
}
.hero-media .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(18, 46, 30, .86) 0%, rgba(20, 52, 34, .60) 48%,
    rgba(22, 58, 38, .46) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: #fff;
  /* padding-block only — the shorthand would wipe .container's inline padding */
  padding-block: 80px 132px;
}
/* constrain the text, not the container, so the hero stays left-aligned */
.hero-content h1, .hero-content .hero-sub { max-width: 800px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 10px; margin-bottom: 26px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  font-size: 16px; font-weight: 700; letter-spacing: .03em; color: #fff;
}
.hero-badge .stars { display: flex; gap: 3px; color: var(--gold-bright); }
.hero-badge .stars svg { width: 17px; height: 17px; }

.hero h1 { color: #fff; font-size: clamp(38px, 6vw, 66px); }
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.hero-sub {
  margin-top: 22px; font-size: clamp(16px, 2vw, 20px);
  font-weight: 500; color: rgba(255, 255, 255, .84);
}
.hero-sub .dot { color: var(--gold-bright); margin: 0 10px; }

.hero .btn-row { margin-top: 38px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 20px 44px;
  margin-top: 52px;
}
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .num { font-family: var(--serif); font-size: 40px; font-weight: 700; color: #fff; }
.hero-stats .num .suffix { color: var(--gold-bright); }
.hero-stats .label {
  margin-top: 5px; font-size: 15px; letter-spacing: .05em;
  text-transform: uppercase; color: rgba(255, 255, 255, .85);
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 30px; z-index: 2;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.scroll-cue .line { position: relative; width: 1px; height: 34px; background: rgba(255, 255, 255, .3); overflow: hidden; }
.scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold-bright); animation: cue 2s ease-in-out infinite;
}
@keyframes cue { 0% { top: -100%; } 60%, 100% { top: 100%; } }

/* ---------- trust bar --------------------------------------------------- */

.trust-bar { background: var(--surface); border-bottom: 1px solid var(--line); padding: 24px 0; }
.trust-bar .container {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 16px 36px;
}
.trust-item {
  display: flex; align-items: center; gap: 11px; min-width: 0;
  font-size: 17px; font-weight: 700; color: var(--ink-2);
}
.trust-item svg { width: 24px; height: 24px; color: var(--brand); flex: 0 0 auto; }

/* ---------- cards ------------------------------------------------------- */

.grid { display: grid; gap: 24px; }
.grid > *, .split > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.split--form { grid-template-columns: 1.7fr 1fr; align-items: start; gap: clamp(26px, 3vw, 44px); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
}
.card + .card { margin-top: 24px; }
.card-lg { border-radius: var(--r-lg); box-shadow: var(--shadow-md); }

.service-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 32px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon {
  width: 58px; height: 58px; margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(155deg, #eaf3ee, #d9ebe1);
  display: flex; align-items: center; justify-content: center;
  transition: background .4s ease, transform .4s ease;
}
.service-icon svg { width: 27px; height: 27px; color: var(--forest); transition: color .4s ease; }
.service-card:hover .service-icon { background: var(--forest); transform: scale(1.08) rotate(-4deg); }
.service-card:hover .service-icon svg { color: #fff; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { flex: 1 1 auto; font-size: 17px; color: var(--muted); }
.service-card .text-link { margin-top: 18px; }

.why-card {
  background: var(--surface); border-radius: var(--r-sm);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card .check {
  width: 40px; height: 40px; margin-bottom: 15px; border-radius: 50%;
  background: var(--forest); display: flex; align-items: center; justify-content: center;
}
.why-card .check svg { width: 20px; height: 20px; color: #fff; }
.why-card h4 { margin-bottom: 8px; font-size: 18.5px; font-weight: 700; }
.why-card p { font-size: 16.5px; color: var(--muted); }

.step-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 20px;
  border-radius: 50%; background: var(--gold-grad);
  font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--charcoal);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 17.5px; }
.step-card .text-link { margin-top: 16px; }

.point { display: flex; gap: 18px; margin-bottom: 24px; }
.point > div { min-width: 0; }
.point:last-child { margin-bottom: 0; }
.point .ico {
  width: 50px; height: 50px; flex: 0 0 auto; border-radius: 14px;
  background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center;
}
.point .ico svg { width: 23px; height: 23px; color: var(--brand); }
.point h4 { margin-bottom: 6px; font-size: 19px; }
.point p { font-size: 17px; color: var(--muted); }

/* framed visual with a floating glass badge */
.visual {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: linear-gradient(165deg, #1a3a24, #0f2318);
}
.visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.visual--wide img { aspect-ratio: 5 / 4; }
.visual-badge {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.visual-badge .num { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--forest); }
.visual-badge .txt { font-size: 15.5px; line-height: 1.4; color: var(--gray-500); }

.callout {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 26px; border-radius: var(--r-md);
  background: color-mix(in srgb, var(--gold) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
}
.callout svg { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 3px; color: var(--gold); }
.callout > div { min-width: 0; }
.callout p { font-size: 15px; }

/* ---------- gallery -----------------------------------------------------
   Frames carry their own aspect-ratio and a dark backdrop, so a photo that
   fails to load leaves a placeholder block rather than collapsing the grid.
   ------------------------------------------------------------------------ */

.gallery-grid { columns: 3 320px; column-gap: 22px; }
.gallery-item {
  position: relative; break-inside: avoid; margin: 0 0 22px;
  border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--shadow-sm);
  background: linear-gradient(165deg, #1a3a24, #0f2318);
}
.gallery-item .frame { position: relative; overflow: hidden; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; inset: 0; padding: 20px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(0deg, rgba(15, 20, 17, .88) 0%, rgba(15, 20, 17, .05) 55%, transparent 100%);
  opacity: 0; transition: opacity .4s ease;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-within .gallery-caption { opacity: 1; }
.gallery-caption .tag {
  font-size: 13px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-soft);
}
.gallery-caption .title { margin-top: 5px; font-size: 18px; font-weight: 700; color: #fff; }

@media (max-width: 768px) { .gallery-grid { columns: 2 200px; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* the hero backdrop and framed visuals keep their box if the photo 404s */
.visual img { background: linear-gradient(165deg, #1a3a24, #0f2318); }

/* ---------- counters ---------------------------------------------------- */

.counters { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.counter { text-align: center; }
.counter .num {
  font-family: var(--serif); font-size: clamp(38px, 4.4vw, 54px); font-weight: 700;
  color: var(--brand);
}
.counter .num .suffix { color: var(--gold); }
.counter .lbl {
  margin-top: 10px; font-size: 16px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- pills / tags ------------------------------------------------ */

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; padding: 0; list-style: none; }
.tags li {
  padding: 6px 15px; border-radius: var(--r-pill);
  background: var(--brand-soft); color: var(--brand);
  font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}

.page-head .tags li { background: var(--brand-soft); color: var(--brand); }

.meta-list { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0 0 14px; padding: 0; list-style: none; }
.meta-list li { display: flex; align-items: center; gap: 9px; font-size: 16.5px; color: var(--muted); min-width: 0; }
.meta-list svg { width: 19px; height: 19px; color: var(--brand); flex: 0 0 auto; }

.check-list { margin: 24px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.check-list li { display: flex; align-items: center; gap: 11px; font-size: 17.5px; font-weight: 600; color: var(--ink-2); }
.check-list svg { width: 16px; height: 16px; color: var(--brand); flex: 0 0 auto; }

/* ---------- payment cards ----------------------------------------------- */

.pay {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
}
.pay:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pay--featured { border-color: var(--gold); box-shadow: var(--shadow-md); }
.pay .tag {
  align-self: flex-start; margin-bottom: 16px; padding: 8px 16px;
  border-radius: var(--r-pill); background: var(--gold-grad); color: #2a2008;
  font-size: 13.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.pay h3 { margin-bottom: 6px; }
.pay .amount {
  font-family: var(--serif); font-size: 38px; font-weight: 700;
  line-height: 1.05; color: var(--brand); margin-bottom: 4px;
}
.pay .unit { font-size: 16px; color: var(--muted); margin-bottom: 16px; }
.pay p { font-size: 17px; color: var(--muted); flex: 1 1 auto; }
.pay .btn { margin-top: 20px; }
.pay .placeholder-note { font-size: 15px; color: var(--muted); margin-top: 10px; }

/* ---------- posts ------------------------------------------------------- */

.post-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.post-card {
  display: block; padding: clamp(24px, 3vw, 34px); color: inherit;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); text-decoration: none; color: inherit; }
.post-card .post-tag {
  font-size: 14px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}
.post-card h2 { margin: 10px 0 12px; font-size: clamp(21px, 2vw, 27px); }
.post-card p { color: var(--muted); font-size: 17.5px; }
.post-card .text-link { margin-top: 4px; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  font-size: 17px; min-height: 44px; font-weight: 700; color: var(--brand);
}
.back-link svg { width: 16px; height: 16px; flex: 0 0 auto; }
.back-link:hover { color: var(--brand-strong); text-decoration: none; }

.figure { margin: 26px 0; }
.figure img { border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.figure figcaption { margin-top: 10px; font-size: 16px; color: var(--muted); }
.figure--right { float: right; max-width: 340px; margin: 4px 0 22px 30px; }

.legal h2 { font-size: clamp(20px, 1.6vw, 24px); }
.legal .updated { font-size: 17px; color: var(--muted); }

/* ---------- jobs -------------------------------------------------------- */

.job-toolbar {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-md);
}
.job-search { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.job-search input { flex: 1 1 240px; min-width: 0; }
.job-search .btn { flex: 0 1 auto; }
.job-filters { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 20px; }
.job-filters .field { margin: 0; }

.job-count { margin: 26px 0 0; font-size: 16px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }

.job-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 20px; }
.job {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.job:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.job h3 { margin-bottom: 12px; }
.job h3 a { color: inherit; }
.job h3 a:hover { color: var(--brand); text-decoration: none; }
.job p { font-size: 17px; color: var(--muted); flex: 1 1 auto; }
.job .more { margin-top: 20px; }

.job-empty {
  grid-column: 1 / -1; padding: 52px 26px; text-align: center; color: var(--muted);
  background: var(--surface-2); border: 1px dashed var(--line); border-radius: var(--r-md);
}

.job-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin: 0 0 32px; }
.job-facts > div {
  padding: 20px; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--r-sm);
}
.job-facts dt {
  margin-bottom: 6px; font-size: 13.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.job-facts dd { font-size: 17.5px; font-weight: 700; }

/* ---------- forms ------------------------------------------------------- */

.form-section { padding: 28px 0 6px; border-top: 1px solid var(--line); margin-top: 24px; }
.form-section:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.form-section > legend {
  float: left; width: 100%; padding: 0; margin: 0 0 18px;
  font-family: var(--serif); font-size: 25px; font-weight: 700; color: var(--ink);
}
.form-section > legend + * { clear: both; }
.form-section > .hint { margin: -10px 0 18px; }

.field { margin: 0 0 18px; }
.field > label { display: block; margin-bottom: 9px; font-size: 17px; font-weight: 700; color: var(--ink-2); }
.req { color: var(--danger); font-weight: 700; }

.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="file"], .field select, .field textarea {
  width: 100%; min-width: 0; padding: 16px 18px; min-height: var(--tap);
  font-size: 18px; color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: none; padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) 53%, calc(100% - 14px) 53%;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(30, 90, 54, .12);
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted) 78%, transparent); }

.hint { font-size: 16px; color: var(--muted); margin-top: 9px; }
.counter-out { font-weight: 700; font-variant-numeric: tabular-nums; }

.check { display: flex; align-items: flex-start; gap: 12px; margin: 0 0 12px; }
.check input[type="checkbox"] {
  width: 26px; height: 26px; margin: 2px 0 0; flex: 0 0 auto;
  accent-color: var(--forest); cursor: pointer;
}
.check label { font-size: 17.5px; color: var(--ink-2); cursor: pointer; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.chip label {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; min-height: 48px; border-radius: var(--r-pill);
  background: var(--surface); border: 2px solid var(--line);
  font-size: 17px; font-weight: 600; color: var(--ink-2);
  cursor: pointer; user-select: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s var(--ease);
}
.chip label::before { content: "+"; font-weight: 700; opacity: .45; line-height: 1; }
.chip label:hover { border-color: var(--forest); transform: translateY(-2px); }
.chip input:checked + label {
  background: var(--forest); border-color: var(--forest); color: #fff;
}
.chip input:checked + label::before { content: "\2713"; opacity: 1; }
.chip input:focus-visible + label { box-shadow: 0 0 0 4px rgba(200, 162, 77, .35); }

/* Honeypot: off-screen for sighted users, hidden from assistive tech, and
   skipped by the tab order — only a bot fills it in. */
.hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.form-msg { display: none; margin: 20px 0 0; padding: 18px 20px; border-radius: var(--r-sm); font-size: 17.5px; font-weight: 600; }
.form-msg.is-ok { display: flex; background: #e6f4ec; border: 2px solid #9ccdb1; color: #0f4d2c; }
.form-msg.is-err { display: flex; background: #fdeceа; border: 2px solid #e8a79f; color: var(--danger); }

.form-aside {
  position: sticky; top: calc(var(--header-h-sm) + 20px);
  background: var(--brand-soft); color: var(--ink-2);
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px;
}
.form-aside h3 { font-size: 22px; margin-bottom: 16px; }
.form-aside ol { margin: 0; padding-left: 1.15em; font-size: 17.5px; }
.form-aside li { margin-bottom: 12px; }
.form-aside li::marker { color: var(--brand); font-weight: 700; }
.form-aside .hint { color: var(--muted); }
.form-aside a { color: var(--brand); font-weight: 700; }

.phone-cta {
  display: flex; align-items: center; gap: 16px; min-width: 0;
  padding: 18px 20px; margin-top: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-sm);
  transition: background .3s ease, transform .3s ease;
}
.phone-cta:hover { background: rgba(255, 255, 255, .11); transform: translateY(-2px); text-decoration: none; }
.phone-cta .ico {
  width: 52px; height: 52px; flex: 0 0 auto; border-radius: 50%; background: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
}
.phone-cta .ico svg { width: 20px; height: 20px; color: var(--charcoal); }
.phone-cta .num { display: block; font-family: var(--serif); font-size: 25px; font-weight: 700; }
.phone-cta .lbl { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }

/* ---------- CTA banner -------------------------------------------------- */

.cta-banner {
  position: relative; overflow: hidden;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 30px; padding: clamp(38px, 5vw, 60px) clamp(26px, 4vw, 50px);
  border-radius: var(--r-lg);
  background: linear-gradient(120deg, var(--forest-dark), var(--forest));
  color: #fff;
}
.cta-banner::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%; background: rgba(255, 255, 255, .06);
}
.cta-banner > div { min-width: 0; }
.cta-banner h2 { position: relative; color: #fff; max-width: 560px; font-size: clamp(24px, 3.4vw, 34px); margin: 0; }
.cta-banner p { position: relative; color: rgba(255, 255, 255, .82); max-width: 560px; margin: 12px 0 0; }
.cta-banner .btn-row { position: relative; margin: 0; }

/* ---------- footer ------------------------------------------------------ */

.site-footer { background: var(--night); color: rgba(255, 255, 255, .88); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: 44px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand .brand-text .name { color: #fff; }
.footer-brand p { margin-top: 18px; max-width: 320px; font-size: 17px; line-height: 1.65; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 19px; font-weight: 700; color: #fff; min-height: 44px; display: inline-flex; align-items: center; }
.footer-contact a:hover { color: var(--gold-soft); text-decoration: none; }

.site-footer h2 {
  margin-bottom: 20px; font-family: var(--sans); font-size: 16px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.site-footer li a { display: inline-block; padding: 4px 0; font-size: 17px; color: rgba(255, 255, 255, .88); transition: color .3s ease, padding-left .3s ease; }
.site-footer li a:hover { color: #fff; padding-left: 4px; text-decoration: none; }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding: 26px 0; font-size: 16px;
}

/* ---------- floating actions -------------------------------------------- */

.float-call {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  display: none; align-items: center; gap: 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), visibility .3s;
  padding: 17px 26px; min-height: var(--tap); border-radius: var(--r-pill);
  background: var(--forest); color: #fff;
  font-size: 17.5px; font-weight: 700;
  box-shadow: var(--shadow-brand);
  animation: pulseCall 2.6s ease-in-out infinite;
}
.float-call:hover { color: #fff; text-decoration: none; }
.float-call svg { width: 19px; height: 19px; }
.float-call.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }

@keyframes pulseCall {
  0%, 100% { box-shadow: 0 12px 30px rgba(30, 90, 54, .35); }
  50% { box-shadow: 0 12px 34px rgba(30, 90, 54, .55), 0 0 0 8px rgba(30, 90, 54, .12); }
}

/* ---------- motion ------------------------------------------------------ */

.js .reveal { opacity: 0; transform: translateY(32px); }
.js .reveal.in-view {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal-stagger.in-view > * { animation: fadeUp .7s var(--ease) both; }
.js .reveal-stagger.in-view > *:nth-child(1) { animation-delay: .04s; }
.js .reveal-stagger.in-view > *:nth-child(2) { animation-delay: .12s; }
.js .reveal-stagger.in-view > *:nth-child(3) { animation-delay: .20s; }
.js .reveal-stagger.in-view > *:nth-child(4) { animation-delay: .28s; }
.js .reveal-stagger.in-view > *:nth-child(5) { animation-delay: .36s; }
.js .reveal-stagger.in-view > *:nth-child(6) { animation-delay: .44s; }
.js .reveal-stagger.in-view > *:nth-child(7) { animation-delay: .52s; }
.js .reveal-stagger.in-view > *:nth-child(8) { animation-delay: .60s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  /* must out-specify `.js .reveal`, or reduced-motion users see nothing */
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal.in-view { opacity: 1; transform: none; transition: none; }
  .js .reveal-stagger.in-view > * { animation: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- responsive -------------------------------------------------- */

@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .job-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* four footer columns stop fitting well before this — link text was pushing
     ~18px past the viewport and forcing a horizontal scroll */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 960px) {
  .split, .split--form { grid-template-columns: 1fr; }
  .grid--3, .grid--2, .job-grid { grid-template-columns: 1fr; }
  .visual { order: -1; }
  .figure--right { float: none; max-width: 100%; margin: 22px 0; }
  .form-aside { position: static; }
  .counters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Below this width the menu bar no longer fits beside the logo and the phone
   number, so it collapses into the hamburger + full-screen drawer. */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* While the menu bar is on screen the header is crowded: compact brand, phone
   always present (it is the action this audience uses), and the gold CTA only
   at widths with real headroom — the nav bar already carries "Sign Up".
   Sized with ~100px of slack so platform font differences (real Georgia on
   macOS renders wider than the Linux fallback) cannot crush the brand. */
@media (min-width: 1101px) {
  .main-nav { flex: 0 0 auto; }
  /* never ellipsis the business name on desktop — there is room for it now */
  .brand { flex: 0 0 auto; }
  .brand-text .name { overflow: visible; text-overflow: clip; }
  .brand-mark { width: 82px; height: 82px; border-radius: 18px; }
  .brand-text .name { font-size: 21px; }
  .brand-text .tag { font-size: 11.5px; }
}
@media (min-width: 1101px) and (max-width: 1399px) {
  .header-actions .btn { display: none; }
}

@media (max-width: 900px) {
  .header-actions .call-pill { display: none; }
  .float-call { display: flex; }
  .site-footer .footer-bottom { padding-bottom: 88px; }
  .job-filters { grid-template-columns: 1fr 1fr; }
  .check-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-actions .btn { display: none; }
  /* inline grid templates in the form markup need overriding here */
  .split .grid[style], .container .grid[style] { grid-template-columns: 1fr !important; }   /* keep the logo + menu button clear */
  :root { --header-h: 100px; --header-h-sm: 88px; }
  body { font-size: 18px; }
  .hero { min-height: 0; }
  .hero-content { padding-block: 46px 64px; }
  .hero-stats { gap: 18px 30px; }
  .hero-stats .num { font-size: 28px; }
  .scroll-cue { display: none; }
  .trust-bar .container { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .job-filters { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .btn-row .btn { width: 100%; }
  .counters { gap: 30px 20px; }
}

@media (max-width: 520px) {
  .brand-mark { width: 64px; height: 64px; border-radius: 16px; }
  .brand-text .name { font-size: 19px; }
  .brand-text .tag { display: none; }
  .nav-toggle { width: 52px; height: 52px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { grid-template-columns: 1fr; }
}

/* ---------- phone layout -------------------------------------------------
   At 390px a two-up card grid leaves ~159px per card, which broke headings
   mid-phrase ("Debris / Haul- / Away") and wrapped body copy every two words.
   Below 700px the service cards go single-column and switch to a compact
   horizontal layout — icon on the left, text on the right — which reads
   properly and roughly halves the scroll length.
   ------------------------------------------------------------------------ */

@media (max-width: 700px) {
  .grid--4 { grid-template-columns: 1fr; gap: 14px; }

  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "icon text"
      "icon link";
    align-items: start;
    column-gap: 16px; row-gap: 6px;
    padding: 20px 22px;
  }
  .service-icon {
    grid-area: icon;
    width: 52px; height: 52px; margin: 0; border-radius: 14px;
  }
  .service-icon svg { width: 24px; height: 24px; }
  .service-card h3 { grid-area: title; margin: 0; font-size: 21px; }
  .service-card p { grid-area: text; margin: 0; font-size: 16.5px; }
  .service-card .text-link { grid-area: link; margin: 4px 0 0; min-height: 0; }
  /* the hover lift is meaningless on touch and makes taps feel loose */
  .service-card:hover, .step-card:hover, .pay:hover, .job:hover, .post-card:hover,
  .why-card:hover { transform: none; }

  /* trim vertical rhythm — the page was ~15,000px tall on a phone */
  .section { padding: 46px 0; }
  .section--tight { padding: 36px 0; }
  .section-head { margin-bottom: 26px; }

  /* portrait framing wastes a lot of height at this width */
  .visual img { aspect-ratio: 4 / 3; }
  .visual--wide img { aspect-ratio: 4 / 3; }
  .visual-badge { left: 14px; right: 14px; bottom: 14px; padding: 14px 16px; }
  .visual-badge .num { font-size: 28px; }

  .step-card { padding: 24px 22px; }
  .card + .card { margin-top: 16px; }
  .btn-row { gap: 10px; margin-top: 22px; }

  /* same compact treatment for the why-choose-us cards */
  .why-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "check title"
      "check text";
    align-items: start;
    column-gap: 14px; row-gap: 4px;
    padding: 18px 20px;
  }
  .why-card .check { grid-area: check; width: 38px; height: 38px; margin: 0; }
  .why-card .check svg { width: 18px; height: 18px; }
  .why-card h4 { grid-area: title; margin: 0; }
  .why-card p { grid-area: text; margin: 0; }

  /* sixteen city names one-per-row was ~700px of scrolling */
  .check-list { grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-top: 20px; }
  .check-list li { font-size: 16px; gap: 8px; }
  .check-list svg { width: 15px; height: 15px; }

  /* the name was being ellipsised to "Eco Home & Tree ..." — let it wrap */
  .brand { gap: 12px; }
  .brand-text .name {
    white-space: normal; overflow: visible; text-overflow: clip;
    font-size: 18px; line-height: 1.15;
  }
  .brand-text .tag { margin-top: 2px; }

  /* clear the floating buttons so the last stat is never sitting under them */
  .hero-content { padding-block: 46px 72px; }
}

@media (max-width: 520px) {
  /* two-up thumbnails instead of one huge photo per row */
  .gallery-grid { columns: 2 140px; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; border-radius: 10px; }
  .gallery-caption { padding: 12px; }
  .gallery-caption .title { font-size: 14px; }
  .gallery-caption .tag { font-size: 11px; }

  .hero h1 { font-size: 34px; }

  /* three short figures fit one row; wrapping to two put the last stat under
     the floating cookie button */
  .hero-stats { gap: 12px; flex-wrap: nowrap; }
  .hero-stats .stat { flex: 1 1 0; min-width: 0; }
  .hero-stats .num { font-size: 26px; }
  .hero-stats .label { font-size: 11px; letter-spacing: .03em; line-height: 1.3; }

  .counters { gap: 26px 14px; }
  .counter .lbl { font-size: 14px; }

  /* keep the footer link lists side by side instead of one tall stack */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding-top: 48px; }
}

@media print {
  .site-header, .site-footer, .float-call,
  .cta-banner, .mobile-nav, .scroll-cue { display: none !important; }
  .page-head, .hero { background: none; color: #000; padding-top: 0; }
  .page-head h1, .page-head .lede { color: #000; }
}
