/* ==========================================================================
   Lamar Homes homepage redesign, final build.
   Base: variant v2 (trust-first, conversion-led), with the judge grafts from
   v1 (oversized-numeral credentials, services split, bordered areas grid,
   recent-work strip, big booking phone) and v3 (rounded credentials sheet,
   44px tap targets on protected markup, hours and address beside the form).
   Layered after /assets/styles.css. Colors are the brand tokens from :root
   (plus rgba tints of them). Font: Work Sans only.
   ========================================================================== */

:root {
  --lh-ease: cubic-bezier(.2, .7, .2, 1);
  --lh-h1: clamp(2.2rem, 1.2rem + 2.4vw, 3.25rem);
  --lh-h2: clamp(1.7rem, 1.2rem + 1.7vw, 2.45rem);
  --lh-num: clamp(2.8rem, 1.9rem + 3.2vw, 4.6rem);
  --lh-sec: clamp(60px, 7vw, 100px);
  --lh-sec-tight: clamp(44px, 5vw, 68px);
  --lh-r: 12px;
  --lh-hair: 1px solid var(--line);
  --lh-hair-soft: 1px solid var(--line-soft);
}

/* Sentence case everywhere on this page; the brand's bold weights stay. */
h1, h2, h3, h4 { text-transform: none; }
html { scroll-padding-top: 96px; }

/* Buttons: keep the brand pill, drop the coloured glow (reads as a template). */
.btn--primary { box-shadow: 0 1px 2px rgba(23, 18, 31, .12); }
.btn--primary:hover { box-shadow: 0 6px 16px rgba(188, 147, 15, .22); }
.btn--dark { box-shadow: 0 1px 2px rgba(23, 18, 31, .14); }
.btn--dark:hover { box-shadow: 0 6px 16px rgba(45, 18, 66, .22); }
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.lh-btn--glass { border: 1.5px solid rgba(255, 255, 255, .3); color: var(--white); background: rgba(255, 255, 255, .04); }
.lh-btn--glass:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); }
.lh-btn--glass svg { color: var(--gold-300); }

/* On-light eyebrows and numerals at gold-700 for contrast (about 4.8:1). */
.eyebrow { color: var(--gold-700); }
.eyebrow::before { background: var(--gold-500); }

/* ---------- Reveal (IntersectionObserver in redesign.js) ---------- */
html.js [data-rv] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--lh-ease), transform .7s var(--lh-ease);
  transition-delay: var(--rv-d, 0ms);
}
html.js [data-rv].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-rv] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Utility bar and header (protected markup, restyled) ---------- */
.utility { background: var(--purple-950); }
.utility .wrap { min-height: 38px; }
.utility a { display: inline-flex; align-items: center; min-height: 38px; }
.header .wrap { min-height: 76px; gap: 14px; }
.header__cta .btn--primary { box-shadow: none; padding: 11px 18px; }
.header__cta .btn--primary:hover { box-shadow: 0 6px 16px rgba(188, 147, 15, .22); }
.nav__link { font-size: .85rem; padding: 10px 8px; gap: 4px; }
/* Keep the dropdown affordance: the chevrons were collapsing to 3px in a crowded row. */
.nav__link .chev { flex: none; width: 13px; height: 13px; opacity: .8; }
.header__phone { font-size: .94rem; }

/* ---------- Shared bits ---------- */
.lh-stars { display: inline-flex; gap: 2px; }
.lh-stars svg { width: 13px; height: 13px; color: var(--gold-400); }

.lh-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 22px 40px; margin-bottom: clamp(30px, 4vw, 48px); }
.lh-head h2 { margin-top: 14px; font-size: var(--lh-h2); }
.lh-head__sub { margin-top: 12px; font-size: var(--fs-lead); color: var(--muted); max-width: 56ch; }
.lh-head__sub--wide { max-width: 60ch; align-self: end; }
.lh-head--dark .eyebrow { color: var(--gold-300); }
.lh-head--dark .eyebrow::before { background: var(--gold-300); }
.lh-head--dark h2 { color: var(--white); }
.lh-head--dark .lh-head__sub { color: rgba(255, 255, 255, .72); }

.lh-textlink { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 750; color: var(--purple-700); min-height: 44px; }
.lh-textlink svg { width: 15px; height: 15px; transition: transform .25s var(--lh-ease); }
.lh-textlink:hover svg { transform: translateX(4px); }

.lh-embed { position: relative; background: var(--white); border-radius: var(--lh-r); padding: 10px; box-shadow: var(--shadow-md); border: var(--lh-hair); }
.lh-embed iframe { width: 100%; border: 0; display: block; border-radius: 8px; }
/* Reserve the embed's final height on the WRAPPER, not the iframe. form_embed.js
   parks each protected iframe off-flow (position:absolute; left:-9999px) until
   it is ready, so an iframe min-height reserves nothing and the wrapper used to
   collapse to its border, then jump 450 to 750px when the widget came back.
   The GHL calendar picks a different internal layout per iframe width, so the
   reserve is set per breakpoint from measured final heights (Sept 2026); the
   iframe mirrors it so a shorter render leaves white inside the card, never a
   dark gap. The slot list can still run longer on a busy day; that residual is
   the only shift left. */
.lh-embed--cal { --lh-cal: 771px; min-height: var(--lh-cal); }
.lh-embed--cal iframe { min-height: calc(var(--lh-cal) - 2px); }
.lh-embed--form { --lh-form: 1073px; min-height: var(--lh-form); }
.lh-embed--form iframe { min-height: 1040px; }
/* Quiet label while the widget is parked; the iframe covers it once it is back in flow. */
.lh-embed::before { position: absolute; inset: 0; display: grid; place-items: center; font-size: .92rem; font-weight: 650; color: var(--muted); pointer-events: none; }
.lh-embed:has(iframe[style*="-9999px"])::before { content: "Loading the calendar"; }
.lh-embed--form:has(iframe[style*="-9999px"])::before { content: "Loading the form"; }

/* ---------- Hero ---------- */
.lh-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(180deg, var(--purple-900) 0%, var(--purple-950) 100%);
  color: rgba(255, 255, 255, .82);
}
.lh-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
  padding-block: clamp(48px, 6vw, 80px) clamp(92px, 9vw, 130px);
}
.lh-flag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  font-size: .82rem; font-weight: 650; color: var(--white); letter-spacing: .01em;
}
.lh-flag .lh-stars svg { color: var(--gold-300); }
.lh-hero h1 {
  margin-top: 22px;
  font-size: var(--lh-h1); font-weight: 850; color: var(--white);
  letter-spacing: -.03em; line-height: 1.04; max-width: 12.2em;
}
.lh-hero__lead { margin-top: 20px; font-size: var(--fs-lead); color: rgba(255, 255, 255, .8); max-width: 46ch; }
.lh-hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.lh-hero__note { margin-top: 14px; font-size: .88rem; color: rgba(255, 255, 255, .66); }
.lh-hero__note strong { color: var(--gold-300); font-weight: 700; }
.lh-hero__chips {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 10px 24px;
}
.lh-hero__chips li { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 650; color: rgba(255, 255, 255, .86); }
.lh-hero__chips svg { width: 16px; height: 16px; color: var(--gold-300); flex: none; }

.lh-hero__media { position: relative; }
/* 7:5 frame on a 3:2 photo keeps all eight people inside the crop (3.3% trimmed per side). */
.lh-hero__photo {
  margin: 0; position: relative; aspect-ratio: 7 / 5;
  border-radius: var(--lh-r); overflow: hidden;
  box-shadow: var(--shadow-xl); background: var(--purple-800);
}
.lh-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.lh-hero__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(21, 8, 34, .45), transparent 42%);
}
.lh-hero__review {
  position: relative; z-index: 2;
  margin: -54px 0 0 -30px; max-width: 380px;
  background: var(--white); color: var(--body);
  border-radius: var(--lh-r); padding: 18px 22px 18px;
  box-shadow: var(--shadow-lg); border-left: 4px solid var(--gold-500);
}
.lh-hero__review blockquote { margin-top: 10px; font-size: .94rem; line-height: 1.55; color: var(--ink); }
.lh-hero__review figcaption { margin-top: 14px; display: flex; align-items: center; gap: 10px; font-size: .86rem; font-weight: 750; color: var(--ink); }
.lh-hero__review .lh-rev__avatar { width: 40px; height: 40px; box-shadow: 0 0 0 2px rgba(239, 194, 74, .7); }
.lh-rev__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lh-rev__src { font-size: .8rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ---------- Credentials sheet: oversized numerals, slides over the hero foot ---------- */
.lh-creds {
  position: relative; z-index: 3;
  margin-top: -44px;
  background: var(--white);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -18px 50px rgba(21, 8, 34, .2);
  border-bottom: var(--lh-hair);
}
.lh-creds__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lh-cred {
  padding: clamp(28px, 3.2vw, 44px) clamp(16px, 2.2vw, 30px) clamp(24px, 2.8vw, 38px);
  border-left: var(--lh-hair-soft);
  display: flex; flex-direction: column; justify-content: flex-end; min-width: 0;
}
.lh-cred:first-child { border-left: 0; padding-left: 0; }
.lh-cred__num {
  display: block; font-size: var(--lh-num); font-weight: 800; line-height: .9; letter-spacing: -.04em;
  color: var(--ink); font-variant-numeric: tabular-nums; margin-bottom: 18px;
}
.lh-cred__plus { font-size: .55em; vertical-align: top; position: relative; top: .1em; margin-left: .04em; color: var(--gold-600); }
.lh-cred__num--with { display: flex; align-items: flex-end; gap: 12px; }
.lh-cred__num--with em { font-style: normal; }
.lh-cred__num--with img { width: auto; height: clamp(38px, 3.6vw, 54px); }
.lh-cred__mark { height: var(--lh-num); margin-bottom: 18px; display: flex; align-items: flex-end; }
.lh-cred__mark img { width: auto; height: clamp(54px, 5.4vw, 76px); }
.lh-cred__mark--icon { color: var(--gold-600); }
.lh-cred__mark--icon svg { width: clamp(44px, 4.2vw, 58px); height: clamp(44px, 4.2vw, 58px); }
.lh-cred strong { font-size: 1rem; font-weight: 800; color: var(--ink); line-height: 1.3; }
.lh-cred__sub { margin-top: 4px; font-size: .9rem; color: var(--muted); }

/* ---------- About / trust ---------- */
.lh-about { padding-block: clamp(56px, 6.5vw, 96px) var(--lh-sec); background: var(--white); }
.lh-about__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(36px, 5vw, 80px); align-items: center; }
.lh-about h2 { margin-top: 16px; font-size: var(--lh-h2); }
.lh-about__lead { margin-top: 20px; font-size: var(--fs-lead); color: var(--body); }
.lh-about__sub { margin-top: 28px; font-size: 1.25rem; }
.lh-about__sub + p { margin-top: 10px; }
.lh-values { margin-top: 24px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; }
.lh-values li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; font-weight: 650; color: var(--ink); }
.lh-values svg { width: 20px; height: 20px; flex: none; color: var(--gold-500); margin-top: 1px; }
.lh-about .btn-row { margin-top: 30px; }
.lh-about__figure {
  margin: 0; position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--lh-r); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--cream);
}
.lh-about__figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.lh-about__figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 22px 18px;
  background: linear-gradient(to top, rgba(21, 8, 34, .9), rgba(21, 8, 34, 0));
  color: var(--white); font-size: .92rem; font-weight: 700;
}
.lh-about__figure figcaption span { display: block; margin-top: 4px; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-300); }

.lh-ledger { margin-top: clamp(48px, 6vw, 84px); padding-top: clamp(28px, 3.5vw, 40px); border-top: var(--lh-hair); }
.lh-ledger__title { font-size: clamp(1.25rem, 1.05rem + .7vw, 1.6rem); }
.lh-ledger__grid { margin-top: clamp(20px, 2.5vw, 30px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lh-ledger__grid li { padding: 4px 26px 0 26px; border-left: var(--lh-hair-soft); }
.lh-ledger__grid li:first-child { border-left: 0; padding-left: 0; }
.lh-ledger__grid li:last-child { padding-right: 0; }
.lh-ledger__n { font-size: .8rem; font-weight: 800; letter-spacing: .14em; color: var(--gold-700); }
.lh-ledger__grid h3 { margin-top: 12px; font-size: 1.04rem; }
.lh-ledger__grid p { margin-top: 8px; font-size: .92rem; color: var(--muted); }

/* ---------- Reviews ---------- */
.lh-reviews { padding-block: var(--lh-sec); background: var(--sand); border-top: var(--lh-hair-soft); }
.lh-reviews__grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.lh-reviews h2 { margin-top: 14px; font-size: var(--lh-h2); }
.lh-reviews__intro { margin-top: 14px; font-size: var(--fs-lead); color: var(--muted); }
.lh-rating {
  margin-top: 26px; padding: 22px 24px;
  border: var(--lh-hair-soft); border-radius: var(--lh-r); background: var(--white);
  box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 20px; align-items: center;
}
.lh-rating__num { font-size: 3rem; font-weight: 850; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.lh-rating__stars svg { width: 18px; height: 18px; }
.lh-rating__meta { margin-top: 6px; font-size: .9rem; color: var(--muted); line-height: 1.45; }
.lh-rating__meta strong { display: block; color: var(--ink); font-size: 1.02rem; }
.lh-reviews .btn-row { margin-top: 22px; }
.lh-rev-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.lh-rev-grid > :nth-child(even) { margin-top: 34px; }

.lh-rev {
  margin: 0; background: var(--white); border: var(--lh-hair-soft); border-radius: var(--lh-r);
  padding: 22px 22px 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.lh-rev blockquote { margin-top: 12px; font-size: .94rem; line-height: 1.6; color: var(--body); flex: 1; }
.lh-rev figcaption { margin-top: 16px; padding-top: 14px; border-top: var(--lh-hair-soft); display: flex; align-items: center; gap: 11px; font-weight: 750; color: var(--ink); font-size: .9rem; }
.lh-rev__avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex: none; }
.lh-rev__initial { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--purple-800); color: var(--gold-300); font-size: .8rem; font-weight: 800; flex: none; letter-spacing: .02em; }
.lh-rev.lh-rev--feature { margin-top: 18px; background: var(--purple-800); border-color: var(--purple-800); box-shadow: var(--shadow-lg); }
.lh-rev--feature .lh-rev__src { color: rgba(255, 255, 255, .6); }
.lh-rev--feature blockquote { color: var(--white); font-size: 1.02rem; }
.lh-rev--feature figcaption { color: var(--white); border-top-color: rgba(255, 255, 255, .14); }
.lh-rev--feature .lh-rev__avatar { box-shadow: 0 0 0 2px rgba(239, 194, 74, .6); }

/* ---------- Process + booking calendar (dark band) ---------- */
.lh-process { background: var(--purple-950); color: rgba(255, 255, 255, .78); padding-block: var(--lh-sec); }
.lh-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, .12); }
.lh-pstep { padding: 28px 28px 8px 28px; border-left: 1px solid rgba(255, 255, 255, .1); }
.lh-pstep:first-child { border-left: 0; padding-left: 0; }
.lh-pstep:last-child { padding-right: 0; }
.lh-pstep__n { font-size: 2.2rem; font-weight: 850; letter-spacing: -.04em; line-height: 1; color: var(--gold-400); }
.lh-pstep h3 { margin-top: 14px; color: var(--white); font-size: 1.1rem; }
.lh-pstep p { margin-top: 10px; font-size: .94rem; color: rgba(255, 255, 255, .72); }

.lh-book {
  margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(36px, 4.5vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: start;
  scroll-margin-top: 92px;
}
.lh-book__step {
  display: inline-flex; justify-self: start; width: max-content; align-items: center; height: 28px; padding: 0 12px; border-radius: var(--r-pill);
  background: var(--gold-500); color: var(--purple-950);
  font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.lh-book__label { margin-top: 18px; font-size: clamp(1.5rem, 1.15rem + 1.3vw, 2.2rem); font-weight: 800; letter-spacing: -.022em; line-height: 1.1; color: var(--white); text-wrap: balance; }
.lh-book__phone {
  display: inline-flex; align-items: center; min-height: 44px; margin-top: 16px; padding-block: 8px;
  font-size: clamp(1.9rem, 1.35rem + 2.2vw, 3rem); font-weight: 850; letter-spacing: -.03em; line-height: 1;
  color: var(--gold-300); transition: color .25s var(--lh-ease);
}
.lh-book__phone:hover { color: var(--white); }
.lh-book__meta { margin-top: 22px; display: grid; gap: 8px; font-size: .95rem; color: rgba(255, 255, 255, .78); }
.lh-book__meta li { display: flex; align-items: center; gap: 10px; }
.lh-book__meta svg { width: 16px; height: 16px; color: var(--gold-300); flex: none; }
.lh-book__note { margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .92rem; color: rgba(255, 255, 255, .72); }
.lh-book__note strong { color: var(--gold-300); font-weight: 700; }
/* The GHL calendar paints its own purple card on a transparent body, so the wrapper sits
   in the nearest brand purple: the reserved box reads as the calendar panel while it loads,
   and a shorter render leaves no seam at the foot. */
.lh-book .lh-embed { padding: 0; background: var(--purple-600); border: 1px solid rgba(255, 255, 255, .16); box-shadow: var(--shadow-xl); overflow: hidden; }
.lh-book .lh-embed iframe { border-radius: 11px; }
.lh-book .lh-embed::before { color: rgba(255, 255, 255, .72); }

/* ---------- Services ---------- */
.lh-services { background: var(--white); padding-block: var(--lh-sec); }
.lh-svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.lh-svc { position: relative; display: flex; flex-direction: column; }
.lh-svc__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); border-radius: var(--lh-r); }
.lh-svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--lh-ease); }
.lh-svc:hover .lh-svc__media img { transform: scale(1.04); }
.lh-svc__body { padding-top: 18px; display: flex; flex-direction: column; flex: 1; }
.lh-svc__tag { font-size: .8rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); }
.lh-svc h3 { margin-top: 8px; font-size: 1.16rem; }
.lh-svc p { margin-top: 9px; font-size: .95rem; color: var(--muted); flex: 1; }
.lh-svc__link { margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-size: .88rem; font-weight: 750; color: var(--purple-700); }
/* One action per card: the link's hit area covers the whole card. */
.lh-svc .lh-svc__link::after { content: ""; position: absolute; inset: 0; }
.lh-svc__link svg { width: 15px; height: 15px; transition: transform .25s var(--lh-ease); }
.lh-svc:hover .lh-svc__link svg, .lh-svl__row:hover .lh-svc__link svg { transform: translateX(4px); }

.lh-svl { margin-top: clamp(32px, 4vw, 52px); border-top: var(--lh-hair); }
.lh-svl__row {
  display: grid; grid-template-columns: 44px 96px minmax(0, 1fr) auto; gap: 18px 22px; align-items: center;
  padding: 20px 0; border-bottom: var(--lh-hair);
}
.lh-svl__n { font-size: .8rem; font-weight: 800; letter-spacing: .14em; color: var(--gold-700); }
.lh-svl__thumb { margin: 0; width: 96px; aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; background: var(--cream); }
.lh-svl__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lh-svl h3 { font-size: 1.1rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; }
.lh-svl h3 small { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.lh-svl p { margin-top: 6px; font-size: .95rem; color: var(--muted); max-width: 62ch; }
.lh-svl .lh-svc__link { margin-top: 0; }

/* ---------- Storm and insurance ---------- */
.lh-storm { padding-block: var(--lh-sec); background: var(--sand); border-top: var(--lh-hair-soft); }
.lh-storm__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.lh-storm__figure { margin: 0; position: relative; align-self: start; aspect-ratio: 9 / 16; border-radius: var(--lh-r); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--cream); }
.lh-storm__figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.lh-storm h2 { margin-top: 14px; font-size: var(--lh-h2); }
.lh-storm__sub { margin-top: 12px; font-size: var(--fs-lead); color: var(--muted); }
.lh-sequence { margin-top: 26px; display: grid; }
.lh-seq { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 18px; padding: 22px 0; border-top: var(--lh-hair); }
.lh-seq:first-child { border-top: 0; padding-top: 4px; }
.lh-seq__n { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--purple-800); color: var(--gold-300); font-weight: 850; font-size: .98rem; }
.lh-seq h3 { font-size: 1.08rem; padding-top: 9px; }
.lh-seq p { margin-top: 8px; font-size: .95rem; color: var(--body); }
.lh-seq .lh-textlink { margin-top: 2px; }
.lh-storm .btn-row { margin-top: 24px; }

/* ---------- Veterans: one solid band, no gradient, no glow ---------- */
.lh-vet { background: var(--purple-800); color: rgba(255, 255, 255, .8); padding-block: clamp(36px, 4.5vw, 56px); border-top: 4px solid var(--gold-500); }
.lh-vet__grid { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(22px, 3.5vw, 44px); align-items: center; }
.lh-vet__badge { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); color: var(--gold-300); }
.lh-vet__badge svg { width: 38px; height: 38px; }
.lh-vet h2 { font-size: clamp(1.3rem, 1.05rem + 1vw, 1.75rem); color: var(--white); max-width: 28ch; }
.lh-vet p { margin-top: 10px; font-size: .96rem; max-width: 66ch; color: rgba(255, 255, 255, .78); }

/* ---------- Enquiry form + FAQ ---------- */
.lh-enquiry { background: var(--white); padding-block: var(--lh-sec); }
.lh-enquiry__grid {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  grid-template-areas: "copy form" "faq form";
  gap: clamp(36px, 5vw, 64px) clamp(32px, 5vw, 72px); align-items: start;
}
.lh-enquiry__copy { grid-area: copy; }
.lh-enquiry__form { grid-area: form; position: sticky; top: 96px; }
.lh-faq { grid-area: faq; }
.lh-enquiry h2 { margin-top: 14px; font-size: var(--lh-h2); }
.lh-enquiry__lead { margin-top: 16px; font-size: var(--fs-lead); color: var(--body); }
.lh-list { margin-top: 22px; display: grid; gap: 12px; }
.lh-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--ink); font-weight: 600; }
.lh-list svg { width: 20px; height: 20px; color: var(--gold-500); flex: none; margin-top: 2px; }
.lh-enquiry .btn-row { margin-top: 26px; }
.lh-enquiry__meta { margin-top: 28px; padding-top: 22px; border-top: var(--lh-hair); display: grid; gap: 10px; font-size: .92rem; color: var(--body); }
.lh-enquiry__meta li { display: inline-flex; align-items: center; gap: 10px; }
.lh-enquiry__meta svg { width: 16px; height: 16px; color: var(--gold-600); flex: none; }
.lh-consent { margin-top: 14px; font-size: .82rem; color: var(--muted); text-align: center; }

.lh-faq__title { font-size: 1.25rem; padding-top: 26px; border-top: var(--lh-hair); }
.lh-faq__list { margin-top: 18px; max-width: none; gap: 0; }
.faq details { border: 0; border-top: var(--lh-hair-soft); border-radius: 0; box-shadow: none; background: transparent; }
.faq details:last-child { border-bottom: var(--lh-hair-soft); }
.faq summary { padding: 16px 4px 16px 0; font-size: 1rem; min-height: 44px; }
.faq__body { padding: 0 24px 18px 0; }
.lh-faq__more { margin-top: 20px; font-size: .95rem; color: var(--body); }
.lh-faq__more strong { color: var(--ink); }
.lh-faq__more a { color: var(--purple-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.lh-faq .lh-textlink { margin-top: 6px; }

/* ---------- Areas: bordered 5x2 grid, every city links somewhere real ---------- */
.lh-areas { padding-block: var(--lh-sec); background: var(--white); border-top: var(--lh-hair); }
.lh-areas .lh-head { align-items: end; }
.lh-arx { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: var(--lh-hair); border-left: var(--lh-hair); }
.lh-arx li { border-right: var(--lh-hair); border-bottom: var(--lh-hair); }
.lh-arx li a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 18px 18px; min-height: 60px;
  font-size: .98rem; font-weight: 650; color: var(--ink);
  transition: background-color .25s var(--lh-ease), color .25s var(--lh-ease);
}
.lh-arx li a::after {
  content: ""; width: 8px; height: 8px; flex: none;
  border-top: 2px solid var(--gold-600); border-right: 2px solid var(--gold-600);
  transform: rotate(45deg); opacity: .85; transition: transform .35s var(--lh-ease), opacity .25s ease;
}
.lh-arx li a:hover { background: var(--sand); color: var(--purple-800); }
.lh-arx li a:hover::after { transform: rotate(45deg) translate(2px, -2px); opacity: 1; }
.lh-arx__note { margin-top: 24px; font-size: .95rem; color: var(--muted); }
.lh-arx__note strong { color: var(--ink); font-weight: 650; }
.lh-arx__note a { color: var(--purple-700); text-decoration: underline; text-underline-offset: 3px; }
/* 44px tap targets for inline text links: padding on a display:inline anchor only pads the glyph box,
   so make it inline-block and cancel the padding with a negative margin so the line box does not grow. */
.lh-faq__more a, .lh-arx__note a { display: inline-block; padding-block: 10px; margin-block: -10px; }

/* ---------- Recent work strip ---------- */
.lh-work { padding-block: var(--lh-sec-tight) var(--lh-sec); background: var(--white); border-top: var(--lh-hair); }
.lh-work__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px clamp(28px, 4vw, 64px); align-items: end; }
.lh-work h2 { margin-top: 14px; font-size: var(--lh-h2); }
.lh-work__cta { display: grid; justify-items: end; gap: 12px; }
.lh-work__cta p { font-size: .95rem; color: var(--muted); text-align: right; }
.lh-work__cta .btn-row { gap: 10px; justify-content: flex-end; }
/* 44px tap targets: .btn--sm alone measures 40 to 43px. */
.lh-work__cta .btn { min-height: 44px; }
.lh-work__strip { margin-top: clamp(28px, 3.5vw, 44px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 18px); }
.lh-work__strip a { display: block; overflow: hidden; border-radius: var(--lh-r); background: var(--cream); aspect-ratio: 4 / 3; }
.lh-work__strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--lh-ease); }
.lh-work__strip a:hover img { transform: scale(1.04); }

/* ---------- Final CTA: a real job under the ask, not a purple slab ---------- */
.lh-final { position: relative; isolation: isolate; overflow: hidden; background: var(--purple-950); color: rgba(255, 255, 255, .8); padding-block: clamp(64px, 8vw, 110px); }
.lh-final__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.lh-final::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(21, 8, 34, .94) 0%, rgba(21, 8, 34, .86) 55%, rgba(21, 8, 34, .7) 100%); }
.lh-final__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px 48px; align-items: center; }
.lh-final h2 { color: var(--white); font-size: clamp(1.45rem, 1.1rem + 1.3vw, 2.15rem); max-width: 24ch; }
.lh-final p { margin-top: 12px; font-size: 1.02rem; color: rgba(255, 255, 255, .76); max-width: 56ch; }
.lh-final .btn-row { flex-wrap: nowrap; }

/* ---------- Footer (protected markup, restyled) ---------- */
.footer__top { padding-block: clamp(44px, 5vw, 64px); }
.footer__list + h3 { margin-top: 26px; }
.footer__list { gap: 2px; }
.footer__meta { gap: 6px; }
.footer__list a, .footer__meta a, .footer__bottom nav a { display: inline-block; padding: 9px 0; }
.footer__socials a { width: 44px; height: 44px; }
.locband { padding: 28px 0 24px; }
.locband__grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.locband__col a { display: inline-block; padding: 10px 0; line-height: 1.4; }

/* ---------- Mobile call bar ---------- */
.callbar { transition: transform .35s var(--lh-ease); gap: 0; background: var(--purple-950); }
.callbar a { min-height: 56px; font-size: .92rem; }
.callbar__call { border-right: 1px solid rgba(255, 255, 255, .14); }
/* Slides away while a GHL embed is on screen (redesign.js), so it never covers Submit or a time slot. */
body.lh-embed-inview .callbar { transform: translateY(110%); }
@media (max-width: 720px) { body { padding-bottom: 56px; } }

/* ---------- GHL calendar reserve per breakpoint (measured final heights) ----------
   Above 1180 the calendar sits in the 7/12 column (about 607 to 618px wide) and
   renders 738 or 769px depending on a font-wrap race, so 771 covers both. */
@media (max-width: 1170px) { .lh-embed--cal { --lh-cal: 794px; } }
@media (max-width: 1100px) { .lh-embed--cal { --lh-cal: 787px; } }
@media (max-width: 1070px) { .lh-embed--cal { --lh-cal: 978px; } }
@media (max-width: 980px)  { .lh-embed--cal { --lh-cal: 1001px; } }
@media (max-width: 810px)  { .lh-embed--cal { --lh-cal: 740px; } }
@media (max-width: 690px)  { .lh-embed--cal { --lh-cal: 771px; } }
@media (max-width: 670px)  { .lh-embed--cal { --lh-cal: 794px; } }
@media (max-width: 510px)  { .lh-embed--cal { --lh-cal: 744px; } }
@media (max-width: 446px)  { .lh-embed--form { --lh-form: 1131px; } }
@media (max-width: 372px)  { .lh-embed--cal { --lh-cal: 775px; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .locband__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  .lh-ledger__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .lh-ledger__grid li { padding: 22px 22px 0 22px; }
  .lh-ledger__grid li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .lh-ledger__grid li:nth-child(n+3) { border-top: var(--lh-hair-soft); margin-top: 22px; }
  .lh-book { grid-template-columns: 1fr; gap: 28px; }
  .lh-book__copy { display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "step phone" "label phone" "meta note"; gap: 0 32px; align-items: start; }
  .lh-book__step { grid-area: step; }
  .lh-book__label { grid-area: label; max-width: 22ch; }
  .lh-book__phone { grid-area: phone; margin-top: 0; justify-self: end; }
  .lh-book__meta { grid-area: meta; }
  .lh-book__note { grid-area: note; margin-top: 22px; padding-top: 0; border-top: 0; justify-self: end; text-align: right; }
}

@media (max-width: 1000px) {
  .lh-about__grid, .lh-storm__grid, .lh-reviews__grid, .lh-enquiry__grid { grid-template-columns: 1fr; }
  .lh-enquiry__grid { grid-template-areas: "copy" "form" "faq"; }
  .lh-enquiry__form { position: static; }
  /* Caption sits under the photo once it stacks, so no text crosses a face. */
  .lh-about__figure { order: -1; aspect-ratio: auto; overflow: visible; box-shadow: none; background: none; border-radius: 0; }
  .lh-about__figure img { aspect-ratio: 3 / 2; object-position: 50% 22%; border-radius: var(--lh-r); box-shadow: var(--shadow-lg); }
  .lh-about__figure figcaption { position: static; background: none; color: var(--ink); padding: 12px 2px 0; font-size: .95rem; }
  .lh-about__figure figcaption span { color: var(--gold-700); }
  .lh-storm__figure { aspect-ratio: 4 / 5; max-width: 520px; }
  .lh-head { grid-template-columns: 1fr; align-items: start; }
  .lh-work__row { grid-template-columns: 1fr; }
  .lh-work__cta { justify-items: start; }
  .lh-work__cta p { text-align: left; }
  .lh-work__cta .btn-row { justify-content: flex-start; }
  .lh-rev-grid > :nth-child(even) { margin-top: 0; }
  .lh-final__grid { grid-template-columns: 1fr; }
  .lh-final .btn-row { flex-wrap: wrap; }
  .lh-arx { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .lh-creds__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lh-cred { padding: 22px 16px 20px; }
  .lh-cred:nth-child(odd) { border-left: 0; padding-left: 0; }
  .lh-cred:nth-child(n+3) { border-top: var(--lh-hair-soft); }
  .lh-svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lh-svc:nth-child(3) { grid-column: 1 / -1; flex-direction: row; gap: 20px; }
  .lh-svc:nth-child(3) .lh-svc__media { width: 44%; flex: none; }
  .lh-vet__grid { grid-template-columns: auto minmax(0, 1fr); }
  .lh-vet__grid .btn { grid-column: 2; justify-self: start; }
}

@media (max-width: 860px) {
  .lh-hero__grid { grid-template-columns: 1fr; gap: 30px; padding-block: 36px 84px; }
  .lh-hero h1 { max-width: none; }
  .lh-hero__review { margin: -34px 14px 0; max-width: none; }
  .lh-hero__chips { display: none; }
  .lh-creds { margin-top: -40px; border-radius: 22px 22px 0 0; }
}

@media (max-width: 820px) {
  .lh-process .lh-head__sub { display: none; }
  .lh-steps { grid-template-columns: 1fr; border-top: 0; }
  .lh-book { margin-top: 32px; padding-top: 28px; }
  .lh-pstep { padding: 18px 0 18px; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 4px 16px; align-items: start; }
  .lh-pstep:first-child { padding-top: 0; border-top: 0; }
  .lh-pstep__n { font-size: 1.6rem; grid-row: span 2; padding-top: 2px; }
  .lh-pstep h3 { margin-top: 0; font-size: 1.02rem; }
  .lh-pstep p { margin-top: 6px; font-size: .9rem; }
}

@media (max-width: 700px) {
  .lh-rev-grid { grid-template-columns: 1fr; }
  /* Featured quote plus two on a phone; the rest live on /reviews/. */
  .lh-rev-grid > :nth-child(n+3) { display: none; }
  .lh-book__copy { grid-template-columns: 1fr; grid-template-areas: "step" "label" "phone" "meta" "note"; }
  .lh-book__phone { justify-self: start; margin-top: 18px; }
  .lh-book__meta { margin-top: 18px; }
  .lh-book__note { justify-self: start; text-align: left; margin-top: 18px; }
  .lh-svl__row { grid-template-columns: 84px minmax(0, 1fr); grid-template-areas: "thumb body" "thumb link"; gap: 4px 16px; }
  .lh-svl__n { display: none; }
  .lh-svl__thumb { grid-area: thumb; width: 84px; align-self: start; }
  .lh-svl__body { grid-area: body; }
  .lh-svl .lh-svc__link { grid-area: link; }
  .lh-work__strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lh-work__strip a:nth-child(n+3) { display: none; }
  .lh-enquiry__meta { display: none; }
  .lh-vet__grid { grid-template-columns: 1fr; }
  .lh-vet__grid .btn { grid-column: auto; }
}

@media (max-width: 600px) {
  .lh-arx { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lh-arx li a { padding: 14px 14px; min-height: 52px; font-size: .95rem; }
}

@media (max-width: 560px) {
  :root { --lh-sec: 44px; --lh-sec-tight: 34px; }
  /* The intro line above already carries the 150+ five-star claim on a phone. */
  .lh-rating { display: none; }
  .lh-about__lead { font-size: 1rem; }
  .lh-storm__figure { aspect-ratio: 5 / 4; }
  .lh-hero__grid { gap: 24px; padding-block: 30px 68px; }
  .lh-hero__lead { font-size: 1rem; margin-top: 16px; }
  .lh-hero__cta { margin-top: 24px; }
  .lh-storm__sub, .lh-reviews__intro, .lh-head__sub, .lh-enquiry__lead { font-size: 1rem; }
  .lh-svc-grid { grid-template-columns: 1fr; gap: 14px; }
  .lh-svc { flex-direction: row; align-items: stretch; gap: 14px; }
  .lh-svc__media { width: 120px; flex: none; aspect-ratio: auto; border-radius: 8px; }
  .lh-svc__body { padding-top: 2px; }
  .lh-svc h3 { font-size: 1rem; margin-top: 4px; }
  .lh-svc p { font-size: .88rem; line-height: 1.5; margin-top: 5px; }
  .lh-svc__link { margin-top: 2px; font-size: .84rem; }
  .lh-seq { grid-template-columns: 40px minmax(0, 1fr); gap: 14px; }
  .lh-seq__n { width: 38px; height: 38px; font-size: .9rem; }
  .lh-seq h3 { padding-top: 6px; }
  .lh-values { gap: 8px 12px; }
  .lh-values li { font-size: .9rem; }
  .lh-rev.lh-rev--feature blockquote { font-size: .96rem; }
  .lh-cred__mark img { height: 50px; }
  .lh-cred strong { font-size: .92rem; }
  .lh-cred__sub { font-size: .84rem; }
  .lh-ledger__grid li { padding: 18px 14px 0 14px; }
  .lh-ledger__grid li:nth-child(odd) { padding-left: 0; }
  .lh-ledger__grid li:nth-child(even) { padding-right: 0; }
  .lh-ledger__grid h3 { font-size: .98rem; }
  .lh-ledger__grid p { font-size: .88rem; }
  .lh-work__strip img { aspect-ratio: auto; }
  .lh-work__strip { margin-top: 22px; }
  .lh-final { padding-block: 56px; }
  .lh-about__figure img { aspect-ratio: 16 / 10; object-position: 50% 18%; }

  /* Footer compaction on phones: brand block full width, link columns paired. */
  .footer__top { padding-block: 40px 32px; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 20px; }
  .footer__grid > div:first-child, .footer__grid > div:nth-child(4) { grid-column: 1 / -1; }
  .footer__grid > div:nth-child(4) .footer__meta { display: flex; flex-wrap: wrap; gap: 6px 24px; margin-top: 12px; }
  .footer__grid > div:nth-child(4) .footer__socials { margin-top: 14px; }
  .footer__about { font-size: .9rem; }
  .footer__list + h3 { margin-top: 20px; }
  .footer__list a { padding: 8px 0; }
  .locband__grid { gap: 10px 16px; }
  .locband__col a { padding: 10px 0; }
  .utility { font-size: .78rem; }
  .utility .wrap { gap: 10px; }
  .utility__item, .utility__item a { white-space: nowrap; }
  .utility__badge { font-size: .72rem; letter-spacing: .02em; }
  .faq summary { padding: 13px 4px 13px 0; }
  .lh-faq__more { font-size: .9rem; }
  .lh-rev { padding: 18px 18px 16px; }
  .lh-rev blockquote { font-size: .9rem; }
  .lh-seq p { font-size: .9rem; }
  .lh-cred { padding: 18px 14px 16px; }
  .lh-svl__thumb { width: 72px; }
  .lh-svl__row { grid-template-columns: 72px minmax(0, 1fr); padding: 16px 0; }
  .lh-svl p { font-size: .88rem; }
  .locband { padding: 24px 0 20px; }
  .locband__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 16px; }
  .footer__bottom { padding-block: 18px; }
  .footer__bottom nav { gap: 6px 16px; }
}

@media (max-width: 400px) {
  .lh-hero__cta .btn { width: 100%; }
  .lh-hero__review { margin: -28px 10px 0; padding: 16px 18px; }
  .lh-svc__media { width: 104px; }
  .lh-ledger__grid li { padding: 16px 10px 0 10px; }
  .lh-ledger__grid li:nth-child(odd) { padding-left: 0; }
  .lh-ledger__grid li:nth-child(even) { padding-right: 0; }
  .lh-ledger__grid p { font-size: .84rem; }
}

@media (prefers-reduced-motion: reduce) {
  .lh-svc__media img, .lh-work__strip img, .lh-textlink svg, .lh-svc__link svg, .callbar { transition: none; }
}

/* Tap targets outside <main>: protected markup, CSS only. */
.utility a { min-height: 44px; }
.footer__list a, .footer__meta a, .footer__bottom nav a { padding: 11px 0; }
.locband__col a { padding: 12px 0; }
.drawer__sub a { padding: 10px 0; }
@media (max-width: 560px) {
  .footer__list a { padding: 11px 0; }
  .locband__col a { padding: 12px 0; }
}
/* Ledger cards: title reveals with the block, cards cascade 0/100/200/300 so the last one settles inside a second. */
.lh-ledger__title[data-rv] { transition-delay: 0ms !important; }
.locband__col a { padding: 13px 0; }
@media (max-width: 560px) { .locband__col a { padding: 13px 0; } }
