@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&display=swap");
/* =============================================================
   ACTUAL ARBORISTS OF UTAH
   Design system — "The Arborist's Record"
   Forest / Rust / Cream · Fraunces + Barlow
   Signature: tree-ring seal + topographic contours
   ============================================================= */

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  /* Brand palette */
  --forest-deep: #0F2114;
  --forest:      #1A3320;
  --forest-mid:  #22402A;
  --forest-soft: #2C5036;
  --sage:        #3D6B47;
  --sage-light:  #5E9268;
  --moss:        #84B594;
  --moss-dim:    #A6C9B0;

  --rust:        #BF4B2B;
  --rust-deep:   #9E3A1F;
  --rust-soft:   #D9764F;

  --cream:       #F4EFE3;
  --cream-warm:  #EDE6D5;
  --cream-deep:  #E2D8C2;
  --stone:       #D8CBB3;
  --paper:       #FBF8F1;

  --ink:         #16140E;
  --ink-soft:    #3A372D;
  --slate:       #5C5848;
  --slate-light: #837E6C;

  /* Text on dark */
  --on-dark:        #EFEADD;
  --on-dark-mid:    rgba(239,234,221,0.66);
  --on-dark-faint:  rgba(239,234,221,0.40);
  --rule-dark:      rgba(239,234,221,0.14);
  --rule-light:     rgba(22,20,14,0.12);

  /* Typography */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Barlow', system-ui, -apple-system, sans-serif;
  --cond:  'Barlow Condensed', 'Barlow', sans-serif;

  /* Layout */
  --nav-h: 76px;
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1280px;
  --max-text: 70ch;

  /* Radius / shadow */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(15,33,20,0.08);
  --shadow-md: 0 14px 40px -18px rgba(15,33,20,0.30);
  --shadow-lg: 0 40px 80px -32px rgba(15,33,20,0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 240ms;

  /* z-index scale */
  --z-base: 1;
  --z-raised: 10;
  --z-sticky: 30;
  --z-nav: 50;
  --z-overlay: 80;
  --z-modal: 100;
}

/* =============================================================
   2. RESET
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

::selection { background: var(--rust); color: var(--cream); }

/* =============================================================
   3. TYPOGRAPHY SCALE
   ============================================================= */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: 'SOFT' 0, 'WONK' 1, 'opsz' 144;
  text-wrap: balance;
}

.display {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
h1, .h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2, .h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3, .h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); letter-spacing: -0.01em; }
h4, .h4 { font-size: 1.1rem; letter-spacing: 0; }

p { max-width: var(--max-text); }
strong { font-weight: 600; }
em { font-style: italic; }

.lead {
  font-size: clamp(1.12rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
  text-wrap: pretty;
}

/* Eyebrow — the "field tag / survey marker" register */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rust-deep); /* AA-contrast rust on cream/paper (≥4.5:1) */
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--moss); }
.eyebrow.no-line::before { display: none; }

/* =============================================================
   4. LAYOUT UTILITIES
   ============================================================= */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 880px; }

.section { padding-block: clamp(72px, 9vw, 132px); position: relative; }
.section-sm { padding-block: clamp(48px, 6vw, 80px); }

.bg-forest { background: var(--forest); color: var(--on-dark); }
.bg-forest-deep { background: var(--forest-deep); color: var(--on-dark); }
.bg-cream { background: var(--cream); }
.bg-cream-warm { background: var(--cream-warm); }
.bg-paper { background: var(--paper); }

.bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-forest h4,
.bg-forest-deep h1, .bg-forest-deep h2, .bg-forest-deep h3, .bg-forest-deep h4 { color: var(--cream); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head p { margin-top: 20px; }
.section-head.center p { margin-inline: auto; }

.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.text-rust { color: var(--rust-deep); }
.text-sage { color: var(--sage); }
.text-mid { color: var(--slate); }

/* =============================================================
   5. SIGNATURE — tree rings + contour
   ============================================================= */
/* concentric ring marker used for stats / section numbers */
.ring-mark {
  position: relative;
  width: 64px; height: 64px;
  flex: none;
  display: grid;
  place-items: center;
}
.ring-mark svg { width: 100%; height: 100%; }
.ring-mark .ring-num {
  position: absolute;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rust);
}

/* Ripple pulse: each ring breathes briefly, sequenced from the inner circle
   outward, then rests — like a tree ring forming. Used on the process steps. */
@keyframes ringPulse {
  0%, 28%, 100% { transform: scale(1); }
  10%           { transform: scale(1.055); }
}
.step .ring-mark svg circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: ringPulse 3s var(--ease) infinite;
}
.step .ring-mark svg circle:nth-child(3) { animation-delay: 0s; }    /* innermost — first */
.step .ring-mark svg circle:nth-child(2) { animation-delay: 0.16s; } /* middle */
.step .ring-mark svg circle:nth-child(1) { animation-delay: 0.32s; } /* outer — last */

/* =============================================================
   ROOT-FLARE BRAND MARK — top-down tree: heartwood + trunk + roots
   ============================================================= */
.flare { display: block; }
.flare .root { fill: currentColor; }
.flare .ring { fill: none; stroke: currentColor; }
.flare .ring-3 { stroke-width: 1.9; }
.flare .ring-2 { stroke-width: 1.4; opacity: 0.7; }
.flare .ring-1 { stroke-width: 1.2; opacity: 0.5; }
.flare .heart { fill: var(--rust); }
.brand .flare { color: var(--moss); }
.hero-eyebrow .flare { color: var(--moss); }
.media-badge .flare { color: var(--cream); }
.media-badge .flare .heart { fill: currentColor; }

/* Heartwood pulses, the growth rings ripple inner→outer, then the roots
   extend last — a tree growing from the center out. Disabled for reduced-motion. */
html.js .flare .ring, html.js .flare .roots, html.js .flare .heart {
  transform-box: view-box; transform-origin: 24px 24px;
}
html.js .flare .heart  { animation: flarePulse 3.4s var(--ease) infinite; }
html.js .flare .ring-1 { animation: flarePulse 3.4s var(--ease) infinite; animation-delay: 0.10s; }
html.js .flare .ring-2 { animation: flarePulse 3.4s var(--ease) infinite; animation-delay: 0.22s; }
html.js .flare .ring-3 { animation: flarePulse 3.4s var(--ease) infinite; animation-delay: 0.34s; }
html.js .flare .roots  { animation: rootGrow  3.4s var(--ease) infinite; animation-delay: 0.46s; }
@keyframes flarePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes rootGrow   { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* topographic contour backdrop */
.contour-bg { position: relative; overflow: hidden; }
.contour-bg > .contour {
  position: absolute;
  inset: -6% -4%;
  pointer-events: none;
  opacity: 0.42;
  z-index: 0;
}
.contour-bg > *:not(.contour):not(.leaf-field) { position: relative; z-index: 1; }

/* ── Wind-blown leaves (Utah-conditions section atmosphere) ──────────
   Leaves drift left→right behind the content with a gentle flutter.
   Low opacity keeps body copy fully readable; honors reduced-motion. */
.leaf-field {
  position: absolute;
  inset: 0;
  z-index: 0;            /* behind .wrap content (z-index 1) */
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}
.leaf {
  position: absolute;
  top: var(--y, 50%);
  left: 0;
  width: calc(26px * var(--s, 1));
  height: calc(26px * var(--s, 1));
  color: var(--moss);
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(-14vw, 0, 0);
  animation: leafBlow var(--dur, 22s) linear var(--delay, 0s) infinite;
}
.leaf svg { display: block; width: 100%; height: 100%; }
.leaf .vein { stroke: rgba(15, 33, 20, 0.38); stroke-width: 1; fill: none; }

@keyframes leafBlow {
  0%   { opacity: 0;            transform: translate3d(-14vw,   0px, 0) rotate(0deg); }
  7%   { opacity: var(--o, 0.24); }
  25%  {                        transform: translate3d(20vw,  -26px, 0) rotate(85deg); }
  50%  {                        transform: translate3d(52vw,   18px, 0) rotate(168deg); }
  75%  {                        transform: translate3d(82vw,  -16px, 0) rotate(258deg); }
  93%  { opacity: var(--o, 0.24); }
  100% { opacity: 0;            transform: translate3d(116vw,  10px, 0) rotate(345deg); }
}
@media (prefers-reduced-motion: reduce) {
  .leaf-field { display: none; }
}

/* film grain */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 2;
}

/* =============================================================
   6. BUTTONS
   ============================================================= */
.btn {
  --btn-bg: var(--rust);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--cond);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--r-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  will-change: transform;
  cursor: pointer;
}
.btn:hover { background: var(--rust-deep); border-color: var(--rust-deep); box-shadow: 0 12px 26px -12px rgba(159,58,31,0.7); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled, .btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; pointer-events: none; }
.btn svg { width: 18px; height: 18px; }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--rule-light);
}
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); box-shadow: none; }

.btn-ghost.on-dark { --btn-fg: var(--cream); border-color: var(--rule-dark); }
.btn-ghost.on-dark:hover { background: var(--cream); border-color: var(--cream); color: var(--forest); }

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

/* phone call link styling */
.btn-call svg { width: 17px; height: 17px; }

/* =============================================================
   7. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15,33,20,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--rule-dark);
}
/* interior pages get a solid nav immediately */
.nav.nav-solid {
  background: var(--forest-deep);
  border-bottom-color: var(--rule-dark);
}
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* logo / seal */
.brand { display: flex; align-items: center; gap: 12px; }
.brand .seal { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .bn {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.brand-text .bs {
  font-family: var(--cond);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--cond);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-mid);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links > li > a:hover, .nav-links > li > button:hover,
.nav-links > li.is-open > button { color: var(--cream); }
.nav-links a.active { color: var(--moss); }
.nav-links .caret { width: 12px; height: 12px; transition: transform var(--dur) var(--ease); opacity: 0.7; }
.nav-links li.is-open .caret { transform: rotate(180deg); }

/* dropdown / mega menu */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 540px;
  background: var(--paper);
  border: 1px solid var(--rule-light);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: var(--z-nav);
}
.dropdown.wide { min-width: 640px; }
.nav-links li.is-open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown-grid.tri { grid-template-columns: 1fr 1fr 1fr; }
.dd-item { display: block; padding: 11px 14px; border-radius: var(--r-sm); transition: background var(--dur) var(--ease); }
.dd-item:hover { background: var(--cream-warm); }
.dd-item .ddt { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: var(--ink); text-transform: none; letter-spacing: 0; }
.dd-item .ddd { font-size: 0.82rem; color: var(--slate); margin-top: 2px; line-height: 1.4; }
.dd-col-head {
  font-family: var(--cond); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rust); padding: 8px 14px 4px;
}
.dd-foot {
  grid-column: 1 / -1; margin-top: 6px; padding: 14px;
  border-top: 1px solid var(--rule-light); display: flex; align-items: center; justify-content: space-between;
}
.dd-foot a { font-family: var(--cond); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; font-weight: 600; color: var(--rust); }

.nav-end { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--cond); font-weight: 600; font-size: 1rem; letter-spacing: 0.03em;
  color: var(--cream);
  transition: color var(--dur) var(--ease);
}
.nav-phone svg { width: 15px; height: 15px; color: var(--moss); }
.nav-phone:hover { color: var(--moss); }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mob-nav {
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: var(--forest-deep);
  z-index: var(--z-overlay);
  transform: translateX(100%);
  transition: transform 360ms var(--ease);
  overflow-y: auto;
  padding: 24px var(--gutter) 48px;
  visibility: hidden;
}
.mob-nav.open { transform: translateX(0); visibility: visible; }
.mob-nav details { border-bottom: 1px solid var(--rule-dark); }
.mob-nav summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-family: var(--cond); font-size: 1.25rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--cream);
  display: flex; align-items: center; justify-content: space-between;
}
.mob-nav summary::-webkit-details-marker { display: none; }
.mob-nav summary .caret { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); color: var(--moss); }
.mob-nav details[open] summary .caret { transform: rotate(180deg); }
.mob-nav .mob-sub { padding: 0 0 16px; display: grid; gap: 2px; }
.mob-nav .mob-sub a { padding: 9px 0; color: var(--on-dark-mid); font-size: 1rem; }
.mob-nav .mob-sub a:hover { color: var(--moss); }
.mob-nav > a {
  display: block; padding: 18px 0; border-bottom: 1px solid var(--rule-dark);
  font-family: var(--cond); font-size: 1.25rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--cream);
}
.mob-cta { margin-top: 28px; display: grid; gap: 12px; }

/* =============================================================
   8. HERO (home)
   ============================================================= */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: clamp(48px, 7vw, 96px);
  background: var(--forest-deep);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,33,20,0.62) 0%, rgba(15,33,20,0.30) 36%, rgba(15,33,20,0.86) 100%),
    linear-gradient(90deg, rgba(15,33,20,0.78) 0%, rgba(15,33,20,0.15) 70%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 80px); align-items: end; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--cond); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--moss);
  margin-bottom: 26px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}
.hero-eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.45; }
.hero-eyebrow .seal-mini { width: 16px; height: 16px; }
.hero h1 { color: var(--cream); margin-bottom: 24px; }
.hero h1 .accent { color: var(--moss); font-style: italic; }
.hero-sub { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--on-dark); line-height: 1.55; max-width: 46ch; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px 32px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--rule-dark); }
.hero-meta .hm { display: flex; flex-direction: column; gap: 3px; }
.hero-meta .hm b { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--cream); }
.hero-meta .hm span { font-family: var(--cond); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; color: var(--on-dark-mid); }

/* hero side card — assessment form / credential */
.hero-card {
  background: rgba(244,239,227,0.97);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 36px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.hero-card h2 { font-size: 1.5rem; margin-bottom: 6px; }
.hero-card .hc-sub { font-size: 0.92rem; color: var(--slate); margin-bottom: 22px; }

/* =============================================================
   9. INTERIOR PAGE HERO
   ============================================================= */
.page-hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--on-dark);
  padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.page-hero.has-img .ph-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero.has-img .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.has-img .ph-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,33,20,0.78), rgba(15,33,20,0.92));
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); max-width: 18ch; margin-top: 22px; }
.page-hero .lead { color: var(--on-dark); margin-top: 22px; max-width: 60ch; }
.page-hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: var(--cond); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.crumbs a { color: var(--on-dark-mid); transition: color var(--dur); }
.crumbs a:hover { color: var(--moss); }
.crumbs span[aria-current] { color: var(--moss); }
.crumbs .sep { color: var(--on-dark-faint); }
.crumbs.dark a { color: var(--slate); }
.crumbs.dark span[aria-current] { color: var(--rust); }
.crumbs.dark .sep { color: var(--slate-light); }

/* =============================================================
   10. TRUST / CREDENTIAL BAND
   ============================================================= */
.trust-band { background: var(--forest); color: var(--on-dark); border-block: 1px solid var(--rule-dark); }
.trust-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 40px; padding-block: 30px; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { width: 26px; height: 26px; color: var(--moss); flex: none; }
.trust-item .ti-t { font-family: var(--cond); font-size: 0.96rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cream); }
.trust-item .ti-s { font-size: 0.8rem; color: var(--on-dark-mid); }

/* =============================================================
   11. CARDS — services
   ============================================================= */
.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: clamp(26px, 2.4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--rule-light);
  border-radius: var(--r-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--rust); transform: scaleY(0); transform-origin: top;
  transition: transform var(--dur) var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleY(1); }
.svc-icon { width: 46px; height: 46px; color: var(--sage); margin-bottom: 20px; }
.svc-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.96rem; color: var(--slate); margin-bottom: 20px; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--cond); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--rust-deep);
}
.svc-link svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* compact link list of services */
.svc-list { display: grid; gap: 1px; background: var(--rule-light); border: 1px solid var(--rule-light); border-radius: var(--r-md); overflow: hidden; }
.svc-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; background: var(--paper);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.svc-list a:hover { background: var(--cream-warm); }
.svc-list a .sl-name { font-family: var(--sans); font-weight: 600; }
.svc-list a .sl-arrow { width: 16px; height: 16px; color: var(--rust); opacity: 0; transform: translateX(-6px); transition: all var(--dur) var(--ease); }
.svc-list a:hover .sl-arrow { opacity: 1; transform: translateX(0); }

/* =============================================================
   12. PROCESS / NUMBERED STEPS
   ============================================================= */
.steps { display: grid; gap: clamp(28px, 3vw, 44px); }
.step { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
.step .ring-mark { width: 72px; height: 72px; }
.step h3 { font-size: 1.45rem; margin-bottom: 8px; }
.step p { color: var(--slate); }
.bg-forest .step p, .bg-forest-deep .step p { color: var(--on-dark-mid); }

/* =============================================================
   13. CONDITIONS (Utah tree problems)
   ============================================================= */
.cond-card {
  padding: clamp(26px, 2.4vw, 34px);
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-md);
  background: rgba(244,239,227,0.03);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cond-card:hover { background: rgba(244,239,227,0.06); }
.cond-card .cc-tag { font-family: var(--cond); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rust-soft); margin-bottom: 14px; }
.cond-card h3 { color: var(--cream); font-size: 1.35rem; margin-bottom: 12px; }
.cond-card p { color: var(--on-dark-mid); font-size: 0.95rem; }
.cond-card .cc-where { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--rule-dark); font-size: 0.84rem; color: var(--on-dark-mid); }

/* =============================================================
   14. ABOUT (split)
   ============================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.split-media .media-badge {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--rust); color: var(--cream);
  border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px; max-width: 240px;
}
.split-media .media-badge .seal { width: 38px; height: 38px; flex: none; }
.split-media .media-badge b { font-family: var(--serif); font-size: 1.05rem; display: block; line-height: 1.1; }
.split-media .media-badge span { font-family: var(--cond); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }
.split-body > * + * { margin-top: 18px; }
.split-body h2 + p { margin-top: 22px; }

/* signature block */
.signature { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--rule-light); }
.bg-forest .signature, .bg-forest-deep .signature { border-color: var(--rule-dark); }
.signature img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.signature .sig-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.signature .sig-role { font-family: var(--cond); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rust); }
.bg-forest .signature .sig-role, .bg-forest-deep .signature .sig-role { color: var(--moss); }

/* =============================================================
   15. STATS
   ============================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 600; color: var(--rust); line-height: 1; }
.bg-forest .stat b, .bg-forest-deep .stat b { color: var(--moss); }
.stat span { display: block; margin-top: 10px; font-family: var(--cond); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); }
.bg-forest .stat span, .bg-forest-deep .stat span { color: var(--on-dark-mid); }

/* =============================================================
   16. REVIEWS
   ============================================================= */
.review-card {
  display: flex; flex-direction: column;
  padding: clamp(26px, 2.4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--rule-light);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--rust); }
.stars svg { width: 18px; height: 18px; }
.review-card .r-body { font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; font-weight: 400; color: var(--ink-soft); font-variation-settings: 'opsz' 28; flex: 1; }
.review-card .r-who { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--rule-light); display: flex; align-items: center; justify-content: space-between; }
.review-card .r-who b { font-weight: 600; }
.review-card .r-who span { font-size: 0.84rem; color: var(--slate); }
.review-card .r-src { font-family: var(--cond); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }

/* =============================================================
   17. GALLERY
   ============================================================= */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.4vw, 18px); }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--r-md); background: var(--forest); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 18px 14px; font-family: var(--cond); font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream);
  background: linear-gradient(transparent, rgba(15,33,20,0.85));
}
.g-tall { grid-column: span 4; grid-row: span 2; }
.g-wide { grid-column: span 8; }
.g-half { grid-column: span 4; }

/* =============================================================
   18. AREAS SERVED
   ============================================================= */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-light); border: 1px solid var(--rule-light); border-radius: var(--r-md); overflow: hidden; }
.bg-forest .area-grid, .bg-forest-deep .area-grid { background: var(--rule-dark); border-color: var(--rule-dark); }
.area-grid a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: var(--paper);
  font-family: var(--cond); font-size: 1.05rem; font-weight: 500; letter-spacing: 0.02em;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.bg-forest .area-grid a, .bg-forest-deep .area-grid a { background: var(--forest); color: var(--cream); }
.area-grid a:hover { background: var(--cream-warm); color: var(--rust); }
.bg-forest .area-grid a:hover, .bg-forest-deep .area-grid a:hover { background: var(--forest-mid); color: var(--moss); }
.area-grid a svg { width: 15px; height: 15px; opacity: 0.5; }

/* =============================================================
   19. FAQ
   ============================================================= */
.faq { display: grid; gap: 0; max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--rule-light); }
.bg-forest .faq-item, .bg-forest-deep .faq-item { border-color: var(--rule-dark); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; text-align: left;
  font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.32rem); font-weight: 500; color: var(--ink);
}
.bg-forest .faq-q, .bg-forest-deep .faq-q { color: var(--cream); }
.faq-q .faq-ico { width: 22px; height: 22px; flex: none; position: relative; }
.faq-q .faq-ico::before, .faq-q .faq-ico::after { content: ""; position: absolute; background: var(--rust); border-radius: 2px; transition: transform var(--dur) var(--ease); }
.faq-q .faq-ico::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .faq-ico::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-q .faq-ico::after { transform: translateX(-50%) scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 360ms var(--ease); }
.faq-item.open .faq-a { max-height: 520px; }
.faq-a p { padding-bottom: 26px; color: var(--slate); }
.bg-forest .faq-a p, .bg-forest-deep .faq-a p { color: var(--on-dark-mid); }

/* =============================================================
   20. CTA BAND
   ============================================================= */
.cta-band { position: relative; overflow: hidden; background: var(--rust); color: var(--cream); text-align: center; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { color: var(--cream); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(244,239,227,0.86); max-width: 52ch; margin: 20px auto 0; }
.cta-band .cta-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .btn { --btn-bg: var(--cream); --btn-fg: var(--rust-deep); border-color: var(--cream); }
.cta-band .btn:hover { --btn-bg: var(--forest-deep); --btn-fg: var(--cream); border-color: var(--forest-deep); box-shadow: 0 14px 30px -14px rgba(15,33,20,0.6); }
.cta-band .btn-ghost { --btn-bg: transparent; --btn-fg: var(--cream); border-color: rgba(244,239,227,0.45); }
.cta-band .btn-ghost:hover { --btn-bg: var(--cream); --btn-fg: var(--rust-deep); border-color: var(--cream); }

/* =============================================================
   21. FORMS
   ============================================================= */
.form-row { display: grid; gap: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--cond); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--rule-light); border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate); opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(61,107,71,0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
/* select: match input left-alignment + give it equal vertical padding, custom chevron */
.field select {
  appearance: none; -webkit-appearance: none;
  padding: 14px 42px 14px 15px;
  line-height: 1.3;
  text-indent: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C5848' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}
.form-note { font-size: 0.82rem; color: var(--slate); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.form-note svg { width: 15px; height: 15px; color: var(--sage); flex: none; }
form .btn { margin-top: 4px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .seal { width: 52px; height: 52px; margin: 0 auto 16px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--slate); margin-inline: auto; }

/* =============================================================
   22. PROSE (blog / long copy)
   ============================================================= */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 22px; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 48px; }
.prose h3 { font-size: 1.35rem; margin-top: 36px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.06rem; line-height: 1.7; text-wrap: pretty; }
.prose ul, .prose ol { padding-left: 4px; display: grid; gap: 12px; }
.prose ul li, .prose ol li { position: relative; padding-left: 30px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 9px; height: 9px; border: 2px solid var(--rust); border-radius: 50%; }
.prose ol { counter-reset: li; }
.prose ol li::before { counter-increment: li; content: counter(li); position: absolute; left: 0; top: 2px; font-family: var(--cond); font-weight: 700; color: var(--rust); }
.prose a { color: var(--rust-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose blockquote { border-left: 3px solid var(--rust); padding: 4px 0 4px 24px; font-family: var(--serif); font-size: 1.3rem; line-height: 1.45; color: var(--ink); }
.prose img { border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.prose figure figcaption { font-size: 0.85rem; color: var(--slate); margin-top: 8px; text-align: center; }

/* callout */
.callout { padding: 24px 26px; background: var(--cream-warm); border-left: 3px solid var(--sage); border-radius: var(--r-sm); }
.callout .co-h { font-family: var(--cond); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem; color: var(--sage); margin-bottom: 8px; }

/* =============================================================
   23. BLOG CARDS
   ============================================================= */
.post-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--rule-light); border-radius: var(--r-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card .pc-img { aspect-ratio: 16/10; overflow: hidden; background: var(--forest); }
.post-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.post-card:hover .pc-img img { transform: scale(1.04); }
.post-card .pc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card .pc-cat { font-family: var(--cond); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rust); margin-bottom: 10px; }
.post-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.post-card p { font-size: 0.94rem; color: var(--slate); flex: 1; }
.post-card .pc-meta { margin-top: 18px; font-size: 0.82rem; color: var(--slate-light); font-family: var(--cond); letter-spacing: 0.06em; text-transform: uppercase; }

/* =============================================================
   24. FOOTER
   ============================================================= */
.footer { background: var(--forest-deep); color: var(--on-dark-mid); padding-block: clamp(56px, 7vw, 88px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
.footer .brand-text .bn { color: var(--cream); }
.footer-about { max-width: 34ch; margin-top: 20px; font-size: 0.95rem; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--rule-dark); border-radius: var(--r-sm); color: var(--on-dark-mid); transition: all var(--dur) var(--ease); }
.footer-social a:hover { color: var(--cream); border-color: var(--moss); background: var(--forest-mid); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--cond); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.95rem; color: var(--on-dark-mid); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; font-size: 0.95rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--moss); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-block: 26px; border-top: 1px solid var(--rule-dark);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  font-size: 0.82rem; color: rgba(239,234,221,0.62); /* AA on forest-deep */
}
.footer-bottom a { color: rgba(239,234,221,0.62); transition: color var(--dur) var(--ease); }
.footer-bottom a:hover { color: var(--moss); }
.footer-bottom .fb-links { display: flex; gap: 20px; flex-wrap: wrap; }
.fb-legal { display: flex; flex-direction: column; gap: 5px; }
.fb-credit { color: rgba(239,234,221,0.62); letter-spacing: 0.01em; }
.fb-credit strong { color: var(--cream); font-weight: 600; }

/* trust line + service-area strip */
.footer-trustline {
  margin-top: 16px;
  font-family: var(--cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}
.footer-areas {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--rule-dark);
}
.footer-areas h4 { font-family: var(--cond); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); margin-bottom: 12px; }
.footer-areas p { max-width: none; font-size: 0.88rem; line-height: 1.7; color: var(--on-dark-mid); }

/* Google reviews embed container (homepage) */
.google-reviews-embed { margin-top: clamp(32px, 4vw, 48px); }
.google-reviews-embed:empty { display: none; }

/* Footer Google map embed */
.footer-map { margin-top: clamp(28px, 4vw, 40px); }
.footer-map iframe {
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 320px);
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-md);
}

/* sticky mobile call bar */
.call-bar { display: none; }

/* =============================================================
   25. SCROLL REVEAL
   ============================================================= */
/* Content is visible by default. Only when JS is active (html.js) do we
   hide-then-reveal, so the page never depends on JS to show its content. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
html.js .reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
html.js .reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
html.js .reveal.visible, html.js .reveal-left.visible, html.js .reveal-scale.visible { opacity: 1; transform: none; }

/* =============================================================
   26. ACCESSIBILITY
   ============================================================= */
:focus-visible { outline: 3px solid var(--rust); outline-offset: 3px; border-radius: 2px; }
.bg-forest :focus-visible, .bg-forest-deep :focus-visible, .hero :focus-visible, .cta-band :focus-visible { outline-color: var(--moss); }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: var(--z-modal);
  background: var(--rust); color: var(--cream); padding: 12px 20px; border-radius: var(--r-sm);
  font-family: var(--cond); letter-spacing: 0.06em; text-transform: uppercase; transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =============================================================
   27. RESPONSIVE
   ============================================================= */
/* Large / tablet landscape */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-about-col { grid-column: 1 / -1; }
  .footer-about { max-width: none; }
}

/* Collapse primary nav to burger; stack two-column layouts */
@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .nav-end .btn { display: none; }            /* primary CTA lives in the menu + sticky bar */
  .burger { display: flex; margin-left: auto; }
  .brand-text .bn { white-space: nowrap; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .split-media .media-badge { right: 16px; }
  .cols-3, .cols-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .g-tall { grid-column: span 3; grid-row: span 1; }
  .g-wide { grid-column: span 6; }
  .g-half { grid-column: span 3; }
  .area-grid { grid-template-columns: 1fr 1fr; }
}

/* PHONE / small tablet — a layout designed for the device, not a shrunk desktop */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding-block: clamp(52px, 11vw, 76px); }
  .section-sm { padding-block: 40px; }
  .section-head { margin-bottom: 32px; }

  /* Hero: photo + headline + one decisive CTA + proof stats.
     The inline form is intentionally dropped here — the persistent sticky
     call bar and the dedicated contact page carry conversion on phones. */
  .hero { min-height: auto; align-items: flex-start; padding-top: calc(var(--nav-h) + 28px); padding-bottom: 44px; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero h1 { margin-bottom: 18px; }
  .hero-sub { font-size: 1.05rem; max-width: none; margin-bottom: 26px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .hero-cta .btn-call { display: none; }       /* tap-to-call is always in the sticky bar */
  .hero-card { display: none; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; margin-top: 30px; padding-top: 26px; }
  .hero-meta .hm b { font-size: 1.5rem; }

  /* Trust band: tidy 2-up grid instead of a cramped single-row wrap */
  .trust-band .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; padding-block: 26px; }

  /* Interior (location/service) page heroes: stack CTAs full-width */
  .page-hero-cta { flex-direction: column; align-items: stretch; }
  .page-hero-cta .btn { width: 100%; }
  .page-hero-cta .btn-call { display: none; }
}

/* Phones */
@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 72px; }   /* clear the sticky call bar site-wide */
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }

  /* Gallery: lead shot full-width, the two detail shots pair 2-up */
  .gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .g-tall, .g-wide { grid-column: span 2; grid-row: span 1; }
  .g-half { grid-column: span 1; }

  .area-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: auto 1fr; gap: 18px; }   /* ring stays beside text — reads as a numbered list */
  .step .ring-mark { width: 54px; height: 54px; }

  /* Footer: intro full, link columns 2-up (shorter than one tall stack) */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer-about-col { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .call-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
    background: var(--forest-deep); border-top: 1px solid var(--rule-dark);
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    gap: 10px; box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.5);
  }
  .call-bar a { flex: 1; padding: 14px; font-size: 0.92rem; }
}

/* Small phones */
@media (max-width: 400px) {
  :root { --gutter: 18px; }
  .brand .seal { width: 34px; height: 34px; }
  .brand-text .bn { font-size: 1rem; }
  .brand-text .bs { font-size: 0.58rem; letter-spacing: 0.22em; }
  .hero h1 { font-size: clamp(1.95rem, 9vw, 2.45rem); }
  .hero-meta .hm b { font-size: 1.35rem; }
  .btn { padding: 14px 22px; }
}

/* Smallest phones — collapse the tightest grids to a single column */
@media (max-width: 360px) {
  .trust-band .wrap { grid-template-columns: 1fr; gap: 16px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .call-bar a { font-size: 0.82rem; padding: 13px 8px; gap: 7px; }
}

/* =============================================================
   28. REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-left, .reveal-scale { opacity: 1 !important; transform: none !important; }
}

