:root {
  --pine-950: #082723;
  --pine-900: #0c302c;
  --pine-800: #123b36;
  --pine-700: #1b514a;
  --lake-700: #10566e;
  --lake-600: #176b87;
  --clay-700: #a8522b;
  --clay-600: #c56a3a;
  --cream: #f7f3ea;
  --surface: #f5f7f6;
  --white: #ffffff;
  --ink: #172522;
  --muted: #586762;
  --line: #dfe6e3;
  --shadow-sm: 0 10px 28px rgba(8, 39, 35, 0.09);
  --shadow-md: 0 20px 52px rgba(8, 39, 35, 0.14);
  --container: 1200px;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 7px;
  background: var(--white);
  color: var(--pine-900);
  font-weight: 800;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(23, 107, 135, 0.42); outline-offset: 3px; }

.utility-bar { background: var(--pine-950); color: var(--white); font-size: 0.82rem; font-weight: 650; }
.utility-bar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-bar p { margin: 0; letter-spacing: 0.015em; }
.utility-bar a { display: inline-flex; align-items: center; gap: 18px; text-decoration: none; }
.utility-bar a span { color: rgba(255,255,255,0.7); }
.utility-bar a:hover strong { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  transition: box-shadow 160ms ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; width: 268px; text-decoration: none; }
.brand img { width: 268px; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; }
.desktop-nav a, .nav-dropdown summary { position: relative; color: #263633; font-size: 0.9rem; font-weight: 750; text-decoration: none; }
.desktop-nav a[aria-current="page"], .nav-dropdown summary[aria-current="page"] { color: var(--lake-600); }
.desktop-nav > a::after, .nav-dropdown summary::after { content: ""; position: absolute; right: 0; bottom: -12px; left: 0; height: 3px; background: var(--lake-600); transform: scaleX(0); transition: transform 150ms ease; }
.desktop-nav > a:hover::after, .desktop-nav > a:focus-visible::after, .desktop-nav > a[aria-current="page"]::after, .nav-dropdown summary:hover::after, .nav-dropdown summary:focus-visible::after, .nav-dropdown summary[aria-current="page"]::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown summary { display: inline-flex; align-items: center; gap: 6px; list-style: none; cursor: pointer; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary[aria-current="page"]::after { transform: scaleX(1); }
.nav-dropdown summary::marker { content: ""; }
.nav-dropdown summary::after { pointer-events: none; }
.nav-dropdown summary { min-height: 44px; }
.nav-dropdown summary:active { color: var(--lake-700); }
.nav-dropdown__panel { position: absolute; top: calc(100% + 15px); left: 50%; z-index: 130; display: grid; width: 310px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-md); transform: translateX(-50%); }
.nav-dropdown__panel a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--ink); font-size: 0.84rem; font-weight: 750; }
.nav-dropdown__panel a:hover, .nav-dropdown__panel a:focus-visible { background: var(--surface); color: var(--lake-700); }
.nav-dropdown__panel .nav-dropdown__all { margin-bottom: 6px; background: var(--pine-50); color: var(--pine-900); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 21px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--large { min-height: 55px; padding: 15px 24px; }
.button--header, .button--primary { background: var(--clay-600); color: var(--white); box-shadow: 0 9px 24px rgba(197,106,58,0.25); }
.button--header:hover, .button--primary:hover { background: var(--clay-700); box-shadow: 0 12px 28px rgba(197,106,58,0.3); }
.button svg { width: 19px; height: 19px; fill: currentColor; }
.button--outline { border-color: var(--pine-800); background: transparent; color: var(--pine-800); }
.button--outline:hover { background: var(--pine-800); color: var(--white); }
.button--hero-secondary { border-color: rgba(255,255,255,0.74); background: rgba(8,39,35,0.28); color: var(--white); }
.button--hero-secondary:hover { border-color: var(--white); background: var(--white); color: var(--pine-800); }

.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px 0; border-radius: 4px; background: var(--pine-800); transition: transform 150ms ease, opacity 150ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu-wrap { position: relative; }
.mobile-menu { position: absolute; z-index: 110; top: 8px; right: 0; left: 0; display: grid; gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-md); animation: menu-in 150ms ease both; }
.mobile-menu[hidden] { display: none; }
.mobile-menu > a:not(.button), .mobile-services summary { padding: 12px 14px; border-radius: 8px; color: var(--ink); font-weight: 750; text-decoration: none; }
.mobile-menu > a:not(.button):hover, .mobile-services summary:hover { background: var(--surface); color: var(--lake-700); }
.mobile-services { border-radius: 8px; }
.mobile-services summary { cursor: pointer; list-style-position: inside; }
.mobile-services div { display: grid; gap: 2px; padding: 3px 0 7px 14px; }
.mobile-services a { padding: 9px 12px; border-radius: 8px; color: var(--muted); font-size: 0.88rem; font-weight: 750; text-decoration: none; }
.mobile-services a:hover { background: var(--surface); color: var(--lake-700); }
.button--mobile { margin-top: 6px; background: var(--clay-600); color: var(--white); }
@keyframes menu-in { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: translateY(0); } }

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--pine-950);
  color: var(--white);
}
.hero__media, .hero__media img, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media { margin: 0; }
.hero__media img { object-fit: cover; object-position: 64% 56%; }
.hero__shade { background: linear-gradient(90deg, rgba(5,31,28,0.98) 0%, rgba(5,31,28,0.94) 34%, rgba(5,31,28,0.73) 54%, rgba(5,31,28,0.17) 80%, rgba(5,31,28,0.05) 100%), linear-gradient(0deg, rgba(5,31,28,0.48), transparent 42%); }
.hero__content { position: relative; z-index: 2; max-width: 740px; margin-left: max(24px, calc((100vw - var(--container)) / 2)); padding: 76px 0 154px; }
.eyebrow { margin: 0 0 16px; color: var(--lake-700); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.hero .eyebrow { display: inline-flex; padding: 8px 13px; border: 1px solid rgba(255,255,255,0.25); border-radius: 7px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.92); }
h1, h2, h3 { margin-top: 0; color: var(--pine-900); line-height: 1.12; }
.hero h1 { max-width: 700px; margin-bottom: 0; color: var(--white); font-size: clamp(3.25rem, 5vw, 4.65rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1.01; text-wrap: balance; }
.hero__content > p:not(.eyebrow) { max-width: 675px; margin: 24px 0 0; color: rgba(255,255,255,0.84); font-size: 1.1rem; line-height: 1.72; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 13px 24px; margin: 24px 0 0; padding: 0; list-style: none; }
.hero__proof li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.88); font-size: 0.84rem; font-weight: 700; }
.hero__proof li span { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: #e5f1ee; color: var(--pine-900); font-size: 0.68rem; }
.hero__facts { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; border-top: 1px solid rgba(255,255,255,0.2); background: rgba(5,34,30,0.9); backdrop-filter: blur(10px); }
.hero__facts .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__facts .container > div { display: grid; min-height: 92px; align-content: center; padding: 17px 28px; border-right: 1px solid rgba(255,255,255,0.16); }
.hero__facts .container > div:first-child { border-left: 1px solid rgba(255,255,255,0.16); }
.hero__facts strong { color: var(--white); font-size: 1.1rem; font-weight: 800; }
.hero__facts span { color: rgba(255,255,255,0.64); font-size: 0.77rem; }

.reputation-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.reputation-strip__inner { min-height: 126px; padding-block: 22px; }
.reputation-strip__logos { display: grid; grid-template-columns: 1.25fr 0.9fr 0.55fr 1.1fr; align-items: center; gap: clamp(24px, 4vw, 60px); }
.reputation-strip__logos img { width: auto; max-width: 100%; max-height: 56px; margin-inline: auto; object-fit: contain; }
.reputation-strip__logos img:nth-child(3) { max-height: 76px; }
.reputation-strip__logos img:nth-child(4) { max-height: 62px; }

.section { padding: clamp(78px, 8vw, 116px) 0; }
.section--soft { background: var(--surface); }
.section--cream { background: var(--cream); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2, .split-copy h2, .service-area h2, .faq-intro h2 { margin-bottom: 0; font-size: clamp(2.25rem, 4vw, 3.45rem); font-weight: 800; letter-spacing: -0.04em; }
.section-heading > p:last-child, .split-copy > p, .service-area__intro > p, .faq-intro > p { margin: 18px 0 0; color: var(--muted); font-size: 1.02rem; }
.content-layout { display: grid; grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr); gap: clamp(46px, 7vw, 96px); align-items: start; }
.content-layout .section-heading { margin: 0; }
.content-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 54px); }
.content-columns p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.split { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(48px, 7vw, 92px); }
.split--reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; margin: 0; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow-md); }
.split-media::after { content: ""; position: absolute; z-index: -1; right: -16px; bottom: -16px; width: 55%; height: 52%; background: var(--clay-600); }
.split-copy p + p { margin-top: 15px; }
.split-copy .button { margin-top: 27px; }
.detail-list { display: grid; gap: 13px; margin: 27px 0 0; padding: 0; list-style: none; }
.detail-list li { display: flex; gap: 11px; color: #2d3c38; }
.detail-list li span { display: grid; flex: 0 0 23px; width: 23px; height: 23px; margin-top: 2px; place-items: center; border-radius: 50%; background: #dbeae6; color: var(--pine-800); font-size: 0.72rem; font-weight: 900; }

.urgent-bar { background: var(--clay-600); color: var(--white); }
.urgent-bar__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 36px; min-height: 128px; padding-block: 24px; }
.urgent-bar h2 { margin: 0; color: var(--white); font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
.urgent-bar p { margin: 6px 0 0; color: rgba(255,255,255,0.82); }
.button--white { background: var(--white); color: var(--pine-900); box-shadow: 0 10px 24px rgba(78,34,14,0.18); }

.services-intro { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 36px; margin-bottom: 38px; }
.services-intro .section-heading { margin-bottom: 0; }
.phase-note { max-width: 300px; margin: 0; color: var(--muted); font-size: 0.86rem; text-align: right; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.service-card { position: relative; display: grid; min-height: 268px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none; transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease; }
.service-card:hover { border-color: rgba(23,107,135,0.45); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.service-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.service-card__number { color: var(--lake-600); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.12em; }
.service-card__arrow { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: var(--surface); color: var(--lake-700); font-size: 1.15rem; transition: background 150ms ease, color 150ms ease, transform 150ms ease; }
.service-card:hover .service-card__arrow { background: var(--lake-600); color: var(--white); transform: translateX(3px); }
.service-card h3 { margin: 23px 0 11px; font-size: 1.45rem; font-weight: 800; letter-spacing: -0.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.72; }
.service-card__link { align-self: end; margin-top: 22px; color: var(--lake-700); font-size: 0.82rem; font-weight: 850; }
.service-grid--complete .service-card { align-content: start; min-height: 282px; }
.service-grid--complete .service-card h3 { margin: 0 0 13px; }
.service-grid--complete a.service-card::after { content: "→"; align-self: end; justify-self: end; margin-top: 24px; color: var(--lake-700); font-size: 1.2rem; font-weight: 850; }
.service-card--static { cursor: default; }


.media-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 30px; }
.media-card { position: relative; min-height: 330px; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--pine-900); }
.media-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.media-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(5,31,28,0.88)); }
.media-card figcaption { position: absolute; z-index: 1; right: 26px; bottom: 23px; left: 26px; color: var(--white); }
.media-card figcaption strong { display: block; font-size: 1.25rem; }
.media-card figcaption span { display: block; margin-top: 3px; color: rgba(255,255,255,0.72); font-size: 0.84rem; }

.service-groups { display: grid; gap: 68px; }
.service-group__header { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 48px; align-items: start; margin-bottom: 27px; }
.service-group__header h2 { margin: 0; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -0.035em; }
.service-group__header p { margin: 4px 0 0; color: var(--muted); }
.service-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-list article { min-height: 224px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.service-list h3 { margin: 0 0 10px; font-size: 1.13rem; font-weight: 800; }
.service-list p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.68; }

/* Reusable service-page system */
.service-page main { background: var(--white); }
.service-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 clamp(72px, 8vw, 108px);
  background:
    radial-gradient(circle at 88% 12%, rgba(23,107,135,0.24), transparent 30%),
    linear-gradient(135deg, var(--pine-950) 0%, var(--pine-900) 58%, #0b3c3d 100%);
  color: var(--white);
}
.service-hero::after {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -28vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(255,255,255,0.025), 0 0 0 18vw rgba(255,255,255,0.018);
  pointer-events: none;
}
.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(38px, 5vw, 66px);
  color: rgba(255,255,255,0.62);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.breadcrumbs a { color: rgba(255,255,255,0.82); text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.service-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  gap: clamp(44px, 6.5vw, 90px);
  align-items: center;
}
.service-hero__copy .eyebrow {
  display: inline-flex;
  margin-bottom: 19px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  color: #b8d9d2;
}
.service-hero__copy h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.55rem);
  font-weight: 820;
  letter-spacing: -0.052em;
  line-height: 1.01;
  text-wrap: balance;
}
.service-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.79);
  font-size: 1.04rem;
  line-height: 1.78;
}
.service-hero__copy .hero__actions { margin-top: 31px; }
.button--service-outline { border-color: rgba(255,255,255,0.62); background: rgba(255,255,255,0.035); color: var(--white); }
.button--service-outline:hover { border-color: var(--white); background: var(--white); color: var(--pine-900); }
.service-hero__media {
  position: relative;
  justify-self: end;
  width: min(100%, 530px);
  margin: 0;
  padding: 12px 12px 0;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 15px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 28px 70px rgba(1,18,16,0.34);
}
.service-hero__media picture { display: block; overflow: hidden; aspect-ratio: 3 / 2; border-radius: 10px; }
.service-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.service-hero__media figcaption {
  display: flex;
  align-items: center;
  min-height: 49px;
  padding: 7px 5px;
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.service-hero__media figcaption::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: #72c7b3;
  box-shadow: 0 0 0 4px rgba(114,199,179,0.12);
}
.reading-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}
.service-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(50px, 7vw, 92px);
  align-items: center;
}
.service-intro-copy .section-heading { margin-bottom: 31px; }
.service-inline-media {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  margin: 0;
}
.service-inline-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -14px;
  bottom: -14px;
  width: 48%;
  height: 46%;
  border-radius: 8px;
  background: var(--clay-600);
}
.service-inline-media picture { display: block; overflow: hidden; aspect-ratio: 4 / 3; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-md); }
.service-inline-media img { width: 100%; height: 100%; object-fit: cover; }
.reading-layout .section-heading { margin: 0; }
.reading-copy {
  position: relative;
  padding-left: clamp(25px, 3.2vw, 44px);
  border-left: 3px solid var(--clay-600);
}
.reading-copy p { margin: 0; color: var(--muted); font-size: 1.03rem; line-height: 1.85; }
.reading-copy p + p { margin-top: 18px; }
.service-proof-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}
.service-proof-layout .section-heading { margin: 0; }
.service-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.service-proof-list li {
  position: relative;
  min-height: 72px;
  padding: 22px 10px 19px 40px;
  border-bottom: 1px solid var(--line);
  color: #263a36;
  font-weight: 760;
  line-height: 1.45;
}
.service-proof-list li::before {
  content: "✓";
  position: absolute;
  top: 22px;
  left: 2px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #dcece8;
  color: var(--pine-800);
  font-size: 0.74rem;
  font-weight: 900;
}
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
}
.emergency-grid article {
  position: relative;
  grid-column: span 2;
  min-height: 250px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(8,39,35,0.02);
}
.emergency-grid article:nth-child(4) { grid-column: 2 / span 2; }
.emergency-grid article:nth-child(5) { grid-column: 4 / span 2; }
.section--balanced-card-grid .emergency-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section--balanced-card-grid .emergency-grid article,
.section--balanced-card-grid .emergency-grid article:nth-child(4),
.section--balanced-card-grid .emergency-grid article:nth-child(5) {
  grid-column: auto;
}
.emergency-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--lake-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.emergency-grid article:hover { border-color: rgba(23,107,135,0.34); box-shadow: var(--shadow-sm); }
.emergency-grid article:hover::after { transform: scaleX(1); }
.emergency-grid article > span {
  display: block;
  margin-bottom: 30px;
  color: var(--clay-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.emergency-grid h3 { margin: 0 0 11px; font-size: 1.3rem; font-weight: 820; letter-spacing: -0.024em; }
.emergency-grid p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.72; }
.safety-section { background: var(--cream); }
.safety-section .section-heading { max-width: 670px; }
.safety-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 86px);
  align-items: start;
}
.service-inline-media--leak { position: sticky; top: 126px; justify-self: start; width: min(100%, 470px); }
.service-inline-media--leak::after { right: auto; left: -14px; background: var(--lake-600); }
.safety-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(18,59,54,0.18); }
.safety-grid article {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  padding: 31px 30px 32px 0;
  border-bottom: 1px solid rgba(18,59,54,0.18);
}
.safety-grid article:nth-child(odd) { padding-right: 42px; border-right: 1px solid rgba(18,59,54,0.18); }
.safety-grid article:nth-child(even) { padding-left: 42px; }
.safety-grid article > span { color: var(--clay-600); font-size: 1.8rem; font-weight: 300; letter-spacing: -0.04em; line-height: 1; }
.safety-grid h3 { margin: 0 0 10px; font-size: 1.18rem; font-weight: 820; }
.safety-grid p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.72; }
.safety-layout .safety-grid { grid-template-columns: 1fr; }
.safety-layout .safety-grid article,
.safety-layout .safety-grid article:nth-child(odd),
.safety-layout .safety-grid article:nth-child(even) {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 25px 0;
  border-right: 0;
}
.process-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid--four li { min-height: 270px; }
.contact-band--form { position: relative; overflow: hidden; }
.contact-band--form::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -210px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,0.035), 0 0 0 180px rgba(255,255,255,0.02);
}
.contact-band--form .container { position: relative; z-index: 1; }

.work-showcase { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 18px; margin-top: 44px; }
.work-showcase figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--pine-900); }
.work-showcase img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.work-showcase figure:last-child img { object-position: center; }
.work-showcase figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 13px 15px; border-radius: 8px; background: rgba(5,31,28,0.86); color: var(--white); font-size: 0.82rem; font-weight: 750; backdrop-filter: blur(8px); }

.process { background: var(--pine-950); color: var(--white); }
.process .eyebrow { color: #9bcac0; }
.process .section-heading h2 { color: var(--white); }
.process .section-heading > p:last-child { color: rgba(255,255,255,0.7); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; }
.process-grid li { position: relative; min-height: 230px; padding: 26px 24px; border-top: 1px solid rgba(255,255,255,0.18); border-right: 1px solid rgba(255,255,255,0.14); }
.process-grid li:first-child { border-left: 1px solid rgba(255,255,255,0.14); }
.process-grid span { display: block; margin-bottom: 35px; color: #89c0b5; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.12em; }
.process-grid h3 { margin: 0 0 9px; color: var(--white); font-size: 1.08rem; }
.process-grid p { margin: 0; color: rgba(255,255,255,0.65); font-size: 0.86rem; line-height: 1.62; }

.why-panel { display: grid; grid-template-columns: 1fr 0.95fr; gap: clamp(44px, 7vw, 90px); align-items: center; }
.why-copy h2 { margin-bottom: 0; font-size: clamp(2.35rem, 4vw, 3.55rem); font-weight: 800; letter-spacing: -0.045em; }
.why-copy > p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); }
.why-list { display: grid; gap: 0; margin: 28px 0 0; padding: 0; list-style: none; }
.why-list li { position: relative; padding: 15px 0 15px 34px; border-bottom: 1px solid var(--line); color: #2d3c38; }
.why-list li:first-child { border-top: 1px solid var(--line); }
.why-list li::before { content: "✓"; position: absolute; top: 16px; left: 2px; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: #dbeae6; color: var(--pine-800); font-size: 0.72rem; font-weight: 900; }
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.proof-grid div { min-height: 102px; padding: 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.proof-grid strong { display: block; color: var(--pine-900); font-size: 0.94rem; }
.proof-grid span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.78rem; }
.why-media { display: grid; grid-template-columns: 1fr 0.64fr; gap: 14px; align-items: stretch; }
.why-media picture { display: block; height: 100%; }
.why-media img { width: 100%; height: 100%; min-height: 430px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow-md); }
.why-media img:last-child { min-height: 0; object-position: center; }

.service-area { background: var(--cream); }
.service-area__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin: 0; padding: 0; list-style: none; }
.area-list li { padding: 14px 16px; border: 1px solid rgba(18,59,54,0.16); border-radius: 8px; background: rgba(255,255,255,0.62); color: var(--pine-900); font-weight: 750; }
.address-card { margin-top: 25px; padding: 22px; border-left: 4px solid var(--clay-600); background: var(--white); }
.address-card strong { display: block; color: var(--pine-900); }
.address-card a { display: inline-block; margin-top: 5px; color: var(--lake-700); font-weight: 750; text-decoration: none; }

.faq-grid { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(50px, 8vw, 105px); }
.faq-intro { position: sticky; top: 126px; align-self: start; }
.faq-intro .button { margin-top: 24px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 23px 0; color: var(--pine-900); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; display: grid; flex: 0 0 30px; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--surface); color: var(--lake-700); font-size: 1.15rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -4px 54px 23px 0; color: var(--muted); font-size: 0.94rem; }

.contact-band { background: var(--lake-700); color: var(--white); }
.contact-band__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; min-height: 222px; padding-block: 40px; }
.contact-band h2 { margin: 0; color: var(--white); font-size: clamp(2rem, 3.7vw, 3.25rem); letter-spacing: -0.04em; }
.contact-band p { margin: 10px 0 0; color: rgba(255,255,255,0.76); }
.contact-band__actions { display: flex; flex-wrap: wrap; gap: 11px; }
.contact-band .button--outline { border-color: rgba(255,255,255,0.72); color: var(--white); }
.contact-band .button--outline:hover { background: var(--white); color: var(--lake-700); }
.contact-form-layout { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr); gap: clamp(44px, 7vw, 88px); align-items: center; padding-block: clamp(64px, 8vw, 96px); }
.contact-band__copy h2 { margin: 0; color: var(--white); font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -0.04em; }
.contact-band__copy p { margin: 18px 0 0; color: rgba(255,255,255,0.78); }
.contact-band__copy .button { margin-top: 28px; }
.service-form { padding: clamp(24px, 4vw, 38px); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span { color: var(--pine-900); font-size: 0.8rem; font-weight: 800; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cbd7d3; border-radius: 8px; background: var(--white); color: var(--ink); font: inherit; }
.form-grid textarea { min-height: 112px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--lake-600); outline: 3px solid rgba(23,107,135,0.14); }
.form-grid__wide { grid-column: 1 / -1; }
.service-form > .button { width: 100%; margin-top: 18px; border: 0; cursor: pointer; }

.info-hero { padding: clamp(46px, 6vw, 74px) 0; background: linear-gradient(135deg, var(--pine-950), var(--pine-800)); color: var(--white); }
.info-hero--simple { padding-bottom: clamp(42px, 6vw, 68px); }
.info-hero__grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr); gap: clamp(36px, 5vw, 62px); align-items: center; min-height: 390px; }
.info-hero h1 { max-width: 760px; margin: 0 0 18px; color: var(--white); font-size: clamp(2.65rem, 4.7vw, 4.35rem); line-height: 0.98; }
.info-hero p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,0.8); font-size: clamp(1rem, 1.3vw, 1.1rem); line-height: 1.75; }
.info-hero__media { display: block; overflow: hidden; justify-self: end; width: min(100%, 430px); margin: 0; padding: 10px; border: 1px solid rgba(255,255,255,0.17); border-radius: 15px; background: rgba(255,255,255,0.08); box-shadow: 0 24px 58px rgba(1,18,16,0.3); }
.info-hero__media--compact { width: min(100%, 430px); }
.info-hero__media img { display: block; width: 100%; aspect-ratio: 3 / 2; border-radius: 10px; object-fit: cover; }
.breadcrumbs--light { margin-bottom: 30px; color: rgba(255,255,255,0.68); }
.breadcrumbs--light a { color: rgba(255,255,255,0.76); }
.breadcrumbs--light a:hover { color: var(--white); }
.info-content { max-width: 850px; }
.info-content h2 { margin-top: 34px; }
.info-content h2:first-child { margin-top: 0; }
.info-content p, .info-content li { color: var(--muted); line-height: 1.8; }
.info-content a { color: var(--lake-700); font-weight: 750; }
.service-hub-section .section-heading { max-width: 760px; margin-bottom: 32px; }
.service-hub-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-hub-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-hub-grid article { display: grid; align-content: start; min-height: 220px; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-sm); }
.service-hub-grid article > span { width: fit-content; margin-bottom: 17px; color: var(--clay-600); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; }
.service-hub-grid h3 { margin: 0 0 9px; font-family: Inter, system-ui, sans-serif; font-size: 1.05rem; }
.service-hub-grid h3 a { color: var(--pine-900); text-decoration: none; }
.service-hub-grid h3 a:hover { color: var(--lake-700); text-decoration: underline; text-underline-offset: 3px; }
.service-hub-grid p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.65; }
.service-hub-grid .text-link { align-self: end; width: fit-content; margin-top: 18px; color: var(--lake-700); font-size: 0.86rem; font-weight: 850; text-decoration: none; }
.service-hub-grid .text-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-card { align-self: stretch; padding: clamp(26px, 4vw, 38px); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; background: rgba(255,255,255,0.08); }
.contact-card h2 { margin-top: 0; color: var(--white); font-size: 1.45rem; }
.contact-card p { margin: 0 0 16px; }
.contact-card a { color: var(--white); font-weight: 800; }
.map-frame--wide { max-width: none; aspect-ratio: 16 / 6; border-color: var(--line); background: var(--surface); }

.site-footer { background: var(--pine-950); color: rgba(255,255,255,0.78); }
.footer-grid { display: grid; grid-template-columns: minmax(230px, 1.05fr) minmax(135px, 0.55fr) minmax(210px, 0.95fr) minmax(280px, 1.15fr); gap: clamp(34px, 5vw, 68px); padding: 70px 0 62px; }
.footer-grid h2 { margin: 0 0 19px; color: var(--white); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-brand img { width: 235px; height: auto; }
.footer-brand p { max-width: 320px; margin: 20px 0; color: rgba(255,255,255,0.64); font-size: 0.88rem; }
.facebook-link { display: inline-flex; align-items: center; gap: 10px; font-size: 0.86rem; font-weight: 800; text-decoration: none; }
.facebook-link > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--white); color: var(--pine-900); font-family: Arial, sans-serif; font-weight: 900; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links h2 { margin-bottom: 10px; }
.footer-links a, .footer-contact a, .footer-map > a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer-links a { width: fit-content; font-size: 0.86rem; }
.footer-links a:hover, .footer-contact a:hover, .footer-map > a:hover, .facebook-link:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-contact dl { display: grid; gap: 15px; margin: 0; }
.footer-contact dl > div { display: grid; }
.footer-contact dt { color: var(--white); font-size: 0.69rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-contact dd { margin: 3px 0 0; color: rgba(255,255,255,0.66); font-size: 0.82rem; line-height: 1.45; }
.map-frame { overflow: hidden; aspect-ratio: 16 / 10; border: 4px solid rgba(255,255,255,0.11); border-radius: 10px; background: rgba(255,255,255,0.08); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.footer-map > a { display: inline-flex; gap: 6px; margin-top: 9px; font-size: 0.76rem; font-weight: 800; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.11); }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 66px; }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,0.54); font-size: 0.75rem; }
.footer-bottom a { text-decoration: none; }
.footer-bottom .container > div { display: flex; gap: 18px; }
.mobile-call-bar { display: none; }

.not-found { min-height: 100vh; display: grid; place-items: center; padding: 48px 24px; background: var(--surface); }
.not-found__card { width: min(100%, 680px); padding: clamp(32px, 6vw, 64px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-md); }
.not-found__card > img { width: min(100%, 330px); height: auto; margin-bottom: 38px; }
.not-found__card h1 { margin-bottom: 16px; font-size: clamp(2.4rem, 6vw, 4.25rem); letter-spacing: -0.045em; }
.not-found__card > p:not(.eyebrow) { max-width: 540px; margin: 0; color: var(--muted); }
.not-found__card .hero-actions { margin-top: 30px; }
.not-found__card .button--secondary { border-color: var(--pine-800); color: var(--pine-800); }
.not-found__card .button--secondary:hover { background: var(--pine-800); color: var(--white); }

.defer-section { content-visibility: visible; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a, .nav-dropdown summary::before { font-size: 0.82rem; }
  .brand, .brand img { width: 232px; }
  .button--header { padding-inline: 16px; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid li:nth-child(4) { border-left: 1px solid rgba(255,255,255,0.14); }
  .service-hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr); gap: 44px; }
  .service-hero__copy h1 { font-size: clamp(2.75rem, 4.7vw, 3.7rem); }
  .emergency-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section--balanced-card-grid .emergency-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .emergency-grid article, .emergency-grid article:nth-child(4), .emergency-grid article:nth-child(5) { grid-column: auto; }
  .emergency-grid article:last-child { grid-column: 1 / -1; min-height: 0; }
  .section--balanced-card-grid .emergency-grid article:last-child { grid-column: auto; }
  .process-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid--four li:nth-child(3) { border-left: 1px solid rgba(255,255,255,0.14); }
  .service-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 0.7fr 1fr; }
  .footer-map { grid-column: 1 / -1; }
  .map-frame { max-width: 660px; aspect-ratio: 2.2 / 1; }
}

@media (max-width: 860px) {
  .desktop-nav, .button--header { display: none; }
  .menu-toggle { display: block; }
  .header-inner { min-height: 72px; }
  .info-hero__grid { grid-template-columns: 1fr; }
  .info-hero__media { max-width: 620px; }
  .service-hub-grid, .service-hub-grid--two { grid-template-columns: 1fr; }
  .map-frame--wide { aspect-ratio: 16 / 9; }
  .hero { min-height: 680px; }
  .hero__media img { object-position: 62% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(5,31,28,0.96), rgba(5,31,28,0.8) 72%, rgba(5,31,28,0.56)); }
  .hero__content { max-width: 690px; margin-inline: auto; padding-top: 68px; }
  .split, .split--reverse, .why-panel, .service-area__grid, .faq-grid, .content-layout, .contact-form-layout { grid-template-columns: 1fr; }
  .content-columns { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media { max-width: 700px; }
  .services-intro, .service-group__header { grid-template-columns: 1fr; }
  .phase-note { max-width: 620px; text-align: left; }
  .why-media { max-width: 700px; }
  .faq-intro { position: static; }
  .contact-band__inner { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-layout { gap: 36px; }
  .service-hero { padding-top: 22px; }
  .breadcrumbs { margin-bottom: 38px; }
  .service-hero__grid, .reading-layout, .service-intro-layout, .service-proof-layout, .safety-layout { grid-template-columns: 1fr; }
  .service-hero__grid { gap: 44px; }
  .service-hero__copy { max-width: 760px; }
  .service-hero__media { justify-self: start; width: min(100%, 560px); }
  .reading-layout, .service-proof-layout { gap: 30px; }
  .reading-copy { padding-left: 28px; }
  .service-intro-layout, .safety-layout { gap: 40px; }
  .service-inline-media { justify-self: start; width: min(100%, 540px); }
  .service-inline-media--leak { position: relative; top: auto; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .utility-bar__inner { justify-content: center; }
  .utility-bar p, .utility-bar a span { display: none; }
  .header-inner { min-height: 70px; }
  .brand, .brand img { width: 212px; }
  .hero { min-height: 760px; }
  .hero__media img { object-position: 65% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(5,31,28,0.94), rgba(5,31,28,0.8)); }
  .hero__content { padding: 54px 0 252px; }
  .hero .eyebrow { font-size: 0.67rem; }
  .hero h1 { font-size: clamp(2.62rem, 12.2vw, 3.7rem); }
  .hero__content > p:not(.eyebrow) { font-size: 1rem; line-height: 1.62; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: grid; gap: 9px; }
  .hero__facts .container { grid-template-columns: 1fr; padding-block: 5px; }
  .hero__facts .container > div, .hero__facts .container > div:first-child { min-height: 54px; padding: 7px 10px; border: 0; border-bottom: 1px solid rgba(255,255,255,0.12); text-align: center; }
  .hero__facts .container > div:last-child { border-bottom: 0; }
  .hero__facts strong { font-size: 0.95rem; }
  .hero__facts span { font-size: 0.7rem; }
  .reputation-strip__inner { min-height: 0; padding-block: 27px; }
  .reputation-strip__logos { grid-template-columns: repeat(2, 1fr); gap: 22px 28px; }
  .reputation-strip__logos img { max-height: 48px; }
  .reputation-strip__logos img:nth-child(3) { max-height: 66px; }
  .reputation-strip__logos img:nth-child(4) { max-height: 54px; }
  .section { padding: 72px 0; }
  .service-grid, .media-pair, .service-list, .work-showcase, .proof-grid, .area-list, .form-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 25px; }
  .service-grid--complete .service-card { min-height: 0; }
  .media-card, .media-card img { min-height: 280px; }
  .service-group__header { gap: 13px; }
  .service-list article { min-height: 0; padding: 23px; }
  .work-showcase img { min-height: 300px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li:first-child, .process-grid li:nth-child(4) { min-height: 0; padding: 22px 4px; border-right: 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .process-grid span { margin-bottom: 10px; }
  .why-media { grid-template-columns: 1fr; }
  .why-media img { min-height: 330px; }
  .why-media img:last-child { max-height: 360px; }
  .faq-list details p { margin-right: 0; }
  .contact-band__actions { flex-direction: column; }
  .contact-band__actions .button { width: 100%; }
  .contact-form-layout { padding-block: 64px; }
  .contact-band__copy .button { width: 100%; }
  .service-form { padding: 22px 18px; }
  .form-grid__wide { grid-column: auto; }
  .info-hero { padding: 48px 0 58px; }
  .info-hero h1 { font-size: clamp(2.35rem, 11vw, 3.45rem); }
  .info-hero p:not(.eyebrow) { font-size: 1rem; line-height: 1.68; }
  .contact-card { padding: 24px 18px; }
  .service-hub-grid article { padding: 21px; }
  .service-hero { padding: 18px 0 67px; }
  .breadcrumbs { gap: 6px; margin-bottom: 31px; font-size: 0.7rem; }
  .service-hero__copy h1 { font-size: clamp(2.55rem, 12vw, 3.45rem); }
  .service-hero__copy > p:not(.eyebrow) { font-size: 0.98rem; line-height: 1.7; }
  .service-hero__copy .hero__actions { flex-direction: column; }
  .service-hero__copy .hero__actions .button { width: 100%; }
  .service-hero__media { padding: 8px 8px 0; }
  .service-hero__media figcaption { min-height: 44px; font-size: 0.68rem; }
  .reading-copy { padding-left: 21px; }
  .reading-copy p { font-size: 0.98rem; line-height: 1.78; }
  .service-proof-list, .emergency-grid, .safety-grid, .process-grid--four { grid-template-columns: 1fr; }
  .section--balanced-card-grid .emergency-grid { grid-template-columns: 1fr; }
  .service-proof-list { gap: 0; }
  .emergency-grid article, .emergency-grid article:last-child { grid-column: auto; min-height: 0; padding: 25px; }
  .emergency-grid article > span { margin-bottom: 20px; }
  .safety-grid article, .safety-grid article:nth-child(odd), .safety-grid article:nth-child(even) { grid-template-columns: 49px minmax(0, 1fr); gap: 13px; padding: 25px 0; border-right: 0; }
  .safety-grid article > span { font-size: 1.45rem; }
  .safety-layout .safety-grid article,
  .safety-layout .safety-grid article:nth-child(odd),
  .safety-layout .safety-grid article:nth-child(even) { grid-template-columns: 49px minmax(0, 1fr); gap: 13px; padding: 25px 0; }
  .process-grid--four li:nth-child(3) { border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; padding: 58px 0 46px; }
  .footer-map { grid-column: auto; }
  .map-frame { max-width: none; aspect-ratio: 16 / 10; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; min-height: 78px; padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .footer-bottom .container > div { flex-wrap: wrap; gap: 12px; }
  .mobile-call-bar { position: fixed; z-index: 150; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 12px; display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 58px; padding: 9px 18px; border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; background: var(--clay-600); color: var(--white); box-shadow: 0 15px 34px rgba(63,37,23,0.32); font-weight: 850; line-height: 1.15; text-decoration: none; transition: opacity 150ms ease, transform 150ms ease; }
  .mobile-call-bar.is-hidden { opacity: 0; pointer-events: none; transform: translateY(120%); }
  .mobile-call-bar svg { width: 22px; height: 22px; fill: currentColor; }
  .mobile-call-bar span { display: grid; }
  .mobile-call-bar small { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.04em; opacity: 0.82; text-transform: uppercase; }
}

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