@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --brand: #51cb3c;
  --brand-hover: #43b833;
  --green-dark: #173c2a;
  --green-mid: #204b2e;
  --green-light: #eaf7e7;
  --green-mist: #f3faf1;
  --anthracite: #2d2e34;
  --ink: #1f2922;
  --muted: #58625b;
  --off-white: #f7f6f2;
  --white: #fff;
  --line: #c7d1c8;
  --error: #9f2424;
  --error-bg: #fff1f0;
  --success: #145c30;
  --success-bg: #e8f7ec;
  --shadow: 0 20px 50px rgba(23, 60, 42, 0.12);
  --radius: 14px;
  --shell: min(1180px, calc(100vw - 40px));
  --header-height: 72px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hero-eyebrow-color: #69e754;
  --hero-eyebrow-font-size: clamp(0.76rem, 0.2vw + 0.72rem, 0.84rem);
  --hero-title-font-size: clamp(2.6rem, 4.67vw, 3.5rem);
  --hero-subheading-font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  --hero-copy-font-size: clamp(1.02rem, 0.45vw + 0.95rem, 1.18rem);
  --hero-cta-font-size: 0.88rem;
  --hero-text-shadow: 0 1px 2px rgba(0,0,0,0.95), 0 3px 8px rgba(0,0,0,0.72);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.home {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--anthracite);
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: var(--green-dark); text-underline-offset: 0.18em; }
a:hover { color: #0d2c1d; }
button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #0b5d35;
}

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 920px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 4px solid var(--brand);
  background: var(--white);
}

.site-header__inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 28px; }
body.home .site-header { border-bottom: 0; }
.site-header + main:not(.home-main) { margin-top: 0; }

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  white-space: nowrap;
}

.brand__logo { width: clamp(170px, 15vw, 205px); height: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 34px); }
.site-nav__list { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 34px); margin: 0; padding: 0; list-style: none; }
.site-nav a { position: relative; color: var(--ink); font-size: 0.9rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.site-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 3px; transform: scaleX(0); transform-origin: left; background: var(--brand); content: ""; transition: transform 160ms ease; }
.site-nav a:hover::after,
.site-nav .current-menu-item a::after,
.site-nav .is-current::after { transform: scaleX(1); }

.menu-toggle { display: none; width: 48px; min-height: 44px; align-items: center; justify-content: center; gap: 8px; border: 0; background: transparent; color: var(--ink); font-weight: 800; }
.menu-toggle__icon { display: grid; gap: 4px; }
.menu-toggle__icon i { display: block; width: 21px; height: 2px; background: currentColor; transition: transform 160ms ease, opacity 160ms ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

h1, h2, h3 { margin-top: 0; color: var(--ink); line-height: 1.08; text-wrap: balance; }
h1 { max-width: 16ch; margin-bottom: 20px; font-size: clamp(2.75rem, 5.4vw, 5.15rem); letter-spacing: -0.055em; }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.4vw, 3.25rem); letter-spacing: -0.04em; }
h3 { margin-bottom: 12px; font-size: 1.25rem; }
p { margin-top: 0; }
.eyebrow, .section-kicker { margin-bottom: 12px; color: var(--green-mid); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.08em; line-height: 1.3; text-transform: uppercase; }
.lede { max-width: 64ch; margin-bottom: 28px; color: #3d4941; font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.55; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--brand); color: var(--ink); }
.button--primary:hover { background: var(--brand-hover); color: var(--ink); }
.home-hero .button--primary,
.detail-hero .button--primary { text-shadow: none; }
.button--secondary { background: var(--green-dark); color: var(--white); }
.button--secondary:hover { background: #0f2f20; color: var(--white); }
.button--outline { border-color: var(--green-dark); background: rgba(255,255,255,0.08); color: var(--green-dark); }
.button--outline:hover { background: var(--green-dark); color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 850; }
.text-link::after { content: "→"; }

/* Home */
.home-main {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  display: grid;
  width: 100%;
  flex: 0 0 auto;
  margin-top: var(--header-height);
  grid-template-rows: minmax(min-content, 1fr) auto;
  background: #111713;
}
.home-main.has-notice { grid-template-rows: auto minmax(min-content, 1fr) auto; }
.home-hero {
  --hero-focus-x: 68%;
  --hero-focus-y: 18%;
  position: relative;
  min-height: 0;
  overflow: hidden;
  background-color: #06120c;
  isolation: isolate;
}
.home-hero__media { position: absolute; inset: 0; }
.home-hero__media { z-index: 0; overflow: hidden; }
.home-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--hero-focus-x) var(--hero-focus-y);
  filter: brightness(1.15) saturate(1.04);
}
.home-hero__inner { position: relative; z-index: 2; display: flex; height: 100%; min-height: 0; align-items: center; padding-block: clamp(32px, 6vh, 68px); }
.home-hero__copy { max-width: min(680px, 50vw); }
.home-hero h1 { max-width: none; margin-bottom: 5px; }
.home-hero__subline { margin-bottom: 10px; }
.home-hero__trustline { margin-bottom: 13px; color: var(--white); font-size: 1rem; font-weight: 800; letter-spacing: 0.015em; }
.home-hero__services { margin-bottom: 18px; }
.action-group { display: flex; flex-wrap: wrap; gap: 9px; }
.home-hero .button { white-space: nowrap; }
.home-hero .button--outline { border-color: rgba(255,255,255,0.82); background: rgba(6,16,11,0.3); color: var(--white); backdrop-filter: blur(6px); }
.home-hero .button--outline:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.trust-strip { background: rgba(7, 19, 13, 0.98); color: var(--white); }
.trust-strip__inner { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 64px; align-items: stretch; }
.trust-strip__inner > * { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 13px 24px; border-left: 1px solid rgba(255,255,255,0.22); color: inherit; text-decoration: none; }
.trust-strip__inner > *:first-child { border-left: 0; padding-left: 0; }
.trust-strip strong { font-size: 0.9rem; line-height: 1.2; }
.trust-strip__inner > * > span,
.trust-strip__inner > * > small { margin-top: 4px; color: rgba(255,255,255,0.7); font-size: 0.72rem; line-height: 1.3; }
.trust-strip__rating { align-self: flex-start; white-space: nowrap; }
.trust-strip__rating-visual { display: inline-flex; align-items: center; gap: 0.42em; }
.trust-strip__stars { width: 5.56em; height: 1em; display: block; flex: 0 0 auto; overflow: visible; }
.trust-strip__review-link, .trust-strip__review-link:visited { align-self: flex-start; margin-top: 4px; color: rgba(255,255,255,0.82); font-size: 0.72rem; line-height: 1.3; text-decoration-line: underline; text-decoration-color: rgba(255,255,255,0.62); text-decoration-thickness: 1px; text-underline-offset: 0.22em; text-decoration-skip-ink: auto; }
.trust-strip__review-link:hover { color: var(--white); text-decoration-color: currentColor; text-decoration-thickness: 2px; }
.trust-strip__review-link:focus-visible { border-radius: 2px; color: var(--white); text-decoration-color: currentColor; }
.trust-strip__route {
  align-self: flex-start;
  max-width: 100%;
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: rgba(255,255,255,0.52);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  text-decoration-skip-ink: auto;
}
.trust-strip__route:hover { color: var(--brand); text-decoration-color: currentColor; }
.trust-strip__route:focus-visible { border-radius: 2px; color: var(--white); text-decoration-color: var(--brand); }
.maps-choice {
  width: min(320px, calc(100vw - 32px));
  max-width: none;
  margin: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(23,60,42,0.2);
}
.maps-choice:not([open]) { display: none; }
.maps-choice::backdrop { background: transparent; }
.maps-choice__inner { padding: 18px; }
.maps-choice__label { margin: 0 0 12px; color: var(--ink); font-size: 1rem; font-weight: 850; line-height: 1.3; }
.maps-choice__links { display: grid; gap: 9px; }
.maps-choice__link { color: var(--green-dark); font-weight: 800; text-underline-offset: 0.18em; }
.maps-choice__link:hover { color: #0d2c1d; }
.maps-choice__close {
  margin-top: 15px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.maps-choice__close:hover { color: var(--ink); }
.notice-bar { background: var(--brand); color: var(--ink); }
.notice-bar .shell { padding-block: clamp(17px, 1.55vw, 23px); }
.notice-bar__items { min-width: 0; }
.notice-bar__item { display: grid; grid-template-columns: minmax(150px, 0.2fr) minmax(0, 1fr); gap: clamp(18px, 2.6vw, 38px); align-items: baseline; padding-block: clamp(10px, 1vw, 14px); }
.notice-bar__item:first-child { padding-top: 0; }
.notice-bar__item:last-child { padding-bottom: 0; }
.notice-bar__item + .notice-bar__item { border-top: 1px solid rgba(255,255,255,0.24); }
.notice-bar__label,
.notice-bar__text { margin: 0; }
.notice-bar__label { color: inherit; font-size: 0.74rem; font-weight: 850; letter-spacing: 0.07em; line-height: 1.35; text-transform: uppercase; }
.notice-bar__text { color: inherit; font-size: clamp(0.9rem, 0.28vw + 0.83rem, 1rem); font-weight: 675; line-height: 1.45; overflow-wrap: anywhere; }

/* Subpages */
.page-main { min-height: 100svh; }
.page-hero { position: relative; overflow: hidden; padding-block: clamp(70px, 10vw, 130px); background: var(--off-white); }
.page-hero::after { position: absolute; top: -240px; right: -140px; width: 520px; height: 520px; border: 68px solid var(--green-light); border-radius: 50%; content: ""; }
.page-hero > .shell { position: relative; z-index: 2; }
.page-hero h1 { max-width: 16ch; }
.page-hero--image { min-height: clamp(440px, 46vw, 590px); display: grid; align-items: center; padding-block: clamp(70px, 8vw, 110px); background-color: var(--green-dark); background-position: center; background-repeat: no-repeat; background-size: cover; color: var(--white); isolation: isolate; }
.page-hero--image::after { position: absolute; z-index: 2; top: auto; right: 0; bottom: 0; left: 0; width: auto; height: 6px; border: 0; border-radius: 0; background: var(--brand); content: ""; }
.page-hero--image .page-hero__copy { max-width: 720px; }
.page-hero--image h1 { max-width: 15ch; color: var(--white); }
/* Unified readability system for every public image hero. */
.home-hero__copy,
.page-hero--image .page-hero__copy {
  color: var(--white);
  text-shadow: var(--hero-text-shadow);
}
.home-hero .eyebrow,
.page-hero--image .eyebrow {
  color: var(--hero-eyebrow-color);
  font-family: var(--font);
  font-size: var(--hero-eyebrow-font-size);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.home-hero h1,
.detail-hero h1 {
  color: var(--white);
  font-family: var(--font);
  font-size: var(--hero-title-font-size);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.04;
  text-shadow: var(--hero-text-shadow);
}
.home-hero__subline,
.detail-hero .hero-subheading {
  color: var(--white);
  font-family: var(--font);
  font-size: var(--hero-subheading-font-size);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.home-hero__services,
.page-hero--image .lede,
.detail-hero .hero-note {
  width: 100%;
  max-width: 46ch;
  color: var(--white);
  font-family: var(--font);
  font-size: var(--hero-copy-font-size);
  font-weight: 700;
  line-height: 1.5;
  opacity: 1;
}
.home-hero .button,
.detail-hero .button {
  font-family: var(--font);
  font-size: var(--hero-cta-font-size);
  font-weight: 900;
  line-height: 1.2;
}
.text-group--nowrap { white-space: nowrap; }
.page-hero--compact { min-height: 360px; }
.page-hero--workshop { background-image: url("../images/workshop-exterior.jpg"); background-position: center 61%; }
.page-hero--services { background-image: url("../images/service-repair.jpg"); background-position: center 48%; }
.page-hero--faq { background-image: url("../images/service-tools.jpg"); background-position: center 55%; }
.page-hero--request { background-image: url("../images/service-lift.jpg"); background-position: center 48%; }
.page-hero--legal { background-image: url("../images/workshop-exterior.jpg"); background-position: center 65%; }
.page-hero--generic { background-image: url("../images/service-tools.jpg"); background-position: center 55%; }
.content-section { padding-block: clamp(70px, 9vw, 120px); background: var(--white); }
.content-section--mist { background: var(--green-mist); }
.content-section--light-green { background: var(--green-light); }
.split-copy { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(42px, 8vw, 110px); align-items: start; }
.split-copy p { max-width: 56ch; }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 45px; }
.principles-grid article { padding: 28px; border-top: 6px solid var(--brand); background: var(--white); box-shadow: 0 10px 35px rgba(23,60,42,0.07); }
.principles-grid article > span { display: block; margin-bottom: 36px; color: var(--brand-hover); font-size: 0.78rem; font-weight: 900; }
.principles-grid p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* Workshop and services page system */
body:has(.detail-page) .site-header { border-bottom: 0; }
.detail-page { padding-top: var(--header-height); background: var(--white); }
.detail-page + .site-footer { border-top: 0; }
.detail-page .content-section { padding-block: clamp(54px, 6vw, 84px); }
.detail-hero {
  min-height: clamp(500px, 52vw, 620px);
  padding-block: clamp(54px, 6vw, 78px);
  background-position: var(--hero-focus-x, 50%) var(--hero-focus-y, 50%);
}
.detail-hero::after { display: none; }
.detail-hero__media { position: absolute; z-index: 0; inset: 0; display: block; overflow: hidden; }
.detail-hero__media img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: var(--hero-focus-x, 50%) var(--hero-focus-y, 50%); filter: brightness(1.14) saturate(1.04); }
.detail-hero__inner { position: relative; z-index: 3; display: flex; align-items: center; }
.detail-hero .page-hero__copy { width: min(48%, 620px); max-width: 620px; }
.detail-hero .eyebrow { margin-bottom: clamp(9px, 1vw, 12px); }
.detail-hero h1 { max-width: 16ch; margin-bottom: clamp(16px, 1.5vw, 20px); }
.detail-hero .hero-subheading { max-width: 18ch; margin-bottom: clamp(20px, 2vw, 26px); }
.detail-hero .lede { margin-bottom: clamp(22px, 2vw, 28px); }
.detail-hero .hero-note { margin-bottom: 0; }
.detail-hero .button--outline { border-color: rgba(255,255,255,0.82); background: rgba(6,16,11,0.28); color: var(--white); backdrop-filter: blur(6px); }
.detail-hero .button--outline:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.detail-hero--compact { min-height: clamp(400px, 42vw, 500px); }
.workshop-hero { --hero-focus-x: 54%; --hero-focus-y: 52%; }
.services-hero { --hero-focus-x: 54%; --hero-focus-y: 44%; }
.services-hero .detail-hero__media img { transform: scale(1.06); transform-origin: left center; }
.about-hero { --hero-focus-x: 60%; --hero-focus-y: 52%; }
.faq-hero { --hero-focus-x: 61%; --hero-focus-y: 54%; }
.faq-hero .detail-hero__media img { filter: brightness(1.2) saturate(1.05); }
.request-hero { --hero-focus-x: 54%; --hero-focus-y: 48%; background-image: url("../images/service-lift.jpg"); }
.request-hero .detail-hero__media img { filter: brightness(1.16) saturate(1.04); }
.legal-hero { --hero-focus-x: 52%; --hero-focus-y: 64%; background-image: url("../images/workshop-exterior.jpg"); }
.not-found-hero { --hero-focus-x: 58%; --hero-focus-y: 55%; background-image: url("../images/service-tools.jpg"); }

/* Workshop page */
.workshop-process .narrow { max-width: 1040px; }
.workshop-process__intro { max-width: 62ch; color: var(--muted); }
.workshop-principles { gap: clamp(16px, 2vw, 24px); }
.workshop-principles article {
  min-width: 0;
  padding: clamp(25px, 3vw, 34px);
  border: 1px solid rgba(23,60,42,0.15);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23,60,42,0.07);
}
.workshop-principles article > span {
  width: 38px;
  height: 38px;
  display: grid;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
}
.detail-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: clamp(34px, 5vw, 54px) 0 0; padding: 0; border-block: 1px solid var(--line); list-style: none; }
.detail-notes li { display: grid; gap: 4px; padding: 22px 26px; border-left: 1px solid var(--line); }
.detail-notes li:first-child { padding-left: 0; border-left: 0; }
.detail-notes strong { color: var(--green-dark); }
.detail-notes span { color: var(--muted); font-size: 0.9rem; }
.workshop-prep__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}
.workshop-prep__layout > * { min-width: 0; }
.workshop-prep__heading h2 { max-width: 16ch; }
.workshop-prep__heading > p:last-child { max-width: 52ch; color: var(--muted); }
.workshop-prep__details {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(23,60,42,0.15);
  border-radius: var(--radius);
  background: var(--white);
}
.workshop-checklist { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.workshop-checklist li { position: relative; padding-left: 31px; }
.workshop-checklist li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}
.workshop-prep__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; margin-top: 30px; }
.workshop-prep__actions .text-link { padding-bottom: 3px; border-bottom: 2px solid rgba(23,60,42,0.36); text-decoration: none; }
.workshop-prep__actions .text-link:hover { border-bottom-color: var(--brand-hover); }

/* Services page */
.services-directory__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 76px);
}
.services-directory__intro h2 { max-width: 14ch; margin-bottom: 0; }
.services-directory__intro > p { max-width: 58ch; margin-bottom: 0; color: var(--muted); }
.service-groups { display: grid; gap: clamp(22px, 3vw, 34px); }
.service-group { min-width: 0; display: grid; grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr); overflow: hidden; border: 1px solid rgba(23,60,42,0.15); border-radius: calc(var(--radius) + 2px); background: var(--white); box-shadow: 0 16px 42px rgba(23,60,42,0.09); }
.service-group > * { min-width: 0; }
.service-group:nth-child(even) .service-group__media { order: 2; }
.service-group__media { min-height: 410px; margin: 0; overflow: hidden; background: var(--green-light); }
.service-group__media img { width: 100%; height: 100%; min-height: 410px; object-fit: cover; object-position: center; }
.service-group:nth-child(2) .service-group__media img { object-position: 50% 56%; }
.service-group:nth-child(3) .service-group__media img { object-position: 50% 48%; }
.service-group:nth-child(4) .service-group__media img { object-position: 54% 50%; }
.service-group:nth-child(5) .service-group__media img { object-position: 66% 54%; }
.service-group__body { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: clamp(18px, 2.5vw, 32px); align-content: center; padding: clamp(30px, 4.2vw, 54px); }
.service-group__number { align-self: start; color: var(--brand-hover); font-size: 0.78rem; font-weight: 900; }
.service-group h3 { max-width: 21ch; margin-bottom: 13px; font-size: clamp(1.6rem, 2.8vw, 2.5rem); }
.service-group__copy > p:not(.section-kicker) { max-width: 54ch; color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--off-white); font-size: 0.76rem; font-weight: 750; }
.services-prep__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(46px, 8vw, 112px);
  align-items: start;
}
.services-prep__layout h2 { max-width: 16ch; }
.services-prep__layout > div > p:last-child { max-width: 54ch; color: var(--muted); }
.services-prep__details { min-width: 0; display: grid; }
.services-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.services-facts li { min-width: 0; display: flex; flex-direction: column; gap: 4px; padding: 22px 24px; border: 1px solid rgba(23,60,42,0.15); border-radius: var(--radius); background: var(--white); }
.services-facts strong { color: var(--green-dark); }
.services-facts span { color: var(--muted); font-size: 0.9rem; }
.services-prep__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: clamp(2px, 1vw, 10px);
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(23,60,42,0.18);
}

.page-closing { padding-top: 0; }
.page-closing__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(23,60,42,0.16);
  border-radius: var(--radius);
  background: var(--off-white);
}
.page-closing__panel > div { max-width: 760px; }
.page-closing h2 { max-width: 18ch; margin-bottom: 0; }
.page-closing p:last-child { max-width: 58ch; margin: 14px 0 0; color: var(--muted); }
.page-closing .button { flex: 0 0 auto; }

/* About page */
.about-section__layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr); gap: clamp(42px, 7vw, 92px); align-items: center; }
.about-section__layout > * { min-width: 0; }
.about-section__layout--reverse { grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr); }
.about-section__layout--reverse .about-section__media { order: 2; }
.about-section__layout--reverse .about-section__copy { order: 1; }
.about-section__media { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--green-dark); }
.about-section__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.about-team__media img { object-position: 52% 48%; }
.about-kristina__media { width: min(100%, 540px); justify-self: end; }
.about-kristina__media img { aspect-ratio: 4 / 3; object-position: 48% 38%; }
.about-history__media img { object-position: 58% 52%; }
.about-section__copy h2 { max-width: 16ch; }
.about-section__copy > p:not(.section-kicker) { max-width: 56ch; color: var(--muted); }
.about-kristina .button { margin-top: 24px; }
.about-history__note { margin-top: 22px; padding-left: 20px; border-left: 4px solid var(--brand); color: var(--ink) !important; font-weight: 700; }
.page-crosslink { padding-top: 0; }
.page-crosslink__inner { display: flex; align-items: center; justify-content: space-between; gap: 42px; padding-top: clamp(44px, 5vw, 66px); border-top: 1px solid var(--line); }
.page-crosslink h2 { max-width: 20ch; margin-bottom: 12px; }
.page-crosslink p:last-child { max-width: 58ch; margin-bottom: 0; color: var(--muted); }
.page-crosslink .button { flex: 0 0 auto; }
.feature-card { display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: clamp(28px, 5vw, 60px); border: 2px solid rgba(23,60,42,0.16); border-radius: var(--radius); background: var(--white); }
.feature-card h2 { max-width: 18ch; }
.feature-card p { max-width: 60ch; }
.draft-panel { display: flex; margin-top: 28px; flex-direction: column; gap: 5px; padding: 20px 22px; border-left: 5px solid var(--brand); background: var(--green-light); color: var(--ink); font-size: 0.9rem; }

.heritage { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(50px, 8vw, 100px); align-items: center; }
.heritage__media { min-width: 0; margin: 0; overflow: hidden; border: 7px solid var(--brand); border-radius: var(--radius); background: var(--green-dark); box-shadow: 18px 18px 0 var(--green-light); }
.heritage__media img { width: 100%; aspect-ratio: 9 / 7; object-fit: cover; }
.heritage__media figcaption { padding: 14px 16px; color: var(--white); font-size: 0.78rem; font-weight: 800; line-height: 1.4; }

.faq-directory__intro { max-width: 720px; margin-bottom: clamp(32px, 5vw, 52px); }
.faq-list { display: grid; max-width: 960px; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-left: 4px solid transparent; border-radius: 2px; background: var(--white); transition: border-color 160ms ease, background-color 160ms ease; }
.faq-list details[open] { border-left-color: var(--brand); background: var(--off-white); }
.faq-list summary { position: relative; padding: 22px 62px 22px 24px; cursor: pointer; font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 24px; width: 28px; height: 28px; display: grid; transform: translateY(-50%); place-items: center; border-radius: 50%; background: var(--green-light); content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details > div { padding: 0 62px 22px 24px; }
.faq-list details p { max-width: 70ch; margin: 0; }
.faq-final-action { max-width: 960px; margin-top: clamp(32px, 4vw, 48px); }

.cta-band { padding-block: clamp(45px, 6vw, 75px); background: var(--green-dark); color: var(--white); }
.cta-band h2, .cta-band .eyebrow { color: var(--white); }
.cta-band .eyebrow { color: var(--brand); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { margin-bottom: 0; }

/* Request form */
.request-section { background: var(--green-mist); }
.request-layout { container: request-layout / inline-size; display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr); gap: clamp(45px, 8vw, 105px); align-items: start; }
.request-layout > * { min-width: 0; }
.request-aside { position: sticky; top: calc(var(--header-height) + 24px); padding: 30px; background: var(--green-dark); color: var(--white); }
.request-aside h2, .request-aside .section-kicker { color: var(--white); }
.request-aside .section-kicker { color: var(--brand); }
.request-benefits { display: grid; gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; }
.request-benefits li { position: relative; padding-left: 25px; }
.request-benefits li::before { position: absolute; left: 0; color: var(--brand); content: "✓"; font-weight: 900; }
.request-aside .draft-panel { background: rgba(255,255,255,0.09); color: var(--white); }
.request-form-wrap { padding: clamp(26px, 4vw, 48px); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.request-form { display: grid; gap: 22px; }
.request-form > *, .field-grid > *, .field { min-width: 0; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; margin: 0; padding: 0; border: 0; }
.field label, .fieldset legend { font-size: 0.88rem; font-weight: 850; }
.fieldset legend { margin-bottom: 10px; }
.field .optional { color: var(--muted); font-size: 0.75rem; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 11px 13px; border: 2px solid var(--line); border-radius: 4px; background: var(--white); color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: #0b5d35; outline: 3px solid var(--white); outline-offset: 2px; box-shadow: 0 0 0 6px #0b5d35; }
.field [aria-invalid="true"] { border-color: var(--error); }
.file-drop-zone { position: relative; border: 2px dashed rgba(11,93,53,0.58); border-radius: 8px; background: var(--off-white); }
.field .file-picker__input { position: absolute; width: 1px; height: 1px; min-height: 1px; margin: 0; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0; white-space: nowrap; }
.file-drop-zone__label { display: flex; min-height: 138px; align-items: center; justify-content: center; flex-direction: column; gap: 7px; padding: 22px 16px; cursor: pointer; text-align: center; }
.file-drop-zone__instruction { color: var(--green-dark); font-size: clamp(1rem, 2vw, 1.1rem); font-weight: 850; line-height: 1.35; }
.file-drop-zone__separator { color: var(--muted); font-size: 0.8rem; font-weight: 700; }
.file-drop-zone__button { width: min(100%, 240px); min-height: 48px; justify-content: center; pointer-events: none; }
.file-picker__input:focus-visible + .file-drop-zone__label { outline: 3px solid var(--white); outline-offset: 2px; box-shadow: 0 0 0 6px #0b5d35; }
.file-picker__input[aria-invalid="true"] + .file-drop-zone__label { box-shadow: inset 0 0 0 2px var(--error); }
.file-drop-zone.is-drag-over { border-style: solid; border-color: var(--green-dark); background: var(--green-mist); box-shadow: inset 0 0 0 2px rgba(11,93,53,0.2); }
.file-drop-zone.is-drag-over .file-drop-zone__instruction { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.selected-file-count { margin: 2px 0 0; color: var(--ink); font-size: 0.85rem; font-weight: 800; }
.selected-file-list { display: grid; gap: 8px; margin: 2px 0 0; padding: 0; list-style: none; }
.selected-file-list[hidden] { display: none; }
.selected-file-list__item { display: grid; min-width: 0; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 9px 10px 9px 13px; border: 1px solid var(--line); border-radius: 6px; background: var(--off-white); }
.selected-file-list__name { min-width: 0; overflow-wrap: anywhere; word-break: break-word; font-size: 0.84rem; line-height: 1.4; }
.selected-file-list__remove { min-height: 44px; padding: 8px 10px; border: 2px solid var(--green-dark); border-radius: 8px; background: var(--white); color: var(--green-dark); cursor: pointer; font: inherit; font-size: 0.8rem; font-weight: 850; }
.selected-file-list__remove:hover { background: var(--green-mist); }
.selected-file-list__remove:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; box-shadow: 0 0 0 6px #0b5d35; }
.field-help { margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
.field-help--group { margin-top: -13px; }
.field-help--warning { padding: 10px 12px; border-left: 4px solid var(--error); background: var(--error-bg); color: var(--error); font-weight: 800; }
.field textarea::placeholder { color: #617068; opacity: 1; }
.field--honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.required-marker { color: var(--error); }
.choice-row, .choice-stack { display: flex; gap: 12px 24px; }
.choice-stack { align-items: flex-start; flex-direction: column; }
.choice-row label, .choice-stack label { min-height: 44px; display: flex; align-items: center; gap: 9px; padding-block: 8px; font-weight: 700; }
.choice-row input, .choice-stack input, .field--checkbox input { width: 22px; min-width: 22px; min-height: 22px; margin: 0; padding: 0; }
.field--checkbox { grid-template-columns: auto minmax(0, 1fr); align-items: start; gap: 8px 11px; }
.field--checkbox .field-error { grid-column: 2; }
.conditional-panel { padding: 20px; border: 1px solid rgba(23,60,42,0.18); border-radius: 6px; background: var(--green-mist); }
.conditional-panel--stack { display: grid; gap: 20px; }
.conditional-panel[hidden] { display: none; }
.form-info { display: grid; gap: 6px; }
.form-info p { margin: 0; }
.new-customer-panel { display: grid; gap: 20px; }
.form-help-details { border: 1px solid var(--line); background: var(--white); }
.form-help-details summary { padding: 13px 15px; cursor: pointer; font-weight: 800; }
.form-help-details div { padding: 0 15px 13px; }
.form-help-details p { margin: 0; color: var(--muted); font-size: 0.85rem; }
.field-error { color: var(--error); font-size: 0.8rem; font-weight: 750; line-height: 1.4; }
.field-error[hidden] { display: none; }
.form-required-note { margin: 0 0 4px; color: var(--muted); font-size: 0.8rem; }
.consent-note { padding: 18px; border-left: 5px solid var(--brand); background: var(--green-mist); font-size: 0.85rem; }
.consent-note p { margin: 0; }
.consent-note a { color: var(--green-dark); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.form-status { display: flex; margin-bottom: 22px; flex-direction: column; padding: 18px 20px; border: 2px solid; }
.form-status--success { border-color: var(--success); background: var(--success-bg); color: var(--success); }
.form-status--error { border-color: var(--error); background: var(--error-bg); color: var(--error); }
.form-status[hidden] { display: none; }
.form-status a { color: currentColor; font-weight: 800; }
.request-summary { display: grid; gap: 0; margin: 16px 0 0; color: var(--ink); }
.request-summary > div { display: grid; min-width: 0; grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr); gap: 12px; padding: 8px 0; border-top: 1px solid rgba(20,92,48,0.25); }
.request-summary dt, .request-summary dd { min-width: 0; word-break: normal; }
.request-summary dt { overflow-wrap: normal; hyphens: none; font-weight: 850; }
.request-summary dd { margin: 0; overflow-wrap: break-word; }
@container request-layout (max-width: 983px) {
  .request-summary > div { grid-template-columns: minmax(0, 1fr); gap: 3px; }
}
.form-pending-note { min-height: 1.4em; margin: -10px 0 0; color: var(--muted); font-size: 0.8rem; }

/* Legal and generic */
.prose { padding-block: clamp(60px, 9vw, 110px); }
.prose > * { max-width: 72ch; }
.prose h1, .prose h2 { max-width: 18ch; }
.prose h2 { margin-top: 48px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.prose li + li { margin-top: 8px; }
.legal-content { max-width: 1040px; }
.legal-content__inner { padding-block: 0; }
.detail-page .legal-content__inner h2 { max-width: 30ch; margin: clamp(34px, 4vw, 46px) 0 12px; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.legal-content__inner h2:first-child { margin-top: 0; }
.legal-content__inner p { margin-block: 0; }
.legal-content__inner p + p { margin-top: 10px; }
.legal-content__inner a { color: var(--green-dark); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.legal-content__inner a:hover { color: var(--green-mid); }
.legal-content__inner a:focus-visible { border-radius: 2px; outline: 3px solid var(--brand); outline-offset: 3px; }
.legal-warning { margin-bottom: 44px; padding: 24px; border: 2px solid #c37312; background: #fff7e9; }
.legal-warning p { margin: 7px 0 0; }
.not-found-hero .page-hero__copy { width: min(64%, 760px); }
.not-found-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; }
.not-found-phone { display: inline-flex; min-height: 48px; align-items: center; color: var(--white); font-weight: 850; text-decoration-color: var(--brand); }
.not-found-phone:hover { color: var(--brand); }

.site-footer { border-top: 3px solid var(--brand); background: var(--anthracite); color: var(--white); }
body.home .site-footer { border-top: 0; }
body.home .site-footer { flex: 0 0 auto; }
.site-footer__inner { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 25px; }
.site-footer p { margin: 0; font-size: 0.77rem; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer__links a { display: inline-flex; min-height: 44px; align-items: center; }
.site-footer a { color: var(--white); font-size: 0.77rem; font-weight: 750; text-decoration-color: var(--brand); }

@media (max-width: 1023px) {
  .detail-hero .page-hero__copy { width: min(60%, 590px); max-width: 590px; }
  .workshop-prep__layout { gap: clamp(38px, 6vw, 70px); }
  .service-group { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }
  .service-group__body { grid-template-columns: 34px minmax(0, 1fr); padding: clamp(26px, 4vw, 38px); }
}

@media (min-width: 720px) and (max-width: 1023px) {
  .workshop-principles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workshop-principles article:last-child { grid-column: 1 / -1; }
}

@media (min-width: 720px) and (max-width: 1199px) and (max-aspect-ratio: 4 / 5) {
	body.home .home-main {
		min-height: 0;
		flex: 1 0 auto;
		grid-template-rows: minmax(min-content, 1fr) auto;
	}
	body.home .home-main.has-notice { grid-template-rows: auto minmax(min-content, 1fr) auto; }
  .home-hero {
    min-height: clamp(640px, 68svh, 900px);
  }
  .home-hero__inner { min-height: 100%; }
}

@media (min-width: 720px) and (max-width: 1199px) {
  .home-hero,
  .detail-hero { --hero-title-font-size: clamp(2.55rem, 5vw, 3.5rem); }
  .detail-hero { min-height: clamp(580px, 52vw, 620px); padding-block: clamp(52px, 6vw, 72px); }
  .detail-hero__media img { filter: brightness(1.17) saturate(1.04); }
  .faq-hero .detail-hero__media img { filter: brightness(1.22) saturate(1.05); }
  .request-hero .detail-hero__media img { filter: brightness(1.19) saturate(1.04); }
  .detail-hero--compact { min-height: clamp(460px, 42vw, 500px); }
  .detail-hero .page-hero__copy { width: min(59%, 590px); }
  .workshop-hero { --hero-focus-x: 55%; }
  .about-hero { --hero-focus-x: 61%; min-height: clamp(600px, 52vw, 620px); }
}

@media (min-width: 720px) and (max-width: 1023px) {
  .trust-strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip__location { grid-column: 1 / -1; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.18); border-left: 0; }
}

@media (max-width: 719px) {
  :root { --shell: calc(100% - 32px); --header-height: 60px; scroll-padding-top: 60px; }
  body { font-size: 16px; }
  body.home { font-size: 16px; }
  .brand__logo { width: clamp(150px, 47vw, 184px); }
  .menu-toggle__label { font-size: 0.78rem; }
  h1 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  h2 { font-size: clamp(1.75rem, 8vw, 2.5rem); }

	body.home .home-main {
		height: auto;
		min-height: 0;
		flex: 1 0 auto;
		grid-template-rows: minmax(min-content, 1fr) auto;
	}
	body.home .home-main.has-notice { grid-template-rows: auto minmax(min-content, 1fr) auto; }
  .home-hero {
    --hero-focus-x: 72%;
    --hero-focus-y: 50%;
    --hero-eyebrow-font-size: clamp(0.76rem, 0.2vw + 0.72rem, 0.84rem);
    --hero-title-font-size: clamp(2rem, 8.6vw, 2.5rem);
    --hero-subheading-font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    --hero-copy-font-size: clamp(0.98rem, 4vw, 1.05rem);
    min-height: clamp(560px, 64svh, 640px);
  }
  .home-hero__inner { width: var(--shell); height: 100%; min-height: inherit; align-items: flex-start; padding-block: clamp(275px, 33svh, 350px) 20px; }
  .home-hero__copy { width: 100%; max-width: 620px; }
  .home-hero .eyebrow { margin-bottom: 7px; }
  .home-hero__subline { margin-bottom: 7px; }
  .home-hero__trustline { margin-bottom: 8px; font-size: 0.9rem; }
  .home-hero__services { margin-bottom: 10px; }
  .action-group { display: flex; gap: 8px; }
  .action-group .button { width: auto; min-width: 0; padding-inline: 14px; }
  .trust-strip__inner { display: grid; grid-template-columns: 1fr; }
  .trust-strip__inner > * { min-height: 50px; padding: 7px 0; border-top: 1px solid rgba(255,255,255,0.18); border-left: 0; }
  .trust-strip__inner > *:first-child { padding-left: 0; border-top: 0; }
  .trust-strip strong { font-size: 0.82rem; }
  .trust-strip__inner > * > span,
  .trust-strip__inner > * > small { margin-top: 3px; font-size: 0.68rem; }
  .trust-strip__review-link { margin-top: 3px; font-size: 0.68rem; }
	.notice-bar .shell { padding-block: 16px; }
	.notice-bar__item { grid-template-columns: 1fr; gap: 4px; padding-block: 12px; }

  .page-hero { padding-block: 62px; }
  .page-hero--image { min-height: clamp(430px, 68svh, 560px); align-items: end; padding-block: 76px 54px; background-position: center; }
  .request-hero { background-image: url("../images/service-lift-mobile.jpg"); }
  .legal-hero { background-image: url("../images/workshop-exterior-mobile.jpg"); }
  .not-found-hero { background-image: url("../images/service-tools-mobile.jpg"); }
  .page-hero--image .page-hero__copy { width: 100%; max-width: 650px; }
  .page-hero--image .lede { font-size: var(--hero-copy-font-size, 1rem); line-height: 1.5; }
  .page-hero--compact { min-height: 350px; }
  .detail-hero {
    --hero-eyebrow-font-size: clamp(0.76rem, 0.2vw + 0.72rem, 0.84rem);
    --hero-title-font-size: clamp(2rem, 8.6vw, 2.5rem);
    --hero-subheading-font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    --hero-copy-font-size: clamp(0.98rem, 4vw, 1.05rem);
    min-height: clamp(590px, 72svh, 680px);
    align-items: end;
    padding-block: 76px 38px;
    background-position: var(--hero-focus-x, 50%) var(--hero-focus-y, 50%);
  }
  .detail-hero__inner { align-items: flex-end; }
  .detail-hero .page-hero__copy { width: 100%; max-width: 34rem; }
  .detail-hero h1 { max-width: 16ch; }
  .detail-hero--compact { min-height: clamp(470px, 60svh, 540px); }
  .workshop-hero { --hero-focus-x: 54%; --hero-focus-y: 50%; }
  .about-hero { --hero-focus-x: 61%; --hero-focus-y: 52%; min-height: clamp(650px, 78svh, 730px); }
  .about-hero .hero-note { max-width: 35ch; }
  .split-copy, .heritage, .request-layout { grid-template-columns: 1fr; gap: 38px; }
  .content-section { padding-block: 62px; }
  .detail-page .content-section { padding-block: 54px; }
  .principles-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .principles-grid article > span { margin-bottom: 18px; }
  .workshop-prep__layout { grid-template-columns: 1fr; gap: 38px; }
  .detail-notes { grid-template-columns: 1fr; }
  .detail-notes li { padding: 18px 0; border-top: 1px solid var(--line); border-left: 0; }
  .detail-notes li:first-child { border-top: 0; }
  .workshop-prep__details { padding: 25px 20px; }
  .page-closing__panel { align-items: flex-start; flex-direction: column; gap: 26px; }
  .page-closing .button { width: 100%; }
  .services-directory__intro, .services-prep__layout { grid-template-columns: 1fr; gap: 28px; }
  .services-directory__intro { margin-bottom: 36px; }
  .services-facts { grid-template-columns: 1fr; }
  .services-prep__actions { grid-column: auto; justify-content: stretch; margin-top: 2px; }
  .services-prep__actions .button { width: 100%; }
  .service-group { display: grid; grid-template-columns: 1fr; padding: 0; }
  .service-group:nth-child(even) .service-group__media { order: 0; }
  .service-group__media, .service-group__media img { min-height: 250px; }
  .service-group__media img { aspect-ratio: 3 / 2; }
  .service-group__body { grid-template-columns: 32px minmax(0, 1fr); gap: 14px; padding: 26px 22px 30px; }
  .service-group__number { margin-bottom: 0; }
  .feature-card, .cta-band__inner, .site-footer__inner { align-items: flex-start; flex-direction: column; }
  .feature-card { gap: 25px; }
  .heritage__media { width: min(100%, 560px); margin-inline: auto; box-shadow: 10px 10px 0 var(--green-light); }
  .about-section__layout, .about-section__layout--reverse { grid-template-columns: 1fr; gap: 28px; }
  .about-section__layout--reverse .about-section__media, .about-section__layout--reverse .about-section__copy { order: initial; }
  .about-kristina__media { width: min(100%, 520px); justify-self: start; }
  .about-kristina .button { width: 100%; }
  .about-team__media img, .about-history__media img { aspect-ratio: 3 / 2; }
  .page-crosslink__inner { align-items: flex-start; flex-direction: column; gap: 26px; }
  .page-crosslink .button { width: 100%; }
  .faq-list summary { padding: 19px 55px 19px 18px; }
  .faq-list details > div { padding: 0 18px 20px; }
  .request-aside { position: static; }
  .request-aside { padding: 22px; }
  .request-benefits { gap: 5px; margin-top: 15px; }
  .request-aside .draft-panel { margin-top: 18px; }
  .request-form-wrap { padding: 22px 18px; }
  .field-grid { grid-template-columns: 1fr; }
  .choice-row { align-items: flex-start; flex-direction: column; }
  .conditional-panel { padding: 16px 14px; }
  .not-found-hero .page-hero__copy { width: 100%; }
  .not-found-actions { align-items: stretch; flex-direction: column; }
  .not-found-actions .button, .not-found-phone { width: 100%; }
  .site-footer__inner { min-height: 0; gap: 10px; padding-block: 17px; }
  .site-footer__links { gap: 12px 17px; }
}

@media (max-width: 719px) and (orientation: portrait) {
  .about-hero {
    --hero-focus-x: 50%;
    --hero-focus-y: 50%;
    min-height: clamp(680px, 80svh, 760px);
    align-items: start;
    padding-block: 34px 38px;
  }
  .about-hero .detail-hero__inner { align-items: flex-start; }
}

@media (max-width: 719px) {
  .menu-toggle { display: inline-flex; width: auto; min-width: 72px; justify-content: flex-end; gap: 12px; padding-inline: 0; }
  .menu-toggle__icon { width: 21px; height: 22px; flex: 0 0 21px; align-content: center; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; border-bottom: 2px solid var(--brand); background: var(--anthracite); box-shadow: var(--shadow); }
  .site-nav[data-open] { display: block; }
  .site-nav__home { width: var(--shell); margin-inline: auto; }
  .site-nav__list { width: var(--shell); margin-inline: auto; display: grid; gap: 0; padding-block: 8px 20px; }
  .site-nav a { display: flex; min-height: 44px; align-items: center; padding: 4px 0; color: var(--white); }
  .site-nav .current-menu-item > a,
  .site-nav .is-current,
  .site-nav a[aria-current="page"] { color: var(--brand); }
  .site-nav a::after { display: none; }
}

@media (min-width: 1920px) {
  .home-hero,
  .detail-hero {
    --hero-eyebrow-font-size: clamp(13.12px, calc(8.64px + 0.2333vw), 17.6px);
    --hero-title-font-size: clamp(56px, 3.1vw, 64px);
    --hero-copy-font-size: clamp(18px, 1vw, 21px);
    --hero-cta-font-size: clamp(14.08px, calc(10.88px + 0.1667vw), 17.28px);
  }
  .services-hero { min-height: clamp(620px, calc(200px + 21.875vw), 900px); }
  .request-hero { --hero-focus-y: 36%; }
  body.home {
    --header-height: clamp(72px, calc(40px + 1.6667vw), 104px);
    --shell: min(clamp(1180px, calc(680px + 26.0417vw), 1680px), calc(100vw - 160px));
    font-size: clamp(17px, calc(14px + 0.15625vw), 20px);
  }
  body.home .brand__logo { width: clamp(205px, calc(141px + 3.3333vw), 269px); }
  body.home .site-nav,
  body.home .site-nav__list { gap: clamp(34px, calc(16px + 0.9375vw), 52px); }
  body.home .site-nav a { font-size: clamp(14.4px, calc(10.4px + 0.2083vw), 18.4px); }
  .home-hero__copy { width: clamp(600px, 34vw, 720px); max-width: 720px; }
  .home-hero__trustline { font-size: clamp(16px, 0.9vw, 19px); }
  .home-hero .button,
  .detail-hero .button {
    min-height: clamp(48px, calc(34.56px + 0.7vw), 61.44px);
    padding-inline: clamp(19px, calc(8px + 0.5729vw), 30px);
  }
  body.home .trust-strip__inner { min-height: clamp(64px, calc(43.53px + 1.0667vw), 84.48px); }
  body.home .trust-strip__inner > * { padding-inline: clamp(24px, calc(10px + 0.7292vw), 38px); }
  body.home .trust-strip strong { font-size: clamp(14.4px, calc(10.88px + 0.1833vw), 17.92px); }
  body.home .trust-strip__inner > * > span,
  body.home .trust-strip__inner > * > small { font-size: clamp(12.24px, calc(9.78px + 0.1281vw), 14.7px); }
  body.home .trust-strip__review-link { font-size: clamp(12.24px, calc(9.78px + 0.1281vw), 14.7px); }
	body.home .notice-bar .shell { padding-block: clamp(18px, 1.15vw, 24px); }
  body.home .site-footer__inner { min-height: clamp(66px, calc(51.4px + 0.7604vw), 80.6px); }
  body.home .site-footer p,
  body.home .site-footer a { font-size: clamp(13.09px, calc(11.48px + 0.0839vw), 14.7px); }
  body:has(.detail-page) {
    --header-height: clamp(72px, calc(40px + 1.6667vw), 104px);
    --shell: min(clamp(1180px, calc(680px + 26.0417vw), 1680px), calc(100vw - 160px));
    font-size: clamp(17px, calc(14px + 0.15625vw), 20px);
  }
  body:has(.detail-page) .brand__logo { width: clamp(205px, calc(141px + 3.3333vw), 269px); }
  body:has(.detail-page) .site-nav,
  body:has(.detail-page) .site-nav__list { gap: clamp(34px, calc(16px + 0.9375vw), 52px); }
  body:has(.detail-page) .site-nav a { font-size: clamp(14.4px, calc(10.4px + 0.2083vw), 18.4px); }
  .detail-hero { min-height: clamp(620px, 22vw, 680px); }
  .services-hero { min-height: clamp(620px, calc(200px + 21.875vw), 900px); }
  .detail-hero--compact { min-height: clamp(460px, 16vw, 500px); }
  .detail-hero .page-hero__copy { width: clamp(600px, 31vw, 660px); max-width: 660px; }
  .detail-page .section-kicker { font-size: clamp(13.12px, calc(8.64px + 0.2333vw), 17.6px); }
  .detail-page h2 { font-size: clamp(46px, calc(28px + 0.9375vw), 64px); }
  .detail-page h3 { font-size: clamp(20px, calc(15px + 0.26vw), 25px); }
  .detail-page .button { min-height: clamp(48px, calc(34.56px + 0.7vw), 61.44px); padding-inline: clamp(19px, calc(8px + 0.5729vw), 30px); font-size: clamp(14.08px, calc(10.88px + 0.1667vw), 17.28px); }
  body:has(.detail-page) .site-footer__inner { min-height: clamp(66px, calc(51.4px + 0.7604vw), 80.6px); }
  body:has(.detail-page) .site-footer p,
  body:has(.detail-page) .site-footer a { font-size: clamp(13.09px, calc(11.48px + 0.0839vw), 14.7px); }
}

@media (max-width: 359px) {
  :root { --shell: calc(100% - 28px); }
  .brand__logo { width: 142px; }
  h1, h2, h3 { hyphens: auto; }
  h2 { font-size: clamp(1.5rem, 8vw, 1.75rem); }
  .detail-hero { min-height: 520px; }
  .home-hero,
  .detail-hero { --hero-title-font-size: 2rem; }
  .legal-page .prose { overflow-wrap: anywhere; }
  .home-hero { min-height: 590px; }
  .home-hero__trustline { font-size: 0.88rem; }
  .home-hero .button { padding-inline: 6px; }
}

@media (max-width: 279px) {
  .action-group { display: flex; }
}

@media (orientation: landscape) and (max-width: 1199px) {
	body.home .home-main { height: auto; min-height: 0; grid-template-rows: minmax(min-content, 1fr) auto; }
	body.home .home-main.has-notice { grid-template-rows: auto minmax(min-content, 1fr) auto; }
  .home-hero { min-height: min(640px, calc(100svh - var(--header-height))); }
  .home-hero__inner {
    height: auto;
    min-height: min(640px, calc(100svh - var(--header-height)));
    align-items: center;
    padding-block: 12px;
  }
  .home-hero .eyebrow { margin-bottom: 4px; }
  .home-hero h1 { margin-bottom: 4px; }
  .home-hero__subline { margin-bottom: 5px; }
  .home-hero__trustline { margin-bottom: 6px; }
  .home-hero__services { margin-bottom: 8px; line-height: 1.35; }
  .detail-hero,
  .detail-hero--compact,
  .about-hero {
    min-height: min(620px, calc(100svh - var(--header-height)));
    align-items: center;
    padding-block: 14px;
  }
  .detail-hero__inner,
  .about-hero .detail-hero__inner { align-items: center; }
  .detail-hero .eyebrow { margin-bottom: 5px; }
  .detail-hero h1 { margin-bottom: 8px; }
  .detail-hero .hero-subheading { margin-bottom: 10px; }
  .detail-hero .lede { margin-bottom: 10px; }
}

@media (orientation: landscape) and (max-width: 719px) {
  .home-hero,
  .detail-hero { --hero-title-font-size: clamp(28px, calc(7.68vw - 15.22px), 40px); }
}

@media (orientation: landscape) and (min-width: 720px) and (max-width: 1199px) {
  .about-hero .page-hero__copy { width: min(68%, 590px); }
}

@media (orientation: landscape) and (min-width: 568px) and (max-width: 1199px) {
  .home-hero__copy { width: min(64%, 620px); max-width: 620px; }
}

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

@media print {
  .site-header, .site-footer, .cta-band, .button, .menu-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .site-header + main { margin-top: 0; padding-top: 0; }
  .page-hero, .content-section { padding: 24px 0; }
}
