:root {
  --ink: #102231;
  --ink-deep: #0b1823;
  --muted: #536273;
  --red: #b3121b;
  --red-dark: #8c0d14;
  --line: #dce3e8;
  --light: #f3f6f8;
  --white: #fff;
  --shadow: 0 18px 48px rgba(16, 34, 49, .10);
  --shadow-soft: 0 10px 30px rgba(16, 34, 49, .07);
  --radius: 14px;
  --font: "Aptos", "Segoe UI Variable Text", "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
p { margin: 0 0 1.25rem; color: var(--muted); text-wrap: pretty; }

h1, h2, h3 {
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 4.6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
h3 { font-size: 1.25rem; letter-spacing: -.025em; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #e08a24;
  outline-offset: 5px;
}

.wrap { width: min(1180px, calc(100% - 96px)); margin-inline: auto; }

.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100;
  border-radius: 8px;
  background: white;
  padding: 10px 14px;
}
.skip:focus { top: 10px; }

.topbar {
  background: var(--ink-deep);
  color: #dfe5eb;
  font-size: .8125rem;
  letter-spacing: .01em;
}
.topbar .wrap { display: flex; justify-content: space-between; padding-block: 8px; }

header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 5px 24px rgba(11, 24, 35, .045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header { display: flex; align-items: center; gap: 30px; min-height: 100px; }
.brand { flex: 0 0 174px; margin-right: auto; }
.brand img { width: 174px; }

nav { display: flex; align-items: center; gap: 27px; }
nav a {
  position: relative;
  padding: 15px 0;
  font-size: .875rem;
  font-weight: 680;
  letter-spacing: -.01em;
  white-space: nowrap;
}
nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
nav a:hover, nav a[aria-current] { color: var(--red); }
nav a:hover::after, nav a[aria-current]::after { transform: scaleX(1); transform-origin: left; }

.phone {
  border-left: 1px solid var(--line);
  padding-left: 24px;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -.015em;
  white-space: nowrap;
}
.phone span { margin-right: 5px; color: var(--red); }
.menu, .mobilecall { display: none; }

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: white;
}
.heroimage {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 20, 31, .94), rgba(9, 20, 31, .75) 30%, rgba(9, 20, 31, .12) 72%),
    linear-gradient(0deg, rgba(9, 20, 31, .82), transparent 40%);
}
.herocontent { padding-top: 64px; padding-bottom: 75px; }
.herocontent > * { max-width: 650px; }
.eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: .75rem;
  font-weight: 780;
  letter-spacing: .155em;
  line-height: 1.4;
}
.eyebrow.light { color: #e4e9ee; }
.hero h1 {
  margin-bottom: 23px;
  color: white;
  font-size: clamp(3.25rem, 5.6vw, 5.25rem);
  font-weight: 740;
  line-height: 1.01;
  letter-spacing: -.06em;
}
.hero h1 span { color: #ffb5b8; }
.hero p { color: #e5e8ed; font-size: 1.125rem; line-height: 1.65; }
.actions { display: flex; align-items: center; gap: 28px; margin-top: 28px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 52px;
  border-radius: 9px;
  background: var(--red);
  color: white;
  padding: 14px 21px;
  font-size: .9375rem;
  font-weight: 750;
  line-height: 1.25;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 28px rgba(179, 18, 27, .22);
  transform: translateY(-2px);
}
.herolink { border-bottom: 1px solid #acb5bf; padding-bottom: 3px; font-size: .9375rem; font-weight: 570; }
.herolink:hover { border-color: white; color: white; }
.herobottom {
  position: relative;
  display: flex;
  gap: 45px;
  border-top: 1px solid #ffffff38;
  padding-block: 19px;
  font-size: .6875rem;
  font-weight: 760;
  letter-spacing: .13em;
}
.herobottom span { display: inline-flex; align-items: center; gap: 12px; }
.herobottom span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffb5b8;
  box-shadow: 0 0 0 4px rgba(255, 181, 184, .13);
}

.introstrip {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
  padding-block: 68px;
}
.introstrip h2, .introstrip p { margin: 0; }
.introstrip p { max-width: 560px; font-size: 1.0625rem; }
.proofbar { background: white; padding-bottom: 54px; }
.proofgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}
.proofgrid > div {
  display: grid;
  grid-template-columns: minmax(88px, auto) 1fr;
  align-items: center;
  gap: 20px;
  min-height: 118px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  padding: 27px 34px;
}
.proofgrid > div:last-child { border-right: 0; }
.proofgrid strong {
  color: #ffb5b8;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.proofgrid span { color: #d6e0e8; font-size: .8125rem; font-weight: 650; line-height: 1.4; }
.section { padding-block: 88px; }
.services { background: var(--light); }
.sectionhead { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.sectionhead h2 { margin-bottom: 0; }
.textlink {
  display: inline-block;
  border-bottom: 1px solid var(--red);
  padding-bottom: 3px;
  font-size: .875rem;
  font-weight: 730;
  line-height: 1.4;
}
.textlink:hover { color: var(--red); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  border: 1px solid #e0e6eb;
  border-radius: var(--radius);
  background: white;
  padding: 29px 30px 28px;
  box-shadow: 0 1px 0 rgba(16, 34, 49, .02);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #df6e75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.card:hover { border-color: rgba(179, 18, 27, .45); box-shadow: var(--shadow); transform: translateY(-4px); }
.card:hover::before, .card:focus-visible::before { transform: scaleX(1); }
.cardnum {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  color: #6b7681;
  font-size: .8125rem;
  font-weight: 720;
  letter-spacing: .08em;
}
.cardnum span { color: var(--red); font-size: 1.35rem; letter-spacing: 0; }
.card h3 { margin-bottom: 12px; font-size: 1.32rem; }
.card p { min-height: 52px; font-size: .9375rem; line-height: 1.62; }
.card .textlink { font-size: .875rem; }

.saving { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.saving > div > p { max-width: 470px; font-size: 1.025rem; }
.steps article {
  display: flex;
  gap: 25px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}
.steps article:last-child { margin-bottom: 0; border: 0; padding-bottom: 0; }
.steps article > span {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(179, 18, 27, .18);
  border-radius: 50%;
  background: #fff7f7;
  color: var(--red);
  font-size: .75rem;
  font-weight: 780;
  letter-spacing: .04em;
}
.steps h3 { margin-bottom: 10px; font-size: 1.22rem; }
.steps p { margin: 0; font-size: .9375rem; }

.winterband { background: var(--ink); color: white; padding-block: 76px; }
.wintergrid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 88px; }
.winterband h2 { max-width: 690px; color: white; }
.winterband p { max-width: 650px; color: #c8d3dc; }
.winterband .eyebrow { color: #ffb5b8; }
.winterband .button { margin-top: 10px; }
.winterfacts { display: grid; grid-template-columns: 1fr; border-block: 1px solid rgba(255,255,255,.16); }
.winterfacts div { display: flex; justify-content: space-between; gap: 25px; border-bottom: 1px solid rgba(255,255,255,.13); padding: 17px 0; }
.winterfacts div:last-child { border-bottom: 0; }
.winterfacts strong { color: white; font-size: 1.05rem; }
.winterfacts span { color: #aebbc5; font-size: .875rem; text-align: right; }

.aboutband { background: var(--light); padding-block: 72px; }
.aboutgrid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.photopair { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 16px; }
.photopair img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 14px 38px rgba(16, 34, 49, .10);
}
.photopair img:last-child { margin-top: 58px; }
.photopair img:first-child { transform: rotate(-1.2deg); }
.photopair img:last-child { transform: rotate(1.2deg); }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 66px;
  padding: 19px 0;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { flex-shrink: 0; color: var(--red); font-size: 1.3rem; transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 680px; padding-right: 35px; font-size: .9375rem; }

.cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 88px;
  border-radius: 16px;
  background: linear-gradient(120deg, #a90f18, #c41722);
  color: white;
  padding: 46px 50px;
  box-shadow: 0 22px 55px rgba(140, 13, 20, .17);
}
.cta::after {
  content: "";
  position: absolute;
  top: -95px;
  right: -75px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, .045), 0 0 0 84px rgba(255, 255, 255, .025);
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin-bottom: 12px; color: white; font-size: 2.35rem; }
.cta p { max-width: 650px; margin: 0; color: #ffe8e8; }
.cta .eyebrow { margin-bottom: 14px; color: #f8cbd0; }
.button.white { flex-shrink: 0; background: white; color: var(--red); }
.button.white:hover { background: #fff1f2; }

footer { background: var(--ink-deep); color: white; padding-top: 62px; }
footer p { color: #b8c4cf; font-size: .875rem; }
.footgrid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1.25fr; gap: 42px; padding-bottom: 50px; }
.footgrid h3 { margin-bottom: 20px; color: white; font-size: .9375rem; letter-spacing: -.01em; }
.footgrid a:not(.footbrand) { display: block; margin-bottom: 8px; font-size: .875rem; }
.footgrid a:hover { color: #f4b4b8; }
.footbrand { display: block; margin-bottom: 13px; font-size: 1.55rem; font-weight: 780; letter-spacing: -.06em; }
.footbrand span { color: #f6a6a9; }
.footgrid .footerphone { font-size: 1.5rem !important; font-weight: 750; }
.small { font-size: .8125rem; }
.footbottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff24;
  padding-block: 20px;
  color: #abb9c7;
  font-size: .75rem;
}
.footbottom .arsora { color: #d7e0e8; transition: color .2s ease; }
.footbottom .arsora:hover { color: white; }
.footbottom .arsora strong { color: white; font-weight: 720; letter-spacing: .015em; }
.footbottom .arsora span { display: inline; margin-left: 3px; color: #f6a6a9; }

.pageintro {
  border-bottom: 1px solid #e8edf0;
  background: linear-gradient(135deg, #f4f7f9 0%, #eef3f6 100%);
  padding: 26px 0 64px;
}
.crumb { display: flex; gap: 14px; margin-bottom: 40px; color: var(--muted); font-size: .8125rem; }
.crumb a:hover { color: var(--red); }
.pageintro h1 { max-width: 930px; }
.pageintro p { max-width: 780px; margin-bottom: 0; font-size: 1.1875rem; }
.pagehero {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-deep);
  color: white;
}
.pageheroimage {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pagehero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 18, 28, .94), rgba(7, 18, 28, .76) 42%, rgba(7, 18, 28, .2) 82%);
}
.pageherocontent { padding-block: 27px 58px; }
.pagehero .crumb { color: #d8e1e8; }
.pagehero .crumb a:hover { color: white; }
.pagehero h1 { max-width: 760px; color: white; font-size: clamp(2.7rem, 4.5vw, 4.25rem); }
.pagehero p { max-width: 710px; margin: 0; color: #e0e7ed; font-size: 1.125rem; }
.pagehero .eyebrow { color: #ffb5b8; }
.pagehero-contact .pageheroimage { object-position: center 52%; }
.pagehero-emergency .pageheroimage { object-position: center 48%; }
.jumpnav { display: flex; flex-wrap: wrap; gap: 12px; border-bottom: 1px solid var(--line); padding-block: 28px; }
.jumpnav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .875rem;
  font-weight: 600;
}
.jumpnav a:hover { border-color: #c4ced5; background: var(--light); }
.editorial { padding-top: 15px; padding-bottom: 50px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 74px;
  scroll-margin-top: 30px;
  border-bottom: 1px solid var(--line);
  padding-block: 48px;
}
.service-row h2 { font-size: 2.1rem; }
.service-row > p { margin: 0; }
.note { border-left: 3px solid var(--red); padding-left: 18px; font-size: .9375rem; }
.measure { max-width: 820px; font-size: 1.025rem; }
.twocol { display: grid; grid-template-columns: 1.3fr 1fr; gap: 90px; }
.twocol h3 { margin-top: 32px; }
.sidebox {
  align-self: start;
  border: 1px solid #e3e9ed;
  border-radius: var(--radius);
  background: var(--light);
  padding: 34px;
}
.sidebox h2 { font-size: 1.75rem; }
.sidebox h3 { margin-top: 0; }
.sidebox img { width: 100%; max-width: 330px; margin-top: 30px; border-radius: 10px; }
.sidebox .button { margin-top: 12px; }
.sidebox .small { margin: 14px 0 0; }
ul, ol { padding-left: 22px; color: var(--muted); }
li { margin-bottom: 12px; padding-left: 4px; }
.bigphone {
  display: block;
  margin: 16px 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: -.05em;
}
.bigmail {
  color: var(--red);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  overflow-wrap: anywhere;
}
.contactgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; }
.contactnote { margin-top: 45px; border-top: 1px solid var(--line); padding-top: 25px; }
.contactnote a { text-decoration: underline; }
.addressgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; }
.addressgrid h3 { font-size: 1.6rem; }

@media (min-width: 1500px) {
  .hero { min-height: 660px; }
  .herocontent { padding-top: 78px; padding-bottom: 96px; }
}

@media (max-width: 1100px) {
  .wrap { width: calc(100% - 56px); }
  .header { gap: 20px; }
  .brand { flex-basis: 145px; }
  .brand img { width: 145px; }
  nav { gap: 17px; }
  nav a, .phone { font-size: .875rem; }
  .phone { padding-left: 16px; }
  .saving, .aboutgrid, .twocol, .wintergrid { gap: 50px; }
  .footgrid { gap: 25px; }
  .hero { min-height: 580px; }
}

@media (max-width: 900px) {
  .header { min-height: 85px; flex-wrap: wrap; padding-block: 18px; }
  .menu {
    display: block;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 8px 12px;
    cursor: pointer;
    font-size: .875rem;
    font-weight: 650;
  }
  .menu span { margin-left: 10px; }
  .phone { order: 0; }
  nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }
  nav.open { display: flex; }
  nav a { min-height: 44px; padding: 10px; font-size: 1rem; }
  nav a::after { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .proofgrid > div { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
  .introstrip { gap: 45px; }
  .footgrid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .herobottom { gap: 25px; font-size: .625rem; }
  .faq { grid-template-columns: 1fr 1.3fr; gap: 35px; }
  .cta { gap: 28px; padding: 38px; }
  .cta .button { white-space: nowrap; }
  .contactgrid { gap: 40px; }
  .wintergrid { grid-template-columns: 1fr 1fr; gap: 45px; }
}

@media (max-width: 600px) {
  .wrap { width: calc(100% - 40px); }
  .topbar .wrap { justify-content: center; font-size: .6875rem; }
  .topbar a { display: none; }
  .header { gap: 14px; }
  .brand { flex-basis: 130px; }
  .brand img { width: 130px; }
  .phone { display: none; }
  .mobilecall {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-left: auto;
    border-radius: 8px;
    background: var(--red);
    color: white;
    padding: 8px 13px;
    font-size: .8125rem;
    font-weight: 720;
  }
  .menu { margin-left: 0; }
  .hero { min-height: 610px; }
  .heroimage { object-position: 62% center; }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(9, 20, 31, .91), rgba(9, 20, 31, .50)),
      linear-gradient(0deg, rgba(9, 20, 31, .80), transparent);
  }
  .herocontent { padding-top: 55px; padding-bottom: 45px; }
  .hero h1 { font-size: clamp(3.05rem, 15.8vw, 3.72rem); }
  .hero p { font-size: 1rem; }
  .eyebrow { font-size: .6875rem; letter-spacing: .115em; }
  .hero .eyebrow { font-size: .625rem; }
  .actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .button { min-height: 50px; padding: 13px 18px; font-size: .875rem; }
  .herobottom { flex-wrap: wrap; gap: 14px; padding-block: 15px; font-size: .5625rem; }
  .herobottom span:last-child { display: none; }
  .introstrip { grid-template-columns: 1fr; gap: 26px; padding-block: 46px; }
  .proofgrid { grid-template-columns: 1fr; }
  .proofgrid > div {
    grid-template-columns: 95px 1fr;
    gap: 14px;
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding: 17px 20px;
  }
  .proofgrid > div:last-child { border-bottom: 0; }
  .proofgrid strong { font-size: 2rem; }
  .section { padding-block: 56px; }
  .sectionhead { display: block; margin-bottom: 28px; }
  .sectionhead .textlink { margin-top: 20px; }
  .cards { grid-template-columns: 1fr; gap: 13px; }
  .card { min-height: auto; padding: 24px 25px; }
  .cardnum { margin-bottom: 18px; }
  .card p { min-height: 0; }
  .saving, .aboutgrid, .faq, .twocol, .contactgrid, .addressgrid, .wintergrid { grid-template-columns: 1fr; gap: 38px; }
  .saving { gap: 42px; }
  .winterband { padding-block: 55px; }
  .winterfacts { margin-top: 5px; }
  .aboutband { padding-block: 45px; }
  .photopair { gap: 12px; }
  .photopair img:last-child { margin-top: 25px; }
  .faq summary { font-size: .9375rem; }
  .cta { display: block; width: calc(100% - 40px); margin-bottom: 56px; padding: 30px; }
  .cta h2 { font-size: 2rem; }
  .cta .button { margin-top: 24px; }
  .footgrid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footgrid > div:first-child, .footgrid > div:last-child { grid-column: 1 / -1; }
  .footbottom { display: block; }
  .footbottom > span, .footbottom > a { display: block; margin-top: 4px; }
  .footbottom .footerclaim { display: none; }
  .pageintro { padding-bottom: 45px; }
  .pagehero { min-height: 330px; }
  .pagehero::after { background: linear-gradient(90deg, rgba(7,18,28,.94), rgba(7,18,28,.7)); }
  .pageherocontent { padding-block: 22px 43px; }
  .pagehero h1 { font-size: 2.65rem; }
  .pagehero p { font-size: 1rem; }
  .crumb { margin-bottom: 30px; }
  .pageintro p { font-size: 1.0625rem; }
  .service-row { grid-template-columns: 1fr; gap: 9px; padding-block: 38px; }
  .service-row h2 { font-size: 1.85rem; }
  .sidebox { padding: 27px; }
  .bigphone { font-size: 2.65rem; }
  .bigmail { font-size: 1.15rem; }
  .contactnote { margin-top: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
