:root {
  --navy: #062C4F;
  --deep-navy: #031E35;
  --deep-blue: #064B7A;
  --carlson-blue: #087DB5;
  --ice-blue: #DDF5FC;
  --pale-ice: #F4FBFD;
  --frost-white: #F9FDFE;
  --white: #FFFFFF;
  --orange: #F28C28;
  --text-dark: #073451;
  --glass-white: rgba(255,255,255,.78);
  --glass-border: rgba(255,255,255,.60);
  --ice-border: rgba(154,220,242,.65);
  --container: 1240px;
  --container-wide: 1440px;
  --page-pad: clamp(1rem, 3vw, 2.75rem);
  --section-y: clamp(5rem, 9vw, 9rem);
  --section-y-tight: clamp(3.5rem, 6vw, 6rem);
  --gap-xs: clamp(.45rem, .8vw, .7rem);
  --gap-sm: clamp(.75rem, 1.2vw, 1rem);
  --gap-md: clamp(1rem, 2vw, 1.75rem);
  --gap-lg: clamp(1.5rem, 3vw, 3rem);
  --gap-xl: clamp(2.5rem, 6vw, 6rem);
  --font-body: Arial, Helvetica, sans-serif;
  --font-heading: Impact, "Arial Black", "Arial Narrow", Arial, Helvetica, sans-serif;
  --radius-sm: .8rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --shadow-ice: 0 24px 70px rgba(6, 44, 79, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.13rem);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: .8rem 1rem;
  background: var(--orange);
  color: var(--deep-navy);
  font-weight: 900;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.container { width: min(100% - (var(--page-pad) * 2), var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - (var(--page-pad) * 2), var(--container-wide)); margin-inline: auto; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; padding: clamp(.6rem, 1.2vw, 1rem) var(--page-pad) 0; pointer-events: none; }
.nav-shell { width: min(100%, var(--container-wide)); margin-inline: auto; pointer-events: auto; }
.site-nav {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 1.8vw, 1.5rem);
  padding: .48rem .68rem .48rem .78rem;
  border: 1px solid rgba(154, 220, 242, .64);
  border-radius: 1.35rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.80), rgba(249,253,254,.56)),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(221,245,252,.20));
  box-shadow: 0 18px 58px rgba(6,44,79,.10), inset 0 1px 0 rgba(255,255,255,.94);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: min-height .22s ease, padding .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.site-header.is-scrolled .site-nav { min-height: 64px; padding-block: .36rem; border-color: rgba(154,220,242,.82); background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(249,253,254,.82)), linear-gradient(180deg, rgba(255,255,255,.9), rgba(221,245,252,.26)); box-shadow: 0 14px 42px rgba(6,44,79,.18), inset 0 1px 0 rgba(255,255,255,.98); }
.nav-frost-edge { width: calc(100% - 2rem); height: 14px; margin: -2px auto 0; pointer-events: none; opacity: .72; }
.logo-slot { flex: 0 0 auto; display: flex; align-items: center; width: clamp(150px, 15vw, 230px); height: 58px; overflow: hidden; border-radius: .9rem; background: rgba(255,255,255,.72); }
.logo-slot__image { width: 100%; height: 100%; object-fit: cover; object-position: 52% 49%; transform: scale(1.04); transition: height .22s ease; }
.site-header.is-scrolled .logo-slot { height: 50px; }
.nav-links, .nav-actions { display: flex; align-items: center; }
.nav-links { margin-left: auto; gap: clamp(.8rem, 1.8vw, 1.45rem); color: var(--navy); font-size: clamp(.72rem, .68rem + .15vw, .84rem); font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.nav-links a, .logo-slot, .nav-call, .menu-toggle, .btn, .footer a { outline: none; }
.nav-links a { position: relative; padding: .75rem 0; }
.nav-links a::after { position: absolute; right: 0; bottom: .44rem; left: 0; height: 2px; content: ""; border-radius: 999px; background: var(--carlson-blue); opacity: 0; transform: scaleX(.45); transition: opacity .16s ease, transform .16s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { opacity: 1; transform: scaleX(1); }
.logo-slot:focus-visible, .nav-links a:focus-visible, .nav-call:focus-visible, .menu-toggle:focus-visible, .btn:focus-visible, .footer a:focus-visible { box-shadow: 0 0 0 3px rgba(8,125,181,.28), 0 0 0 6px rgba(255,255,255,.82); }
.nav-actions { gap: .6rem; margin-left: clamp(.5rem, 1vw, 1rem); }
.nav-call { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; padding: .9rem 1.1rem; background: linear-gradient(135deg, var(--carlson-blue), var(--deep-blue)); color: var(--white); box-shadow: 0 14px 30px rgba(8,125,181,.26); font-size: clamp(.7rem, .68rem + .14vw, .82rem); font-weight: 950; letter-spacing: .08em; line-height: 1; text-transform: uppercase; white-space: nowrap; transition: transform .16s ease, box-shadow .16s ease; }
.nav-call:hover { transform: translateY(-1px); box-shadow: 0 18px 36px rgba(8,125,181,.32); }
.menu-toggle { display: none; min-height: 46px; align-items: center; justify-content: center; gap: .55rem; border: 1px solid rgba(8,125,181,.28); border-radius: 999px; padding: .72rem .86rem; background: rgba(255,255,255,.74); color: var(--navy); cursor: pointer; font-size: .76rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.menu-toggle__icon, .menu-toggle__icon::before, .menu-toggle__icon::after { display: block; width: 18px; height: 2px; border-radius: 999px; background: var(--navy); content: ""; transition: transform .16s ease, opacity .16s ease; }
.menu-toggle__icon { position: relative; }
.menu-toggle__icon::before, .menu-toggle__icon::after { position: absolute; left: 0; }
.menu-toggle__icon::before { top: -6px; }
.menu-toggle__icon::after { top: 6px; }
.site-header.menu-open .menu-toggle__icon { background: transparent; }
.site-header.menu-open .menu-toggle__icon::before { transform: translateY(6px) rotate(45deg); }
.site-header.menu-open .menu-toggle__icon::after { transform: translateY(-6px) rotate(-45deg); }

.eyebrow { margin: 0; color: var(--carlson-blue); font-size: clamp(.78rem, .72rem + .22vw, .95rem); font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 900; line-height: .88; letter-spacing: -.035em; text-transform: uppercase; text-wrap: balance; }
h1 { font-size: clamp(5.1rem, 12vw, 13.4rem); }
h2 { font-size: clamp(3rem, 7.3vw, 7.4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 2.3rem); }
p { max-width: 64ch; }
.btn { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 999px; padding: 1rem 1.35rem; font-size: clamp(.78rem, .74rem + .16vw, .9rem); font-weight: 950; letter-spacing: .08em; line-height: 1; text-transform: uppercase; white-space: nowrap; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--carlson-blue); color: var(--white); box-shadow: 0 16px 34px rgba(8,125,181,.24); }
.btn--secondary { border-color: rgba(8,125,181,.34); background: rgba(255,255,255,.76); color: var(--navy); box-shadow: inset 0 1px 0 rgba(255,255,255,.95); }

.hero { position: relative; isolation: isolate; min-height: max(850px, 94svh); overflow: hidden; padding-top: clamp(8rem, 12vw, 10.8rem); background: var(--pale-ice); }
.hero-bg, .hero-atmosphere, .hero-ground { position: absolute; inset: 0; pointer-events: none; }
.hero-bg { z-index: -5; background: linear-gradient(180deg, rgba(249,253,254,1) 0%, rgba(221,245,252,.72) 54%, rgba(255,255,255,1) 100%); }
.hero-atmosphere { z-index: -4; background: radial-gradient(circle at 72% 32%, rgba(255,255,255,.98) 0 8%, rgba(221,245,252,.58) 23%, transparent 47%), radial-gradient(circle at 16% 78%, rgba(255,255,255,.94), transparent 34%), linear-gradient(90deg, rgba(3,30,53,.14), transparent 20%, transparent 76%, rgba(6,75,122,.18)); }
.hero-ground { z-index: -3; inset: auto -10% -15%; height: 44%; background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0 28%, rgba(221,245,252,.74) 50%, transparent 72%), linear-gradient(180deg, transparent, rgba(255,255,255,.96)); filter: blur(3px); }
.hero__grid { position: relative; display: grid; min-height: calc(max(850px, 94svh) - clamp(8rem, 12vw, 10.8rem)); grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr); align-items: center; gap: clamp(1rem, 3vw, 4rem); }
.hero__content { position: relative; z-index: 2; min-width: 0; padding-bottom: clamp(3rem, 6vw, 6rem); }
.hero__content h1 { margin-top: .6rem; color: var(--deep-navy); text-shadow: 0 1px 0 rgba(255,255,255,.76); }
.hero__content h1 span { display: block; }
.hero__copy { margin-top: clamp(1rem, 2vw, 1.5rem); max-width: 620px; color: var(--text-dark); font-size: clamp(1.1rem, 1rem + .45vw, 1.46rem); font-weight: 700; line-height: 1.42; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: clamp(1.4rem, 2.4vw, 2.25rem); }
.hero-mascot { position: relative; align-self: end; width: clamp(360px, 34vw, 570px); max-width: 100%; justify-self: end; margin: 0 0 clamp(1rem, 4vw, 4rem); }
.hero-mascot__image {
  width: 100%;
  border-radius: 0;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 34px 58px rgba(6,75,122,.18));
  -webkit-mask-image: radial-gradient(ellipse 68% 64% at 52% 52%, #000 0 72%, rgba(0,0,0,.78) 82%, transparent 100%);
  mask-image: radial-gradient(ellipse 68% 64% at 52% 52%, #000 0 72%, rgba(0,0,0,.78) 82%, transparent 100%);
}
.hero-mascot::after { position: absolute; inset: auto 12% -2%; height: 14%; content: ""; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(6,75,122,.18), transparent 68%); filter: blur(12px); }
.hero-mascot__frost { position: absolute; right: 6%; bottom: 4%; width: 42%; height: 18%; }

.frost-top, .frost-bottom, .frost-corner, .frost-edge, .ice-divider { pointer-events: none; }
.frost-top, .frost-bottom { position: absolute; left: 0; right: 0; background: transparent; }
.frost-top::before, .frost-bottom::before, .frost-edge::before, .frost-corner::before, .ice-divider::before { content: ""; display: block; background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), transparent), repeating-linear-gradient(135deg, rgba(221,245,252,.48) 0 1px, transparent 1px 13px); opacity: .34; filter: blur(.2px); }
.frost-top::before, .frost-bottom::before { height: 100%; }
.frost-bottom::before { transform: scaleY(-1); }
.frost-edge::before { height: 100%; border-radius: 0 0 999px 999px; }
.frost-corner::before { width: 100%; height: 100%; border-radius: 48% 12% 44% 18%; }
.ice-divider { position: absolute; inset: 0 0 auto; height: 1px; }
.ice-divider::before { height: 20px; }
.hero-frost-top { inset: 0 0 auto; height: 92px; }
.hero-frost-bottom { inset: auto 0 0; height: 130px; }

.trust { position: relative; overflow: hidden; padding-block: clamp(2.2rem, 4vw, 4rem); background: radial-gradient(circle at 20% 0, rgba(8,125,181,.34), transparent 34%), linear-gradient(135deg, var(--deep-navy), var(--navy) 48%, var(--deep-blue)); color: var(--white); }
.trust::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent); opacity: .55; }
.trust-frost-top { inset: 0 0 auto; height: 40px; }
.trust-frost-bottom { inset: auto 0 0; height: 42px; }
.trust__grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.trust-card { display: grid; grid-template-columns: auto minmax(0,1fr); gap: .85rem 1rem; align-items: center; padding: clamp(1rem, 2vw, 1.75rem); border-right: 1px solid rgba(255,255,255,.18); }
.trust-card:last-child { border-right: 0; }
.trust-card__icon { width: 46px; height: 46px; border: 1px solid rgba(221,245,252,.58); border-radius: 50%; background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.74), rgba(8,125,181,.18) 54%, rgba(255,255,255,.05)); }
.trust-card h3 { color: var(--white); font-size: clamp(1.1rem, 1.5vw, 1.7rem); letter-spacing: -.02em; }
.trust-card p { grid-column: 2; color: rgba(255,255,255,.78); font-size: .98rem; font-weight: 700; }

.section { position: relative; padding-block: var(--section-y); }
.section--services { background: linear-gradient(180deg, var(--white), var(--pale-ice)); }
.section--commercial { overflow: hidden; background: radial-gradient(circle at 78% 42%, rgba(8,125,181,.18), transparent 36%), linear-gradient(135deg, var(--frost-white), var(--ice-blue)); }
.section--about { background: var(--white); }
.section--reviews { background: var(--pale-ice); }
.section--service-area { min-height: clamp(520px, 58vw, 720px); display: grid; align-items: center; overflow: hidden; background: var(--deep-navy); color: var(--white); }
.section--contact { background: linear-gradient(180deg, var(--white), var(--frost-white)); }
.section-heading { max-width: 880px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-top: .65rem; color: var(--deep-navy); }
.section--service-area h2 { color: var(--white); }
.service-card-grid, .review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(2rem, 4vw, 4rem); }
.service-card, .review-shell, .contact-panel { border: 1px solid rgba(154,220,242,.46); border-radius: var(--radius-lg); background: rgba(255,255,255,.78); box-shadow: 0 24px 70px rgba(6,44,79,.08); }
.service-card { overflow: hidden; padding: .65rem; }
.photo-frame { position: relative; min-height: 280px; overflow: hidden; border: 1px solid var(--ice-border); border-radius: calc(var(--radius-lg) - .35rem); background: linear-gradient(135deg, rgba(221,245,252,.84), rgba(255,255,255,.74)); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.service-card__media { aspect-ratio: 1.13 / 1; min-height: auto; }
.service-card__media img { position: absolute; inset: 0; }
.service-card__media figcaption { position: absolute; right: .8rem; bottom: .8rem; left: .8rem; z-index: 2; border-radius: 1rem; padding: .95rem 1rem; background: linear-gradient(135deg, rgba(3,30,53,.88), rgba(6,75,122,.76)); color: var(--white); font-family: var(--font-heading); font-size: clamp(1.25rem, 2.1vw, 2.05rem); line-height: .95; letter-spacing: -.02em; text-transform: uppercase; }
.photo-frost-top { inset: 0 0 auto; height: 34px; }
.photo-frost-bottom { inset: auto 0 0; height: 38px; }
.split-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr); align-items: center; gap: clamp(2rem, 5vw, 6rem); }
.split-layout--reverse { grid-template-columns: minmax(320px, 1.05fr) minmax(0, .95fr); }
.split-layout--reverse .section-heading { order: 2; }
.commercial-copy { position: relative; z-index: 2; }
.commercial-photo, .about-photo { min-height: clamp(360px, 39vw, 590px); }
.commercial-photo img, .about-photo img { position: absolute; inset: 0; }
.review-shell { min-height: 260px; background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.7)), radial-gradient(circle at 18% 20%, rgba(8,125,181,.12), transparent 24%); }
.service-area-bg { position: absolute; inset: 0; }
.service-area-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); }
.service-area-bg::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(3,30,53,.96) 0 35%, rgba(3,30,53,.66), rgba(6,75,122,.20)), radial-gradient(circle at 75% 42%, rgba(8,125,181,.38), transparent 34%); }
.service-area__content { position: relative; z-index: 1; }
.service-area__content h2 { max-width: 900px; }
.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.72fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.contact-panel { position: relative; padding: clamp(1.4rem, 3vw, 2.4rem); overflow: hidden; }
.contact-panel p { display: grid; gap: .2rem; padding-block: .85rem; border-bottom: 1px solid rgba(154,220,242,.42); }
.contact-panel strong { color: var(--carlson-blue); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-panel a { color: var(--navy); font-weight: 900; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.25rem; }

.footer { padding-block: clamp(3rem, 5vw, 5rem) 1.4rem; background: var(--deep-navy); color: var(--white); }
.footer__grid { display: grid; grid-template-columns: minmax(160px, .7fr) 1fr .7fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.footer-logo { display: block; overflow: hidden; border-radius: .9rem; background: rgba(255,255,255,.95); }
.footer-logo img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; object-position: center; transform: scale(1.01); }
.footer-contact, .footer-nav { display: grid; gap: .55rem; font-style: normal; }
.footer a { color: rgba(255,255,255,.9); font-weight: 800; }
.footer span, .footer p { color: rgba(255,255,255,.68); }
.footer__bottom { margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); }

@media (max-width: 1180px) {
  .nav-links { gap: .82rem; font-size: .68rem; }
  .logo-slot { width: 162px; }
  .nav-call { padding-inline: .9rem; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); }
  .hero-mascot { margin-right: -6vw; }
}
@media (max-width: 900px) {
  .site-header { padding-top: .7rem; }
  .site-nav { min-height: 70px; padding: .5rem; border-radius: 1.15rem; }
  .site-header.is-scrolled .site-nav { min-height: 62px; }
  .logo-slot { width: min(36vw, 150px); height: 52px; }
  .site-header.is-scrolled .logo-slot { height: 46px; }
  .menu-toggle { display: inline-flex; }
  .menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .nav-actions { margin-left: auto; gap: .45rem; }
  .nav-call { min-height: 42px; padding: .72rem .8rem; font-size: .66rem; letter-spacing: .05em; }
  .nav-links { position: absolute; top: calc(100% + .55rem); right: 0; left: 0; display: grid; grid-template-columns: 1fr; gap: 0; max-height: 0; overflow: hidden; margin-left: 0; padding: 0 .65rem; border: 1px solid transparent; border-radius: 1rem; background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,251,253,.93)); box-shadow: 0 24px 54px rgba(6,44,79,.18); opacity: 0; pointer-events: none; transition: max-height .2s ease, padding .2s ease, opacity .16s ease, border-color .2s ease; }
  .site-header.menu-open .nav-links { max-height: 380px; padding-block: .6rem; border-color: rgba(154,220,242,.62); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .88rem .8rem; border-radius: .72rem; }
  .nav-links a:hover, .nav-links a:focus-visible { background: rgba(221,245,252,.72); }
  .nav-links a::after { display: none; }
  .hero { min-height: auto; padding-block: 8rem 0; }
  .hero__grid { min-height: 0; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
  .hero__content { padding-bottom: 0; }
  .hero-mascot { width: min(560px, 88vw); justify-self: center; margin: 0 auto -1rem; }
  .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-card:nth-child(2) { border-right: 0; }
  .trust-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .service-card-grid, .review-grid, .split-layout, .split-layout--reverse, .contact-grid, .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .split-layout--reverse .section-heading { order: 0; }
  .commercial-photo { order: -1; }
}
@media (max-width: 640px) {
  :root { --page-pad: 1rem; }
  h1 { font-size: clamp(3.8rem, 17vw, 4.9rem); }
  h2 { font-size: clamp(2.55rem, 12vw, 4.4rem); }
  .site-header { padding-inline: .7rem; }
  .site-nav { gap: .4rem; }
  .logo-slot { width: 112px; height: 45px; }
  .nav-call { min-height: 40px; padding-inline: .66rem; font-size: .6rem; }
  .menu-toggle { min-height: 40px; width: 42px; padding-inline: 0; }
  .hero { padding-top: 7.2rem; }
  .hero__actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .trust__grid { grid-template-columns: minmax(0, 1fr); }
  .trust-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .trust-card:last-child { border-bottom: 0; }
  .trust-card p { grid-column: 1 / -1; }
  .service-card__media { aspect-ratio: .95 / 1; }
  .footer-logo { max-width: 220px; }
}
@media (max-width: 370px) {
  .logo-slot { width: 100px; }
  .nav-call { font-size: 0; letter-spacing: 0; }
  .nav-call::after { content: "Call"; font-size: .68rem; letter-spacing: .08em; }
}
/* PASS 03 — lower-page composition and content lock */
.section-copy {
  margin-top: clamp(1.1rem, 2vw, 1.65rem);
  max-width: 58ch;
  color: rgba(7,52,81,.86);
  font-size: clamp(1.04rem, 1rem + .28vw, 1.26rem);
  font-weight: 700;
  line-height: 1.55;
}
.section-copy--small { margin-top: .75rem; color: rgba(7,52,81,.72); }
.section-heading .btn { margin-top: clamp(1.4rem, 2vw, 2rem); }

.section--services { padding-bottom: clamp(6rem, 11vw, 11rem); }
.service-card-grid { align-items: start; }
.service-card {
  display: grid;
  gap: 0;
  padding: .72rem;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,251,253,.78));
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(8,125,181,.34); box-shadow: 0 30px 80px rgba(6,44,79,.12); }
.service-card__media { aspect-ratio: .92 / 1; border-radius: calc(var(--radius-lg) - .45rem); }
.service-card--tall { margin-top: clamp(1.2rem, 3vw, 3.2rem); }
.service-card--tall .service-card__media { aspect-ratio: 1.02 / 1.16; }
.service-card__body { padding: clamp(1.15rem, 2vw, 1.65rem) .55rem .7rem; }
.service-card__body h3 { max-width: 10ch; color: var(--deep-navy); font-size: clamp(2rem, 3vw, 3.2rem); }
.service-card__body p:last-child { margin-top: .8rem; color: rgba(7,52,81,.74); font-weight: 700; line-height: 1.45; }
.service-card__kicker { margin-bottom: .65rem; color: var(--carlson-blue); font-size: .74rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }

.section--commercial {
  padding-block: clamp(6rem, 10vw, 11rem);
  background:
    radial-gradient(circle at 76% 28%, rgba(221,245,252,.68), transparent 34%),
    linear-gradient(135deg, var(--deep-navy) 0 34%, var(--navy) 34% 43%, var(--ice-blue) 43% 100%);
}
.section--commercial .eyebrow { color: var(--ice-blue); }
.section--commercial .section-heading h2,
.section--commercial .section-copy { color: var(--white); }
.section--commercial .commercial-copy {
  max-width: 620px;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border-left: 1px solid rgba(221,245,252,.35);
  background: linear-gradient(135deg, rgba(3,30,53,.34), rgba(6,75,122,.18));
}
.commercial-photo { justify-self: end; width: min(100%, 720px); border-radius: 2.2rem; box-shadow: 0 34px 90px rgba(3,30,53,.22); }
.commercial-photo img { object-position: 54% 50%; }

.section--about { padding-block: clamp(6rem, 10vw, 10rem); }
.about-photo { width: min(100%, 650px); min-height: clamp(360px, 35vw, 520px); }
.about-photo img { object-position: 54% 58%; }
.about-copy { max-width: 680px; }

.section--reviews { padding-block: clamp(6rem, 10vw, 10rem); }
.review-grid { align-items: stretch; }
.review-shell {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
}
.review-shell::before {
  content: "“";
  position: absolute;
  top: -.45rem;
  left: 1.2rem;
  color: rgba(8,125,181,.12);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
}
.review-quote { position: relative; z-index: 1; color: var(--deep-navy); font-size: clamp(1.16rem, 1rem + .55vw, 1.55rem); font-weight: 800; line-height: 1.36; }
.review-shell footer { position: relative; z-index: 1; display: grid; gap: .15rem; margin-top: 2rem; }
.review-shell strong { color: var(--carlson-blue); font-size: .88rem; letter-spacing: .12em; text-transform: uppercase; }
.review-shell span { color: rgba(7,52,81,.64); font-weight: 800; }

.section--service-area { min-height: clamp(560px, 58vw, 760px); }
.service-area-bg::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  box-shadow: inset 0 0 90px rgba(221,245,252,.14), inset 0 0 160px rgba(3,30,53,.72);
  pointer-events: none;
}
.service-area__content { display: grid; gap: 1rem; }
.service-area__content .eyebrow { color: var(--ice-blue); }
.service-area__content p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1rem + .3vw, 1.28rem); font-weight: 800; }

.section--contact { padding-block: clamp(5.5rem, 9vw, 9rem); }
.contact-panel { background: rgba(255,255,255,.9); }
.contact-panel span { color: var(--navy); font-weight: 850; }
.contact-phone a { font-size: clamp(2.2rem, 4.7vw, 4.4rem); line-height: .95; letter-spacing: -.04em; }
.contact-actions .btn { width: auto; }

.footer__grid { grid-template-columns: minmax(180px,.72fr) minmax(240px,1fr) minmax(280px,1.1fr); }
.footer-link-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 3vw, 2.4rem); }
.footer-nav strong { color: var(--ice-blue); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-nav a { color: rgba(255,255,255,.82); }

@media (max-width: 900px) {
  .hero-ground { inset-inline: 0; }
  .service-card--tall { margin-top: 0; }
  .service-card__media,
  .service-card--tall .service-card__media { aspect-ratio: 1.35 / 1; }
  .service-card__body h3 { max-width: 14ch; }
  .section--commercial { background: linear-gradient(180deg, var(--deep-navy) 0 56%, var(--ice-blue) 56% 100%); }
  .section--commercial .commercial-copy { padding: 0; border-left: 0; background: transparent; }
  .commercial-photo,
  .about-photo { width: 100%; min-width: 0; justify-self: stretch; }
  .commercial-photo { order: 0; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .footer-contact,
  .footer-link-groups { width: 100%; min-width: 0; }
  .footer-link-groups { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .service-card__media,
  .service-card--tall .service-card__media { aspect-ratio: .98 / 1; }
  .service-card__body { padding-inline: .35rem; }
  .review-shell { min-height: 280px; }
  .contact-phone a { font-size: clamp(2rem, 12vw, 3rem); }
  .contact-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

/* PASS 04 — visual polish + fidelity */
.site-nav {
  min-height: 84px;
  padding: .56rem .72rem .56rem .82rem;
  border-color: rgba(154,220,242,.52);
  border-radius: 1.55rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(249,253,254,.48)),
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(221,245,252,.18));
  box-shadow: 0 20px 60px rgba(6,44,79,.085), inset 0 1px 0 rgba(255,255,255,.96);
  transition: min-height .34s cubic-bezier(.2,.75,.2,1), padding .34s cubic-bezier(.2,.75,.2,1), box-shadow .34s ease, border-color .34s ease, background .34s ease;
}
.site-header.is-scrolled .site-nav {
  min-height: 66px;
  border-color: rgba(124,205,235,.78);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(249,253,254,.86)),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(221,245,252,.22));
  box-shadow: 0 12px 36px rgba(6,44,79,.15), inset 0 1px 0 rgba(255,255,255,.98);
}
.logo-slot { width: clamp(158px, 14vw, 218px); background: rgba(255,255,255,.82); box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); }
.logo-slot__image { object-position: 50% 50%; transform: scale(1.025); }
.nav-call, .btn { transition: transform .22s cubic-bezier(.2,.75,.2,1), box-shadow .22s ease, background .22s ease, opacity .22s ease; }
.nav-call:hover, .btn:hover { transform: translateY(-2px); }

h1 { font-size: clamp(4.7rem, 8.5vw, 9.35rem); line-height: .86; }
h2 { line-height: .89; }
.hero {
  min-height: max(760px, 92svh);
  padding-top: clamp(7.4rem, 10vw, 9.6rem);
  background: #f8fdff;
}
.hero-bg { background: linear-gradient(180deg, #fbfeff 0%, rgba(231,249,254,.72) 48%, #fff 100%); }
.hero-atmosphere {
  background:
    radial-gradient(circle at 69% 28%, rgba(255,255,255,.98) 0 10%, rgba(221,245,252,.55) 26%, transparent 49%),
    radial-gradient(circle at 22% 78%, rgba(255,255,255,.96), transparent 38%),
    linear-gradient(90deg, rgba(3,30,53,.08), transparent 21%, transparent 78%, rgba(6,75,122,.12));
}
.hero-ground { bottom: -12%; height: 38%; filter: blur(2px); opacity: .88; }
.hero__grid {
  min-height: calc(max(760px, 92svh) - clamp(7.4rem, 10vw, 9.6rem));
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .98fr);
}
.hero__content { padding-bottom: clamp(2.5rem, 5vw, 4.8rem); }
.hero__copy { max-width: 590px; font-size: clamp(1.08rem, .98rem + .34vw, 1.34rem); }
.hero-mascot {
  width: clamp(440px, 38vw, 640px);
  justify-self: end;
  margin: 0 -1vw clamp(.8rem, 2vw, 2.2rem) 0;
}
.hero-mascot__image {
  filter: drop-shadow(0 32px 48px rgba(6,75,122,.16));
  -webkit-mask-image: radial-gradient(ellipse 70% 66% at 52% 52%, #000 0 74%, rgba(0,0,0,.82) 85%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 66% at 52% 52%, #000 0 74%, rgba(0,0,0,.82) 85%, transparent 100%);
}
.hero-frost-top { height: 58px; opacity: .36; }
.hero-frost-bottom { height: 112px; opacity: .62; }

.frost-top::before, .frost-bottom::before, .frost-edge::before, .frost-corner::before, .ice-divider::before {
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent),
    repeating-linear-gradient(135deg, rgba(221,245,252,.42) 0 1px, transparent 1px 15px);
  opacity: .28;
}
.nav-frost-edge { opacity: .46; }
.photo-frost-top, .photo-frost-bottom { opacity: .52; }

.section { padding-block: clamp(5.2rem, 8.4vw, 8.6rem); }
.section-heading { max-width: 820px; }
.eyebrow { font-size: clamp(.76rem, .7rem + .16vw, .9rem); letter-spacing: .17em; }
.section-copy { max-width: 54ch; }

.section--services { padding-top: clamp(5.8rem, 9vw, 9rem); padding-bottom: clamp(5.6rem, 9vw, 9.2rem); }
.service-card-grid { gap: clamp(1rem, 2.4vw, 1.85rem); }
.service-card { border-radius: 1.65rem; box-shadow: 0 22px 62px rgba(6,44,79,.075); }
.service-card:hover { transform: none; border-color: rgba(8,125,181,.28); box-shadow: 0 28px 72px rgba(6,44,79,.11); }
.service-card__media { aspect-ratio: .98 / 1; overflow: hidden; }
.service-card__media img { transform: scale(1.002); transition: transform .48s cubic-bezier(.2,.75,.2,1), filter .48s ease; }
.service-card:hover .service-card__media img { transform: scale(1.035); filter: brightness(1.035) saturate(1.02); }
.service-card--tall .service-card__media { aspect-ratio: 1.04 / 1.1; }
.service-card__body h3 { max-width: 12ch; font-size: clamp(1.9rem, 2.65vw, 2.85rem); }
.service-card__body p:last-child { max-width: 29ch; }

.section--commercial {
  padding-block: clamp(5.8rem, 8.6vw, 9.5rem);
  background:
    radial-gradient(circle at 72% 30%, rgba(221,245,252,.72), transparent 32%),
    linear-gradient(132deg, var(--deep-navy) 0 31%, rgba(6,75,122,.92) 31% 39%, var(--ice-blue) 39% 100%);
}
.section--commercial .commercial-copy { padding: clamp(1.35rem, 2.6vw, 2.25rem); max-width: 600px; }
.section--commercial .section-copy { font-size: clamp(1.08rem, 1rem + .28vw, 1.28rem); }
.commercial-photo { width: min(100%, 760px); min-height: clamp(380px, 35vw, 560px); }
.commercial-photo img { object-position: 55% 48%; }

.section--about { padding-block: clamp(5.8rem, 8.8vw, 9.4rem); }
.about-photo { min-height: clamp(350px, 33vw, 505px); box-shadow: 0 20px 56px rgba(6,44,79,.08); }
.about-photo .photo-frost-top, .about-photo .photo-frost-bottom { opacity: .28; }
.about-copy h2 { max-width: 8.6ch; }

.section--reviews { padding-block: clamp(5.6rem, 8.4vw, 8.8rem); }
.review-shell { min-height: 345px; border-radius: 1.65rem; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78)); }
.review-shell::before { color: rgba(8,125,181,.10); font-size: 10.8rem; top: -.55rem; }
.review-quote { font-size: clamp(1.24rem, 1.05rem + .55vw, 1.6rem); line-height: 1.32; }
.review-shell strong { font-size: .82rem; }

.section--service-area { min-height: clamp(560px, 54vw, 730px); }
.service-area-bg img { filter: saturate(.84) contrast(1.02) brightness(.86); object-position: 52% 46%; }
.service-area-bg::after {
  background:
    linear-gradient(90deg, rgba(3,30,53,.98) 0 33%, rgba(3,30,53,.70) 58%, rgba(6,75,122,.18)),
    radial-gradient(circle at 74% 38%, rgba(8,125,181,.26), transparent 35%);
}
.service-area-bg::before { box-shadow: inset 0 0 70px rgba(221,245,252,.17), inset 0 0 150px rgba(3,30,53,.78); }
.service-area__content h2 { max-width: 860px; }

.section--contact {
  padding-block: clamp(5.5rem, 8.2vw, 8.5rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(221,245,252,.82), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--frost-white) 100%);
}
.contact-panel { border-radius: 1.75rem; box-shadow: 0 22px 66px rgba(6,44,79,.10); }
.contact-phone a { font-size: clamp(2.6rem, 5.2vw, 4.9rem); }

.footer { padding-top: clamp(3rem, 4.4vw, 4.4rem); }
.footer-logo { max-width: 320px; border-radius: .82rem; }
.footer__grid { align-items: start; }
.footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: .24em; }

.reveal-ready [data-reveal] { opacity: .96; transform: translateY(18px); transition: opacity .58s ease, transform .58s cubic-bezier(.2,.75,.2,1); }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  h1 { font-size: clamp(4.4rem, 8.7vw, 8.1rem); }
  .hero-mascot { width: clamp(360px, 36vw, 520px); margin-right: -2vw; }
}
@media (max-width: 900px) {
  .site-nav { min-height: 72px; border-radius: 1.25rem; }
  .site-header.is-scrolled .site-nav { min-height: 62px; }
  .hero { padding-top: 7.8rem; }
  .hero__grid { gap: .7rem; }
  .hero-mascot { width: min(430px, 70vw); margin: -1.2rem auto -.65rem; justify-self: center; }
  .section--commercial { background: linear-gradient(180deg, var(--deep-navy) 0 52%, var(--ice-blue) 52% 100%); }
  .commercial-photo { min-height: clamp(330px, 48vw, 380px); }
  .about-photo { min-height: clamp(330px, 46vw, 380px); }
  .review-shell { min-height: auto; }
  .footer { padding-top: 3rem; }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(3.6rem, 15.5vw, 4.55rem); }
  h2 { font-size: clamp(2.45rem, 11.4vw, 4.05rem); }
  .site-header { padding-inline: .72rem; }
  .logo-slot { width: 118px; height: 46px; }
  .nav-call { min-width: 110px; min-height: 40px; padding-inline: .62rem; }
  .hero { padding-top: 7rem; }
  .hero__copy { font-size: 1.04rem; line-height: 1.38; }
  .hero__actions { gap: .62rem; margin-top: 1.05rem; }
  .hero-mascot { width: min(310px, 72vw); margin-top: -.35rem; }
  .trust { padding-block: 1.8rem; }
  .section { padding-block: clamp(4.2rem, 15vw, 5.5rem); }
  .service-card__body h3 { font-size: clamp(1.85rem, 10vw, 2.55rem); max-width: 11.8ch; }
  .service-card__body p:last-child, .section-copy { font-size: 1rem; }
  .commercial-photo, .about-photo { min-height: 315px; }
  .section--service-area { min-height: 520px; }
  .service-area__content p:not(.eyebrow) { font-size: 1rem; }
  .contact-phone a { font-size: clamp(2.35rem, 11.5vw, 3.2rem); }
  .footer__grid { gap: 1.65rem; }
}
@media (max-width: 390px) {
  .logo-slot { width: 108px; }
  .nav-call { min-width: 96px; font-size: .56rem; }
  .hero-mascot { width: min(292px, 74vw); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal], .reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; transition: none; }
  .service-card__media img, .site-nav, .nav-call, .btn { transition: none !important; }
}


/* REVIEW VIBE MATCH — mockup energy pass, CSS-only / no photography changes */
:root {
  --mock-deep: #001e3a;
  --mock-blue: #0d3b66;
  --mock-electric: #1472b8;
  --mock-sky: #cbe9f9;
  --mock-ice: #eefaff;
}

body {
  background:
    radial-gradient(circle at 50% 0, rgba(203,233,249,.55), transparent 32rem),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 42%, #eefaff 100%);
}

.site-header { padding-top: clamp(.65rem, 1vw, .95rem); }
.site-nav {
  min-height: 70px;
  border-radius: .95rem;
  border-color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 46px rgba(0,30,58,.13), inset 0 -1px 0 rgba(20,114,184,.10);
}
.site-header.is-scrolled .site-nav {
  min-height: 60px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 34px rgba(0,30,58,.18), inset 0 -1px 0 rgba(20,114,184,.14);
}
.logo-slot { width: clamp(150px, 13vw, 205px); height: 58px; border-radius: .65rem; background: rgba(255,255,255,.97); }
.site-header.is-scrolled .logo-slot { height: 48px; }
.nav-call, .btn--primary {
  background: linear-gradient(180deg, #064f9f, #082f72);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,64,132,.25), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--secondary { border-color: rgba(6,79,159,.42); background: rgba(255,255,255,.92); color: #073269; }

.hero {
  min-height: max(720px, 88svh);
  padding-top: clamp(6.5rem, 8.3vw, 8.25rem);
  background: linear-gradient(180deg, #f9fdff 0%, #e8f7ff 62%, #f8fdff 100%);
}
.hero-bg {
  background:
    radial-gradient(circle at 68% 28%, rgba(255,255,255,.92) 0 11%, rgba(203,233,249,.72) 26%, transparent 44%),
    linear-gradient(180deg, #f8fdff 0%, #dceff9 67%, #fff 100%);
}
.hero-atmosphere::before {
  position: absolute;
  inset: 7rem -4% 22% -4%;
  z-index: -1;
  content: "";
  opacity: .58;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(61,126,172,.26) 34% 35%, transparent 35% 100%),
    linear-gradient(152deg, transparent 0 58%, rgba(13,59,102,.18) 58% 59%, transparent 59% 100%),
    linear-gradient(165deg, transparent 0 64%, rgba(255,255,255,.92) 64% 66%, transparent 66% 100%),
    linear-gradient(110deg, transparent 0 18%, rgba(20,114,184,.18) 18% 19%, transparent 19% 100%),
    radial-gradient(ellipse at 50% 72%, rgba(255,255,255,.62), transparent 52%);
  clip-path: polygon(0 72%, 10% 48%, 19% 61%, 31% 28%, 43% 58%, 56% 22%, 67% 54%, 79% 31%, 91% 57%, 100% 36%, 100% 100%, 0 100%);
  filter: blur(.2px);
}
.hero-atmosphere::after,
.trust::after,
.section--reviews::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  height: clamp(42px, 5vw, 78px);
  pointer-events: none;
  user-select: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(203,233,249,.55) 54%, transparent 55%),
    repeating-linear-gradient(94deg, transparent 0 24px, rgba(255,255,255,.92) 24px 29px, transparent 29px 46px);
  clip-path: polygon(0 0, 100% 0, 100% 38%, 98% 42%, 97% 78%, 95% 42%, 92% 48%, 90% 72%, 88% 46%, 84% 54%, 82% 90%, 80% 47%, 77% 58%, 75% 72%, 72% 44%, 68% 60%, 66% 82%, 64% 42%, 60% 56%, 57% 96%, 54% 48%, 51% 65%, 48% 46%, 44% 58%, 42% 76%, 40% 43%, 36% 57%, 34% 90%, 31% 46%, 28% 62%, 26% 78%, 23% 42%, 19% 56%, 17% 82%, 15% 45%, 11% 58%, 9% 72%, 6% 43%, 3% 54%, 0 44%);
  opacity: .64;
}
.hero-atmosphere::after { top: 5.2rem; }
.hero__grid {
  min-height: calc(max(720px, 88svh) - clamp(6.5rem, 8.3vw, 8.25rem));
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
}
h1 {
  color: #05306b;
  font-size: clamp(4.8rem, 8.2vw, 8.9rem);
  line-height: .84;
  letter-spacing: -.025em;
  text-shadow: 0 2px 0 rgba(255,255,255,.95), 0 12px 22px rgba(13,59,102,.12);
}
.hero__copy { max-width: 540px; color: #06396f; font-weight: 850; }
.hero-mascot { width: clamp(520px, 44vw, 760px); margin: 0 -3vw 1.4rem 0; }
.hero-mascot__image { filter: drop-shadow(0 34px 30px rgba(1,30,58,.18)); }
.hero-frost-bottom { height: 86px; opacity: .75; }

.trust {
  margin-top: -1px;
  padding-block: clamp(2.4rem, 3.8vw, 3.8rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(20,114,184,.30), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.055) 0 1px, transparent 1px 17px),
    linear-gradient(180deg, #073966 0%, #022344 100%);
  box-shadow: inset 0 18px 48px rgba(255,255,255,.05), inset 0 -28px 58px rgba(0,0,0,.18);
}
.trust::after { top: -1px; transform: scaleY(-1); opacity: .75; }
.trust-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-color: rgba(255,255,255,.55);
  background: radial-gradient(circle at 34% 24%, #fff, #74c6f1 42%, #0b4c86 72%);
  box-shadow: 0 6px 22px rgba(0,0,0,.18), inset 0 0 0 5px rgba(255,255,255,.08);
}
.trust-card:nth-child(1) .trust-card__icon::before { content: "✶"; }
.trust-card:nth-child(2) .trust-card__icon::before { content: "◆"; }
.trust-card:nth-child(3) .trust-card__icon::before { content: "◆"; transform: rotate(45deg); }
.trust-card:nth-child(4) .trust-card__icon::before { content: "▦"; }
.trust-card__icon::before { color: #fff; font-size: 1.55rem; line-height: 1; text-shadow: 0 2px 6px rgba(0,30,58,.32); }
.trust-card h3 { font-size: clamp(1.14rem, 1.35vw, 1.55rem); }

.section--services {
  background:
    radial-gradient(ellipse at 50% 0, rgba(203,233,249,.42), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #eefaff 100%);
}
.section--services .section-heading { margin-inline: auto; text-align: center; }
.section-heading h2 { color: #062f68; }
.service-card-grid { gap: clamp(1.35rem, 2.6vw, 2.25rem); }
.service-card {
  border-color: rgba(181,224,246,.90);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(236,249,255,.78), #fff 52%, #f0fbff 100%);
  box-shadow: 0 18px 46px rgba(0,30,58,.15), inset 0 1px 0 #fff;
}
.service-card__media {
  border-radius: .95rem;
  border-color: rgba(255,255,255,.88);
  box-shadow: inset 0 0 0 1px rgba(20,114,184,.18);
}
.service-card__media::after,
.commercial-photo::after,
.about-photo::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255,255,255,.38), transparent 26%, transparent 70%, rgba(255,255,255,.28)),
    radial-gradient(circle at 8% 5%, rgba(255,255,255,.55), transparent 18%);
}
.service-card__body { text-align: center; padding-top: clamp(1.35rem, 2.2vw, 2rem); }
.service-card__body::before {
  content: "";
  display: block;
  width: 58px;
  height: 58px;
  margin: -3.4rem auto 1rem;
  position: relative;
  z-index: 3;
  border-radius: 50%;
  border: 3px solid #fff;
  background: radial-gradient(circle at 35% 25%, #69c5f4, #1269ae 62%, #06376f);
  box-shadow: 0 10px 22px rgba(0,30,58,.22);
}
.service-card:nth-child(2) .service-card__body::before { background: radial-gradient(circle at 35% 25%, #ffc367, #f28c28 62%, #bf5c0f); }
.service-card__body h3 { max-width: 13ch; margin-inline: auto; color: #06265a; font-size: clamp(1.8rem, 2.35vw, 2.55rem); line-height: .9; }
.service-card__body p:last-child { margin-inline: auto; color: #163d62; }
.service-card__kicker { color: #1269ae; }

.section--commercial {
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), transparent 22%),
    radial-gradient(ellipse at 67% 26%, rgba(255,255,255,.58), transparent 30rem),
    linear-gradient(110deg, #f8fdff 0 42%, rgba(203,233,249,.74) 42% 100%);
}
.section--commercial::before {
  position: absolute;
  inset: 0 0 auto;
  height: 82px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,0));
}
.section--commercial .eyebrow { color: #064f9f; }
.section--commercial .section-heading h2 { color: #06265a; }
.section--commercial .section-copy { color: #12385e; }
.section--commercial .commercial-copy { border-left-color: rgba(6,79,159,.25); background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(203,233,249,.16)); }
.commercial-photo { border-radius: 1.2rem; box-shadow: 0 22px 60px rgba(0,30,58,.18); }

.section--about { background: #fff; }
.about-photo { border-radius: 1.2rem; }

.section--reviews {
  background:
    linear-gradient(180deg, #f4fbff 0%, #ffffff 58%, #eefaff 100%);
}
.section--reviews::after { bottom: -40px; opacity: .50; }
.review-shell {
  border-radius: .9rem;
  border-color: rgba(197,229,247,.9);
  box-shadow: 0 18px 42px rgba(0,30,58,.12);
}
.review-quote { color: #052448; }

.section--service-area {
  border-top: 1px solid rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.9);
  box-shadow: inset 0 28px 40px rgba(255,255,255,.07), inset 0 -28px 40px rgba(255,255,255,.07);
}
.section--service-area::before,
.section--service-area::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: clamp(34px, 5vw, 70px);
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent), repeating-linear-gradient(90deg, transparent 0 32px, rgba(255,255,255,.7) 32px 36px, transparent 36px 54px);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 96% 42%, 94% 84%, 91% 38%, 87% 55%, 84% 78%, 81% 38%, 76% 56%, 74% 91%, 71% 45%, 66% 58%, 64% 80%, 61% 40%, 56% 52%, 53% 86%, 49% 42%, 45% 57%, 42% 72%, 38% 43%, 34% 54%, 31% 88%, 27% 42%, 22% 58%, 19% 77%, 15% 42%, 11% 56%, 8% 82%, 4% 42%, 0 56%);
  opacity: .62;
}
.section--service-area::before { top: 0; }
.section--service-area::after { bottom: 0; transform: scaleY(-1); }
.service-area-bg::after {
  background:
    linear-gradient(90deg, rgba(0,30,58,.98) 0 32%, rgba(0,30,58,.76) 58%, rgba(0,30,58,.20)),
    radial-gradient(circle at 73% 45%, rgba(20,114,184,.28), transparent 36%);
}
.service-area__content h2 { color: #fff; text-shadow: 0 3px 18px rgba(0,0,0,.32); }

.section--contact {
  background:
    radial-gradient(circle at 78% 20%, rgba(203,233,249,.76), transparent 34%),
    linear-gradient(180deg, #fff 0%, #eefaff 100%);
}
.contact-panel { border-color: rgba(181,224,246,.9); box-shadow: 0 18px 50px rgba(0,30,58,.14); }
.contact-phone a { color: #06265a; }
.footer { background: linear-gradient(180deg, #052c52, #001e3a); }

@media (max-width: 1180px) {
  .hero-mascot { width: clamp(410px, 42vw, 620px); margin-right: -4vw; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero-mascot { width: min(460px, 82vw); margin: -1rem auto -1rem; }
  .hero-atmosphere::after { top: 4.8rem; height: 46px; }
  .section--commercial { background: linear-gradient(180deg, #f8fdff 0%, #e5f7ff 100%); }
  .service-card__body { text-align: left; }
  .service-card__body::before { margin-left: 0; }
  .service-card__body h3, .service-card__body p:last-child { margin-inline: 0; }
}
@media (max-width: 640px) {
  .hero { padding-top: 6.55rem; }
  h1 { font-size: clamp(3.65rem, 15.8vw, 4.7rem); }
  .hero-mascot { width: min(330px, 82vw); }
  .hero-atmosphere::before { inset-top: 5rem; opacity: .45; }
  .trust-card__icon { width: 48px; height: 48px; }
  .section--services .section-heading { text-align: left; }
}

/* Service photo snowy frame: frame behind, photo on top */
.service-card__media {
  position: relative;
  overflow: visible !important;
  padding: 26px;
  border-radius: 22px;
  background: url("assets/ice/snowy-service-frame.png") center / 100% 100% no-repeat !important;
}

.service-card__media::before,
.service-card__media::after,
.photo-frost-top,
.photo-frost-bottom {
  display: none !important;
}

.service-card__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* Snowy divider for light section breaks */
.section,
.trust,
.footer {
  position: relative;
}

.section--services::before,
.section--commercial::before,
.section--about::before,
.section--reviews::before,
.section--contact::before {
  content: "";
  position: absolute;
  top: -52px;
  left: 50%;
  z-index: 4;
  width: min(100vw, 1800px);
  height: clamp(70px, 8vw, 120px);
  pointer-events: none;
  background: url("assets/ice/snowy-section-divider.png") center / 100% 100% no-repeat;
  transform: translateX(-50%);
}

/* Skip dark cinematic areas where the divider's white background would show */
.section--service-area::before,
.footer::before {
  display: none !important;
}

@media (max-width: 700px) {
  .section--services::before,
  .section--commercial::before,
  .section--about::before,
  .section--reviews::before,
  .section--contact::before {
    top: -34px;
    height: 72px;
    width: 125vw;
  }
}

/* Nav logo: text only, no mascot/artwork crop */
.site-nav .logo-slot {
  width: clamp(124px, 11vw, 170px);
  justify-content: center;
  padding: .35rem .55rem;
}

.site-nav .logo-slot__image {
  display: none;
}

.site-nav .logo-slot::before {
  content: "CARLSON\A HVAC &\A REFRIGERATION";
  color: var(--carlson-blue);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.45rem);
  font-weight: 900;
  line-height: .88;
  text-align: center;
  white-space: pre-line;
}

@media (max-width: 700px) {
  .site-nav .logo-slot {
    width: 96px;
    padding-inline: .35rem;
  }

  .site-nav .logo-slot::before {
    font-size: .9rem;
  }
}

/* Brand correction: trust strip */
.trust {
  padding-block: clamp(2.6rem, 4vw, 4.6rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(62, 174, 224, .34), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(203, 239, 249, .2), transparent 34%),
    linear-gradient(180deg, #073a68 0%, #052c52 56%, #031e35 100%);
  border-top: 1px solid rgba(221, 245, 252, .42);
  border-bottom: 1px solid rgba(221, 245, 252, .38);
}

.trust::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.12), transparent 18%, transparent 82%, rgba(255,255,255,.1)),
    repeating-linear-gradient(135deg, rgba(221,245,252,.08) 0 1px, transparent 1px 18px);
  opacity: 1;
}

.trust::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.1), transparent 34%, rgba(0,30,58,.16));
}

.trust-frost-top,
.trust-frost-bottom {
  display: none;
}

.trust__grid {
  position: relative;
  z-index: 1;
  gap: clamp(.75rem, 1.4vw, 1.15rem);
}

.trust-card {
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 126px;
  gap: .65rem 1rem;
  padding: clamp(1rem, 1.6vw, 1.35rem);
  border: 1px solid rgba(203, 239, 249, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 38px rgba(0,30,58,.16);
}

.trust-card:last-child {
  border-right: 1px solid rgba(203, 239, 249, .18);
}

.trust-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(203, 239, 249, .72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, #fff 0 6%, #cbeff9 18%, rgba(62,174,224,.92) 52%, rgba(6,75,122,.82) 100%);
  box-shadow: inset 0 1px 6px rgba(255,255,255,.68), 0 10px 22px rgba(0,30,58,.28);
}

.trust-card:nth-child(1) .trust-card__icon::before { content: "❄"; }
.trust-card:nth-child(2) .trust-card__icon::before { content: "⌂"; }
.trust-card:nth-child(3) .trust-card__icon::before { content: "✦"; }
.trust-card:nth-child(4) .trust-card__icon::before { content: "▦"; }

.trust-card__icon::before {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,30,58,.42);
}

.trust-card h3 {
  align-self: end;
  color: #fff;
  font-size: clamp(1.05rem, 1vw + .8rem, 1.42rem);
  line-height: .95;
  text-shadow: 0 2px 10px rgba(0,30,58,.35);
}

.trust-card p {
  grid-column: 2;
  align-self: start;
  max-width: 16ch;
  color: rgba(244,251,253,.84);
  font-size: clamp(.88rem, .3vw + .82rem, 1rem);
  font-weight: 750;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .trust-card:nth-child(2),
  .trust-card:nth-child(-n+2),
  .trust-card {
    border: 1px solid rgba(203, 239, 249, .18);
  }
}

@media (max-width: 640px) {
  .trust__grid {
    gap: .75rem;
  }

  .trust-card {
    min-height: auto;
    padding: 1rem;
  }

  .trust-card p {
    grid-column: 2;
  }
}

/* Nav logo wordmark: uniform Carlson styling */
.site-nav .logo-slot {
  width: clamp(176px, 16vw, 252px);
  height: 58px;
  justify-content: center;
  align-items: center;
  padding: .28rem .7rem;
  border-radius: .68rem;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(221,245,252,.78));
}

.site-nav .logo-slot::before {
  content: "CARLSON HVAC\A& REFRIGERATION";
  color: #1167b7;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.22rem, 1.6vw, 1.82rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: .035em;
  text-align: center;
  white-space: pre-line;
  text-transform: uppercase;
  background: linear-gradient(180deg, #24aee8 0%, #0b7cc7 45%, #0754aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.75));
}

.site-header.is-scrolled .site-nav .logo-slot {
  height: 50px;
}

@media (max-width: 700px) {
  .site-nav .logo-slot {
    width: 132px;
    height: 44px;
    padding-inline: .42rem;
  }

  .site-nav .logo-slot::before {
    font-size: .98rem;
    letter-spacing: .025em;
  }
}

/* Remove hero background converging line layer */
.hero-atmosphere::before {
  display: none !important;
}

/* Floating hero availability badge */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: clamp(1rem, 1.6vw, 1.4rem);
  border: 1px solid rgba(8, 125, 181, .3);
  border-radius: 999px;
  padding: .58rem .8rem .58rem 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(221,245,252,.72));
  color: #073269;
  box-shadow: 0 18px 38px rgba(6, 44, 79, .12), inset 0 1px 0 rgba(255,255,255,.95);
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.availability-badge__label {
  font-size: clamp(.72rem, .7rem + .12vw, .84rem);
}

.availability-badge strong {
  display: inline-flex;
  min-width: 3.2rem;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #064f9f, #082f72);
  color: #fff;
  font-size: clamp(.96rem, .9rem + .22vw, 1.14rem);
  letter-spacing: .03em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 8px 18px rgba(6,79,159,.22);
}

@media (max-width: 640px) {
  .availability-badge {
    margin-top: .9rem;
    padding: .52rem .64rem .52rem .8rem;
  }
}

/* Reapply cleaned transparent snowy divider */
.section--services::before,
.section--commercial::before,
.section--about::before,
.section--reviews::before,
.section--contact::before {
  top: clamp(-86px, -5vw, -54px);
  height: clamp(86px, 9.8vw, 176px);
  background-image: url("assets/ice/snowy-section-divider-transparent.png") !important;
  background-size: 100% 100% !important;
}

@media (max-width: 700px) {
  .section--services::before,
  .section--commercial::before,
  .section--about::before,
  .section--reviews::before,
  .section--contact::before {
    top: -42px;
    height: 78px;
  }
}

/* Restore original service photo style and remove snowy frame asset */
.service-card__media {
  position: relative;
  overflow: hidden !important;
  padding: 0 !important;
  border: 1px solid rgba(154, 220, 242, .46);
  border-radius: calc(var(--radius-lg) - .45rem);
  background: linear-gradient(135deg, rgba(221,245,252,.84), rgba(255,255,255,.74)) !important;
}

.service-card__media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.service-card__media::after {
  display: block !important;
}

.service-card .photo-frost-top,
.service-card .photo-frost-bottom {
  display: block !important;
}

/* Keep all service icon circles in Carlson blue shades */
.service-card__body::before {
  background: radial-gradient(circle at 35% 25%, #78d4fb 0%, #1684c8 58%, #064f9f 100%) !important;
}

.service-card:nth-child(2) .service-card__body::before {
  background: radial-gradient(circle at 35% 25%, #a7e7ff 0%, #3eaee0 55%, #087db5 100%) !important;
}

.service-card:nth-child(3) .service-card__body::before {
  background: radial-gradient(circle at 35% 25%, #5fc6f5 0%, #0b6eb8 58%, #052c72 100%) !important;
}

/* Trust strip spacing fix: keep cards fully inside the blue band */
.trust {
  overflow: visible;
  padding-top: clamp(3.2rem, 4.8vw, 5rem);
  padding-bottom: clamp(4.4rem, 6vw, 6.6rem);
}

.trust__grid {
  align-items: stretch;
}

.trust-card {
  min-height: clamp(150px, 10vw, 178px);
  align-content: center;
}

.section--services::before {
  top: clamp(-58px, -3.8vw, -38px);
}

@media (max-width: 700px) {
  .trust {
    padding-top: 2.4rem;
    padding-bottom: 3rem;
  }

  .trust-card {
    min-height: auto;
  }
}

/* Remove unwanted snowy section-break border images */
.section--services::before,
.section--commercial::before,
.section--about::before,
.section--reviews::before,
.section--contact::before {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

/* Service-area image: flattering Vegas Strip sunrise */
.section--service-area .service-area-bg img {
  object-position: 58% 50%;
  filter: saturate(.92) contrast(1.04) brightness(.88);
}

/* About photo crop: residential team image */
.about-photo img {
  object-position: 50% 54% !important;
}

/* Restore snowy divider only under Built For Business and before Reviews */
.section--about::before,
.section--reviews::before {
  display: block !important;
  content: "" !important;
  position: absolute;
  top: clamp(-58px, -3.8vw, -38px);
  left: 50%;
  z-index: 4;
  width: min(100vw, 1800px);
  height: clamp(78px, 8vw, 140px);
  pointer-events: none;
  background: url("assets/ice/snowy-section-divider-transparent.png") center / 100% 100% no-repeat !important;
  transform: translateX(-50%);
}

@media (max-width: 700px) {
  .section--about::before,
  .section--reviews::before {
    top: -38px;
    width: 125vw;
    height: 72px;
  }
}

/* Remove unwanted jagged bottom effect from Vegas service-area section */
.section--service-area::after {
  display: none !important;
  content: none !important;
  background: none !important;
  clip-path: none !important;
}

/* Remove unwanted jagged top effect from Vegas service-area section */
.section--service-area::before {
  display: none !important;
  content: none !important;
  background: none !important;
  clip-path: none !important;
}

/* Remove remaining bottom edge peeking from reviews into Vegas section */
.section--reviews::after {
  display: none !important;
  content: none !important;
  background: none !important;
  clip-path: none !important;
}

/* About closing line and contact headline lift */
.section-copy--closing {
  margin-top: .9rem;
  color: #07396f;
  font-weight: 900;
}

.section--contact .section-heading {
  transform: translateY(-18px);
}

@media (max-width: 900px) {
  .section--contact .section-heading {
    transform: none;
  }
}

/* Make About closing line visibly distinct */
.about-copy .section-copy--closing {
  display: block;
  margin-top: 1.25rem;
  border-left: 4px solid var(--carlson-blue);
  border-radius: 0 8px 8px 0;
  padding: .85rem 1rem;
  background: linear-gradient(90deg, rgba(221,245,252,.82), rgba(255,255,255,.38));
  color: #06265a;
  font-size: clamp(1.08rem, .95rem + .35vw, 1.32rem);
  font-weight: 950;
  line-height: 1.38;
}

/* Stronger bump for final CTA headline */
.section--contact .section-heading {
  transform: translateY(-38px) !important;
}

@media (max-width: 900px) {
  .section--contact .section-heading {
    transform: none !important;
  }
}

/* Contact section correction: keep headline with the contact panel */
.section--contact {
  padding-top: clamp(3.6rem, 5.8vw, 5.8rem) !important;
}

.section--contact .contact-grid {
  align-items: center;
}

.section--contact .section-heading {
  transform: none !important;
  align-self: center;
}

/* Move lasting-relationships callout under final CTA headline */
.section--contact .contact-closing {
  max-width: 760px;
  margin-top: 1.1rem;
  margin-left: 0;
}

@media (max-width: 900px) {
  .section--contact .contact-closing {
    max-width: 100%;
  }
}

/* Lift final CTA headline group slightly */
.section--contact .section-heading {
  transform: translateY(-22px) !important;
}

@media (max-width: 900px) {
  .section--contact .section-heading {
    transform: none !important;
  }
}

/* Slim down the two restored snowy dividers */
.section--about::before,
.section--reviews::before {
  top: clamp(-34px, -2.4vw, -24px) !important;
  height: clamp(42px, 4.4vw, 76px) !important;
  opacity: .58;
  filter: saturate(.82) contrast(.9);
  background-size: 100% 72% !important;
}

@media (max-width: 700px) {
  .section--about::before,
  .section--reviews::before {
    top: -24px !important;
    height: 42px !important;
    opacity: .5;
  }
}

/* Keep contact phone number on one line */
.contact-phone a {
  display: block;
  max-width: 100%;
  font-size: clamp(3.05rem, 5vw, 5.35rem) !important;
  line-height: .92;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .contact-phone a {
    font-size: clamp(2.35rem, 13vw, 3.2rem) !important;
  }
}

/* Add skinny snowy divider above final contact section */
.section--contact::before {
  display: block !important;
  content: "" !important;
  position: absolute;
  top: clamp(-34px, -2.4vw, -24px) !important;
  left: 50%;
  z-index: 4;
  width: min(100vw, 1800px);
  height: clamp(42px, 4.4vw, 76px) !important;
  pointer-events: none;
  opacity: .58;
  filter: saturate(.82) contrast(.9);
  background: url("assets/ice/snowy-section-divider-transparent.png") center / 100% 72% no-repeat !important;
  transform: translateX(-50%);
}

@media (max-width: 700px) {
  .section--contact::before {
    top: -24px !important;
    width: 125vw;
    height: 42px !important;
    opacity: .5;
  }
}

/* Update primary buttons to lighter Carlson sky blue */
.btn--primary,
.nav-call {
  background: linear-gradient(180deg, #6fb1ec 0%, #4f97d8 100%) !important;
  color: #06265a !important;
  border-color: rgba(6, 79, 159, .28) !important;
  box-shadow: 0 14px 30px rgba(79, 151, 216, .25), inset 0 1px 0 rgba(255,255,255,.32) !important;
}

.btn--primary:hover,
.nav-call:hover {
  background: linear-gradient(180deg, #7cbbf2 0%, #5aa1df 100%) !important;
}

/* Strengthen final contact divider slightly */
.section--contact::before {
  top: clamp(-26px, -1.8vw, -18px) !important;
  height: clamp(58px, 5.4vw, 92px) !important;
  opacity: .78 !important;
  filter: saturate(.96) contrast(1.04) drop-shadow(0 4px 8px rgba(6,44,79,.12)) !important;
  background-size: 100% 86% !important;
}

@media (max-width: 700px) {
  .section--contact::before {
    top: -18px !important;
    height: 54px !important;
    opacity: .7 !important;
  }
}

/* Trust strip: centered type with simple snowflake detail */
.trust-card {
  display: flex !important;
  min-height: clamp(150px, 10vw, 178px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  text-align: center;
}

.trust-card__icon {
  display: none !important;
}

.trust-card h3 {
  align-self: center;
  max-width: 11ch;
  margin: 0 auto;
  line-height: .92;
  text-align: center;
}

.trust-card p {
  position: relative;
  grid-column: auto;
  align-self: center;
  max-width: 15ch;
  margin: 0 auto;
  text-align: center;
}

.trust-card p::after {
  content: "❄  ❄  ❄";
  display: block;
  margin-top: .72rem;
  color: rgba(221, 245, 252, .82);
  font-family: Georgia, serif;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .35em;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(255,255,255,.18);
}

@media (max-width: 640px) {
  .trust-card p {
    grid-column: auto;
  }
}

/* Trust strip: restore icon layout with cleaner icons */
.trust-card {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: clamp(150px, 10vw, 178px);
  align-content: center;
  align-items: center;
  gap: .65rem 1rem;
  text-align: left;
}

.trust-card__icon {
  display: grid !important;
  place-items: center;
  flex: 0 0 auto;
}

.trust-card h3 {
  align-self: end;
  max-width: 12ch;
  margin: 0;
  text-align: left;
}

.trust-card p {
  grid-column: 2;
  align-self: start;
  max-width: 16ch;
  margin: 0;
  text-align: left;
}

.trust-card p::after {
  display: none !important;
  content: none !important;
}

.trust-card:nth-child(1) .trust-card__icon::before { content: "❄" !important; }
.trust-card:nth-child(2) .trust-card__icon::before { content: "⌂" !important; }
.trust-card:nth-child(3) .trust-card__icon::before { content: "✓" !important; }
.trust-card:nth-child(4) .trust-card__icon::before { content: "▦" !important; }

.trust-card__icon::before {
  display: block;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,30,58,.42);
  transform: none !important;
}

@media (max-width: 640px) {
  .trust-card {
    grid-template-columns: auto minmax(0, 1fr);
    text-align: left;
  }

  .trust-card p {
    grid-column: 2;
  }
}

/* Remove snowy divider above final contact section */
.section--contact::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* Service cards: shrink oversized blue marker dots */
.service-card__body::before {
  width: 34px !important;
  height: 34px !important;
  margin: -2.15rem auto .9rem !important;
  border: 2px solid #fff !important;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.95) 0 12%, rgba(167,231,255,.92) 34%, rgba(22,132,200,.9) 100%) !important;
  box-shadow: 0 8px 18px rgba(0,30,58,.16), inset 0 1px 4px rgba(255,255,255,.72) !important;
}

@media (max-width: 900px) {
  .service-card__body::before {
    margin-left: 0 !important;
  }
}

/* Service cards: use the same light icy marker on all three cards */
.service-card__body::before,
.service-card:nth-child(2) .service-card__body::before,
.service-card:nth-child(3) .service-card__body::before {
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,.96) 0 13%, rgba(199,244,255,.95) 34%, rgba(107,196,232,.92) 72%, rgba(49,169,221,.9) 100%) !important;
  box-shadow: 0 8px 18px rgba(0,30,58,.14), inset 0 1px 5px rgba(255,255,255,.86) !important;
}

/* Hero availability text: eyebrow style under intro copy */
.hero__availability {
  display: inline;
  color: var(--carlson-blue);
  font-size: clamp(.78rem, .72rem + .22vw, .95rem);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Trust strip: small snowflake icons */
.trust-card__icon {
  width: 28px !important;
  height: 28px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.trust-card:nth-child(1) .trust-card__icon::before,
.trust-card:nth-child(2) .trust-card__icon::before,
.trust-card:nth-child(3) .trust-card__icon::before,
.trust-card:nth-child(4) .trust-card__icon::before {
  content: "❄" !important;
}

.trust-card__icon::before {
  color: rgba(221, 245, 252, .92) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.55rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-shadow: 0 1px 8px rgba(255,255,255,.22) !important;
  transform: none !important;
}

/* Request service popup */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--page-pad);
}

.contact-modal:target,
.contact-modal.is-open,
.contact-modal[aria-hidden="false"] {
  display: flex;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 58, .56);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(92svh, 780px);
  overflow: auto;
  border: 1px solid rgba(181,224,246,.92);
  border-radius: 1rem;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background:
    radial-gradient(circle at 82% 14%, rgba(203,233,249,.74), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(238,250,255,.96));
  box-shadow: 0 28px 90px rgba(0,30,58,.28);
}

.contact-modal__panel h2 {
  margin-top: .55rem;
  color: #06265a;
  font-size: clamp(2.25rem, 6vw, 4.6rem);
}

.contact-modal__close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(8,125,181,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  color: #06265a;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.4rem;
}

.contact-form label {
  display: grid;
  gap: .35rem;
}

.contact-form span {
  color: var(--carlson-blue);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(154,220,242,.76);
  border-radius: .65rem;
  padding: .82rem .9rem;
  background: rgba(255,255,255,.9);
  color: #06265a;
  font-weight: 750;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8,125,181,.18);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__wide,
.contact-form__submit {
  grid-column: 1 / -1;
}

/* Mobile format pass */
@media (max-width: 700px) {
  :root {
    --page-pad: .9rem;
  }

  body {
    font-size: 1rem;
  }

  .site-header {
    padding: .55rem .55rem 0;
  }

  .site-nav {
    min-height: 58px !important;
    gap: .35rem;
    padding: .36rem !important;
    border-radius: .82rem;
  }

  .site-header.is-scrolled .site-nav {
    min-height: 54px !important;
  }

  .site-nav .logo-slot {
    width: 118px;
    height: 42px;
    padding-inline: .36rem;
  }

  .site-header.is-scrolled .site-nav .logo-slot {
    height: 40px;
  }

  .site-nav .logo-slot::before {
    font-size: .88rem;
    letter-spacing: .018em;
  }

  .nav-call {
    min-width: 96px;
    min-height: 38px;
    padding-inline: .58rem;
    font-size: .56rem;
    letter-spacing: .04em;
  }

  .menu-toggle {
    width: 38px;
    min-height: 38px;
  }

  .hero {
    min-height: auto;
    padding-top: 5.85rem;
  }

  .hero__grid {
    gap: .35rem;
  }

  .hero__content {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(3.35rem, 15.5vw, 4.35rem);
    line-height: .86;
  }

  h2 {
    font-size: clamp(2.35rem, 10.8vw, 3.75rem);
  }

  .eyebrow {
    font-size: .72rem;
    letter-spacing: .12em;
  }

  .hero__copy {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero__availability {
    font-size: .72rem;
    letter-spacing: .08em;
  }

  .hero__actions {
    gap: .62rem;
    margin-top: 1rem;
  }

  .btn {
    min-height: 48px;
    padding: .9rem 1rem;
    font-size: .74rem;
  }

  .hero-mascot {
    width: min(300px, 78vw);
    margin: .15rem auto -.35rem;
  }

  .trust {
    padding-block: 2rem 2.4rem;
  }

  .trust__grid {
    gap: .65rem;
  }

  .trust-card {
    min-height: auto;
    padding: .9rem;
    border-radius: 8px;
  }

  .trust-card__icon {
    width: 24px !important;
    height: 24px !important;
  }

  .trust-card__icon::before {
    font-size: 1.25rem !important;
  }

  .section {
    padding-block: 4.1rem;
  }

  .section-heading {
    max-width: 100%;
  }

  .service-card-grid,
  .review-grid {
    gap: 1rem;
    margin-top: 1.6rem;
  }

  .service-card {
    border-radius: 1rem;
    padding: .5rem;
  }

  .service-card__media,
  .service-card--tall .service-card__media {
    aspect-ratio: 1.18 / 1;
    border-radius: .82rem;
  }

  .service-card__body {
    padding: 1rem .45rem .7rem;
    text-align: center !important;
  }

  .service-card__body::before {
    margin: -2rem auto .82rem !important;
  }

  .service-card__body h3,
  .service-card__body p:last-child {
    margin-inline: auto !important;
  }

  .service-card__body h3 {
    max-width: 12ch;
    font-size: clamp(2rem, 10.5vw, 2.75rem);
  }

  .service-card__body p:last-child {
    max-width: 26ch;
    font-size: 1rem;
  }

  .split-layout,
  .split-layout--reverse,
  .contact-grid {
    gap: 1.35rem;
  }

  .commercial-photo,
  .about-photo {
    min-height: 260px;
    border-radius: 1rem;
  }

  .review-shell {
    min-height: auto;
    padding: 1.25rem;
    border-radius: .9rem;
  }

  .review-shell::before {
    top: -.35rem;
    left: .65rem;
    font-size: 6.4rem;
  }

  .review-quote {
    font-size: 1.06rem;
    line-height: 1.36;
  }

  .review-shell footer {
    margin-top: 1.6rem;
  }

  .section--service-area {
    min-height: 460px;
  }

  .service-area-bg::after {
    background:
      linear-gradient(90deg, rgba(0,30,58,.98) 0 48%, rgba(0,30,58,.76) 75%, rgba(0,30,58,.32)),
      radial-gradient(circle at 73% 45%, rgba(20,114,184,.22), transparent 36%);
  }

  .contact-panel {
    padding: 1.1rem;
    border-radius: 1rem;
  }

  .contact-phone a {
    font-size: clamp(2.1rem, 11vw, 2.95rem) !important;
  }

  .footer-logo {
    max-width: 210px;
  }

  .footer__grid {
    gap: 1.35rem;
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-modal__panel {
    max-height: 88svh;
    padding-top: 2.8rem;
  }
}

@media (max-width: 380px) {
  .nav-call {
    font-size: 0;
    letter-spacing: 0;
  }

  .nav-call::after {
    content: "Call";
    font-size: .66rem;
    letter-spacing: .08em;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 3.55rem);
  }

  .hero__copy {
    max-width: 31ch;
  }
}

/* Contact card must remain clickable even though it uses the frost-corner visual class */
.contact-panel.frost-corner {
  pointer-events: auto !important;
}

.contact-panel.frost-corner::before {
  pointer-events: none !important;
}

/* Slightly enlarge inline hero availability note */
.hero__availability {
  font-size: clamp(.9rem, .84rem + .28vw, 1.12rem) !important;
}

/* PHONE CLEANUP 02 — final mobile formatting layer */
@media (max-width: 700px) {
  :root {
    --page-pad: .82rem;
    --section-y: 3.75rem;
  }

  body {
    background: linear-gradient(180deg, #f8fdff 0%, #ffffff 44%, #eefaff 100%);
  }

  .container {
    width: min(100% - 1.48rem, var(--container));
  }

  .site-header {
    padding: .48rem .48rem 0;
  }

  .site-nav {
    min-height: 56px !important;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    padding: .32rem !important;
    border-radius: .78rem;
  }

  .site-nav .logo-slot {
    width: 108px;
    height: 40px;
    border-radius: .52rem;
  }

  .site-nav .logo-slot::before {
    font-size: .81rem;
    line-height: .86;
  }

  .nav-actions {
    grid-column: 3;
    gap: .36rem;
  }

  .nav-call {
    min-width: 84px;
    min-height: 36px;
    padding-inline: .52rem;
    font-size: 0;
  }

  .nav-call::after {
    content: "Call";
    font-size: .64rem;
    letter-spacing: .08em;
  }

  .menu-toggle {
    width: 36px;
    min-height: 36px;
    border-radius: .7rem;
  }

  .nav-links {
    top: calc(100% + .42rem);
    border-radius: .82rem;
  }

  .nav-links a {
    padding: .82rem .72rem;
    font-size: .78rem;
  }

  .hero {
    min-height: auto;
    padding-top: 5.45rem;
    padding-bottom: 1.15rem;
  }

  .hero-atmosphere::after,
  .hero-frost-top,
  .hero-frost-bottom,
  .hero-ground {
    display: none;
  }

  .hero__grid {
    gap: .65rem;
  }

  .hero__content {
    text-align: left;
  }

  h1 {
    margin-top: .42rem;
    font-size: clamp(3.08rem, 14.6vw, 4rem);
    line-height: .88;
    letter-spacing: -.018em;
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.22rem);
    line-height: .93;
  }

  .eyebrow {
    font-size: .68rem;
    letter-spacing: .1em;
    line-height: 1.4;
  }

  .hero__copy {
    max-width: 32ch;
    margin-top: .78rem;
    font-size: .96rem;
    line-height: 1.4;
  }

  .hero__availability {
    display: block;
    margin-top: .42rem;
    font-size: .86rem !important;
    letter-spacing: .1em;
  }

  .hero__actions,
  .contact-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .56rem;
    margin-top: .95rem;
  }

  .btn {
    min-height: 46px;
    width: 100%;
    border-radius: .78rem;
    padding: .86rem .9rem;
    font-size: .7rem;
    letter-spacing: .07em;
  }

  .hero-mascot {
    width: min(245px, 66vw);
    margin: -.12rem auto -.15rem;
  }

  .trust {
    padding-block: 1.45rem 1.6rem;
  }

  .trust__grid {
    gap: .52rem;
  }

  .trust-card {
    min-height: 0;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: .34rem .72rem;
    padding: .78rem .82rem;
    border-radius: .62rem;
  }

  .trust-card__icon {
    width: 22px !important;
    height: 22px !important;
  }

  .trust-card__icon::before {
    font-size: 1.05rem !important;
  }

  .trust-card h3 {
    max-width: none;
    font-size: 1.04rem;
    line-height: .96;
  }

  .trust-card p {
    max-width: none;
    font-size: .9rem;
    line-height: 1.28;
  }

  .section {
    padding-block: 3.45rem;
  }

  .section-heading h2 {
    margin-top: .48rem;
  }

  .section-copy {
    margin-top: .82rem;
    font-size: .98rem;
    line-height: 1.45;
  }

  .service-card-grid,
  .review-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: .92rem;
    margin-top: 1.25rem;
  }

  .service-card {
    padding: .42rem;
    border-radius: .88rem;
    box-shadow: 0 12px 30px rgba(0,30,58,.11);
  }

  .service-card__media,
  .service-card--tall .service-card__media {
    aspect-ratio: 1.32 / 1;
    border-radius: .72rem;
  }

  .service-card__body {
    padding: .9rem .44rem .72rem;
  }

  .service-card__body::before {
    width: 28px !important;
    height: 28px !important;
    margin: -1.72rem auto .7rem !important;
  }

  .service-card__kicker {
    margin-bottom: .46rem;
    font-size: .62rem;
    letter-spacing: .1em;
    line-height: 1.25;
  }

  .service-card__body h3 {
    max-width: 12ch;
    font-size: clamp(1.72rem, 8.8vw, 2.32rem);
  }

  .service-card__body p:last-child {
    max-width: 27ch;
    margin-top: .58rem;
    font-size: .96rem;
    line-height: 1.38;
  }

  .split-layout,
  .split-layout--reverse,
  .contact-grid {
    gap: 1.05rem;
  }

  .commercial-copy,
  .about-copy {
    max-width: 100%;
  }

  .commercial-photo,
  .about-photo {
    min-height: 220px;
    border-radius: .86rem;
  }

  .section--commercial,
  .section--about,
  .section--reviews,
  .section--contact {
    padding-block: 3.35rem;
  }

  .review-shell {
    padding: 1rem;
    border-radius: .82rem;
  }

  .review-shell::before {
    top: -.26rem;
    left: .54rem;
    font-size: 5.2rem;
  }

  .review-quote {
    font-size: 1rem;
    line-height: 1.34;
  }

  .review-shell footer {
    gap: .1rem;
    margin-top: 1.2rem;
  }

  .review-shell strong {
    font-size: .72rem;
    letter-spacing: .1em;
  }

  .review-shell span {
    font-size: .94rem;
  }

  .section--service-area {
    min-height: 400px;
    padding-block: 3rem;
  }

  .service-area-bg img {
    object-position: 62% 50%;
  }

  .service-area-bg::after {
    background:
      linear-gradient(90deg, rgba(0,30,58,.98) 0 58%, rgba(0,30,58,.78) 86%, rgba(0,30,58,.46)),
      radial-gradient(circle at 74% 46%, rgba(20,114,184,.18), transparent 36%);
  }

  .service-area__content {
    gap: .72rem;
  }

  .service-area__content p:not(.eyebrow) {
    max-width: 28ch;
    font-size: .96rem;
    line-height: 1.42;
  }

  .contact-panel {
    padding: .95rem;
    border-radius: .86rem;
  }

  .contact-panel p {
    padding-block: .72rem;
  }

  .contact-panel strong {
    font-size: .66rem;
    letter-spacing: .12em;
  }

  .contact-panel a,
  .contact-panel span {
    overflow-wrap: anywhere;
    font-size: .98rem;
    line-height: 1.35;
  }

  .contact-phone a {
    font-size: clamp(1.96rem, 10vw, 2.62rem) !important;
    letter-spacing: -.03em;
  }

  .contact-modal {
    align-items: flex-end;
    padding: .72rem;
  }

  .contact-modal__panel {
    width: 100%;
    max-height: 90svh;
    border-radius: .95rem;
    padding: 2.65rem .95rem 1rem;
  }

  .contact-modal__panel h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: .94;
  }

  .contact-modal__close {
    top: .62rem;
    right: .62rem;
    width: 38px;
    height: 38px;
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
    gap: .7rem;
    margin-top: 1rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 44px;
    border-radius: .58rem;
    padding: .72rem .78rem;
    font-size: 1rem;
  }

  .footer {
    padding-block: 2.4rem 1.1rem;
  }

  .footer-logo {
    max-width: 178px;
  }

  .footer-contact,
  .footer-nav,
  .footer-link-groups {
    gap: .46rem;
  }

  .footer a,
  .footer span,
  .footer p {
    font-size: .92rem;
    line-height: 1.45;
  }
}

@media (max-width: 360px) {
  .site-nav .logo-slot {
    width: 98px;
  }

  .site-nav .logo-slot::before {
    font-size: .75rem;
  }

  .nav-call {
    min-width: 66px;
  }

  h1 {
    font-size: clamp(2.86rem, 14.4vw, 3.18rem);
  }

  .hero__copy {
    max-width: 29ch;
  }
}

/* MOBILE LIVE 03 — phone-only layout polish */
@media (max-width: 700px) {
  html {
    scroll-padding-top: 72px;
  }

  body.menu-locked {
    touch-action: none;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 1.28rem, var(--container));
  }

  .site-header {
    padding: .42rem .42rem 0;
  }

  .site-nav {
    min-height: 54px !important;
    grid-template-columns: minmax(104px, auto) minmax(0, 1fr) auto;
    gap: .24rem;
    padding: .28rem !important;
    border-radius: .72rem;
  }

  .site-nav .logo-slot {
    width: 112px;
    height: 38px;
    min-width: 0;
  }

  .site-header.is-scrolled .site-nav .logo-slot {
    height: 38px;
  }

  .site-nav .logo-slot::before {
    font-size: .78rem;
    line-height: .88;
    letter-spacing: .012em;
  }

  .nav-actions {
    min-width: 0;
  }

  .nav-call {
    min-width: 70px;
    max-width: 72px;
    min-height: 36px;
    padding-inline: .42rem;
    border-radius: .64rem;
  }

  .menu-toggle {
    width: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: .64rem;
  }

  .nav-links {
    top: calc(100% + .36rem);
    max-height: min(0px, calc(100svh - 4.75rem));
    border-radius: .76rem;
  }

  .site-header.menu-open .nav-links {
    max-height: calc(100svh - 4.75rem);
    overflow-y: auto;
  }

  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: .76rem .7rem;
  }

  .hero {
    padding-top: 5.12rem;
    padding-bottom: .95rem;
  }

  .hero__grid {
    gap: .38rem;
  }

  .hero__content .eyebrow {
    max-width: 24ch;
  }

  h1 {
    max-width: 7ch;
    font-size: clamp(2.98rem, 14.25vw, 3.86rem);
    line-height: .9;
  }

  h2 {
    font-size: clamp(2.08rem, 9.55vw, 3.08rem);
    letter-spacing: -.022em;
  }

  .hero__copy {
    max-width: 31ch;
    margin-top: .68rem;
    font-size: .95rem;
    line-height: 1.38;
  }

  .hero__availability {
    margin-top: .36rem;
    font-size: .8rem !important;
  }

  .btn {
    min-height: 45px;
    border-radius: .72rem;
  }

  .hero-mascot {
    width: min(228px, 62vw);
    margin: -.2rem auto 0;
  }

  .trust {
    padding-block: 1.3rem 1.45rem;
  }

  .trust-card {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: .28rem .65rem;
    padding: .72rem .76rem;
  }

  .trust-card h3 {
    font-size: .98rem;
  }

  .trust-card p {
    font-size: .86rem;
  }

  .section,
  .section--commercial,
  .section--about,
  .section--reviews,
  .section--contact {
    padding-block: 3.05rem;
  }

  .section-heading h2 {
    max-width: 9.5ch;
  }

  .section--about::before,
  .section--reviews::before {
    width: 100vw;
   }

  .section--services .section-heading h2,
  .section--reviews .section-heading h2,
  .section--contact .section-heading h2 {
    max-width: 10.5ch;
  }

  .section-copy {
    font-size: .95rem;
    line-height: 1.42;
  }

  .service-card-grid,
  .review-grid {
    gap: .82rem;
    margin-top: 1.08rem;
  }

  .service-card {
    padding: .36rem;
  }

  .service-card__media,
  .service-card--tall .service-card__media {
    aspect-ratio: 1.45 / 1;
  }

  .service-card__body {
    padding: .82rem .38rem .66rem;
  }

  .service-card__body h3 {
    font-size: clamp(1.58rem, 8.2vw, 2.16rem);
  }

  .service-card__body p:last-child {
    max-width: 29ch;
    font-size: .93rem;
  }

  .commercial-photo,
  .about-photo {
    min-height: 210px;
  }

  .commercial-photo img {
    object-position: 56% 50%;
  }

  .about-photo img {
    object-position: 50% 50% !important;
  }

  .review-shell {
    padding: .92rem;
  }

  .review-quote {
    font-size: .96rem;
  }

  .section--service-area {
    min-height: 380px;
  }

  .section--service-area h2 {
    max-width: 8.5ch;
  }

  .service-area-bg img {
    object-position: 68% 50%;
  }

  .contact-grid {
    gap: .88rem;
  }

  .contact-panel {
    padding: .82rem;
  }

  .contact-phone a {
    font-size: clamp(1.82rem, 9.1vw, 2.42rem) !important;
  }

  .footer {
    padding-top: 2.2rem;
  }
}

@media (max-width: 390px) {
  .site-nav {
    grid-template-columns: minmax(94px, auto) minmax(0, 1fr) auto;
  }

  .site-nav .logo-slot {
    width: 100px;
  }

  .site-nav .logo-slot::before {
    font-size: .71rem;
  }

  .nav-call {
    min-width: 62px;
    max-width: 62px;
  }

  .nav-call::after {
    font-size: .6rem;
  }

  .menu-toggle {
    width: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    width: 16px;
  }

  h1 {
    font-size: clamp(2.74rem, 13.6vw, 3.2rem);
  }

  .hero__copy {
    max-width: 30ch;
    font-size: .92rem;
  }

  .hero-mascot {
    width: min(210px, 60vw);
  }

  .contact-phone a {
    font-size: clamp(1.7rem, 8.8vw, 2.08rem) !important;
  }
}

@media (max-width: 340px) {
  .site-header {
    padding-inline: .34rem;
  }

  .site-nav {
    grid-template-columns: minmax(88px, auto) minmax(0, 1fr) auto;
  }

  .site-nav .logo-slot {
    width: 92px;
  }

  .site-nav .logo-slot::before {
    font-size: .66rem;
  }

  .nav-call {
    min-width: 56px;
    max-width: 56px;
  }

  .nav-call::after {
    font-size: .56rem;
  }

  .menu-toggle {
    width: 32px;
    min-width: 32px;
  }

  h1 {
    font-size: 2.62rem;
  }

  h2 {
    font-size: 1.98rem;
  }

  .hero__copy,
  .section-copy,
  .service-card__body p:last-child,
  .service-area__content p:not(.eyebrow) {
    font-size: .9rem;
  }
}

/* MOBILE LIVE 04 — deeper phone composition pass */
@media (max-width: 700px) {
  html {
    scroll-padding-top: 86px;
  }

  section[id] {
    scroll-margin-top: 86px;
  }

  .site-nav {
    box-shadow: 0 10px 28px rgba(0, 30, 58, .13), inset 0 -1px 0 rgba(20, 114, 184, .1);
  }

  .nav-links {
    box-shadow: 0 18px 38px rgba(0, 30, 58, .18);
  }

  .hero {
    padding-top: 4.96rem;
    padding-bottom: .5rem;
  }

  .hero__grid {
    gap: .1rem;
  }

  .hero__content {
    display: grid;
    align-content: start;
  }

  .hero__content .eyebrow {
    max-width: 18ch;
  }

  h1 {
    margin-top: .35rem;
    font-size: clamp(2.84rem, 13.5vw, 3.66rem);
    line-height: .88;
  }

  h2 {
    font-size: clamp(2.02rem, 9vw, 2.9rem);
    line-height: .96;
  }

  h3 {
    line-height: .96;
  }

  .hero__copy {
    max-width: 34ch;
    margin-top: .62rem;
    font-size: .93rem;
    line-height: 1.36;
  }

  .hero__availability {
    display: inline;
    margin-top: 0;
    white-space: nowrap;
  }

  .hero__actions {
    gap: .5rem;
    margin-top: .8rem;
  }

  .hero-mascot {
    width: min(260px, 68vw);
    margin: .32rem auto -.2rem;
  }

  .trust {
    padding-block: 1.18rem 1.35rem;
  }

  .trust-card {
    padding: .66rem .74rem;
  }

  .section,
  .section--commercial,
  .section--about,
  .section--reviews,
  .section--contact {
    padding-block: 2.85rem;
  }

  .section--services {
    padding-top: 3.15rem;
  }

  .section-heading {
    display: grid;
    gap: .42rem;
  }

  .section-heading h2 {
    margin-top: 0;
  }

  .section-copy {
    margin-top: .28rem;
  }

  .service-card-grid {
    gap: 1rem;
  }

  .service-card {
    padding: .46rem;
  }

  .service-card__media,
  .service-card--tall .service-card__media {
    aspect-ratio: 1.28 / 1;
  }

  .service-card__body {
    padding: .92rem .55rem .76rem;
  }

  .service-card__body::before {
    margin-top: -1.74rem !important;
  }

  .service-card__body h3 {
    max-width: 13.5ch;
    font-size: clamp(1.72rem, 7.8vw, 2.12rem);
    line-height: .94;
  }

  .service-card__body p:last-child {
    max-width: 30ch;
    margin-top: .62rem;
    line-height: 1.42;
  }

  .split-layout,
  .split-layout--reverse,
  .contact-grid {
    gap: 1.18rem;
  }

  .commercial-photo,
  .about-photo {
    min-height: 230px;
  }

  .section--commercial .section-copy,
  .about-copy .section-copy,
  .contact-closing {
    max-width: 34ch;
  }

  .review-grid {
    gap: .92rem;
  }

  .review-shell {
    padding: 1rem .96rem .92rem;
  }

  .review-quote {
    font-size: .98rem;
    line-height: 1.38;
  }

  .section--service-area {
    min-height: 360px;
    padding-block: 2.8rem;
  }

  .section--service-area h2 {
    max-width: 9ch;
  }

  .service-area__content p:not(.eyebrow) {
    max-width: 30ch;
  }

  .contact-panel {
    padding: .92rem;
  }

  .contact-panel p {
    gap: .26rem;
  }

  .footer__grid {
    gap: 1.1rem;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: clamp(2.66rem, 13.2vw, 3.06rem);
  }

  h2 {
    font-size: clamp(1.94rem, 8.7vw, 2.62rem);
  }

  .hero__copy {
    max-width: 31ch;
  }

  .hero-mascot {
    width: min(238px, 66vw);
  }

  .service-card__body h3 {
    font-size: clamp(1.56rem, 7.65vw, 1.98rem);
  }
}

@media (max-width: 340px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .hero__copy {
    max-width: 29ch;
  }

  .hero-mascot {
    width: min(214px, 64vw);
  }

  .service-card__body h3 {
    font-size: 1.48rem;
  }
}

/* MOBILE LIVE 05 — requested first-screen and footer fixes */
@media (max-width: 700px) {
  .hero__copy {
    max-width: none;
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }

  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
  }

  .footer-nav {
    min-width: 0;
  }

  .footer-nav strong {
    font-size: .66rem;
    letter-spacing: .12em;
  }

  .footer-nav a {
    font-size: .86rem;
    line-height: 1.35;
  }
}

@media (max-width: 340px) {
  .footer-link-groups {
    gap: .7rem;
  }

  .footer-nav strong {
    font-size: .6rem;
  }

  .footer-nav a {
    font-size: .8rem;
  }
}

/* MOBILE LIVE 06 — requested hero headline and eyebrow layout */
@media (max-width: 700px) {
  .hero__content .eyebrow {
    max-width: none;
    width: 100%;
    font-size: clamp(.62rem, 2.6vw, .74rem);
    letter-spacing: .075em;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero__content h1 {
    display: grid;
    max-width: none;
    width: 100%;
    gap: .04em;
    font-size: clamp(3.08rem, 13.4vw, 3.78rem);
    line-height: .84;
  }

  .hero__content h1 span {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .hero__content .eyebrow {
    font-size: clamp(.58rem, 2.45vw, .68rem);
    letter-spacing: .055em;
  }

  .hero__content h1 {
    font-size: clamp(2.86rem, 13vw, 3.26rem);
  }
}

@media (max-width: 340px) {
  .hero__content .eyebrow {
    font-size: .54rem;
    letter-spacing: .035em;
  }

  .hero__content h1 {
    font-size: 2.62rem;
  }
}

/* MOBILE LIVE 07 — requested About headline line breaks */
@media (max-width: 700px) {
  #about-title {
    display: grid;
    max-width: none;
    width: 100%;
    gap: .04em;
  }

  #about-title span {
    display: block;
    white-space: nowrap;
  }
}

/* TABLET LIVE 01 — make iPad use desktop-style sizing and layout */
@media (min-width: 701px) and (max-width: 900px) {
  :root {
    --page-pad: clamp(1.2rem, 2.6vw, 2rem);
  }

  .site-header {
    padding: .72rem var(--page-pad) 0;
  }

  .site-nav {
    min-height: 66px !important;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .42rem .52rem .42rem .62rem !important;
    border-radius: .95rem;
  }

  .site-nav .logo-slot {
    width: clamp(148px, 20vw, 178px);
    height: 48px;
    padding-inline: .5rem;
  }

  .site-header.is-scrolled .site-nav .logo-slot {
    height: 44px;
  }

  .site-nav .logo-slot::before {
    font-size: clamp(.98rem, 1.8vw, 1.18rem);
    letter-spacing: .02em;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav-actions {
    margin-left: .5rem;
  }

  .nav-call {
    min-width: auto;
    min-height: 40px;
    padding: .7rem .76rem;
    font-size: .58rem;
    letter-spacing: .045em;
  }

  .nav-links {
    position: static;
    display: flex;
    grid-template-columns: none;
    gap: clamp(.38rem, 1.05vw, .64rem);
    max-height: none;
    overflow: visible;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    color: var(--navy);
    font-size: clamp(.52rem, 1.05vw, .62rem);
    letter-spacing: .055em;
  }

  .nav-links a {
    min-height: 0;
    padding: .72rem 0;
    border-radius: 0;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: transparent;
  }

  .nav-links a::after {
    display: block;
  }

  .hero {
    min-height: max(680px, 82svh);
    padding-top: 6.9rem;
    padding-bottom: 0;
  }

  .hero__grid {
    min-height: calc(max(680px, 82svh) - 6.9rem);
    grid-template-columns: minmax(0, .88fr) minmax(260px, 1.12fr);
    align-items: center;
    gap: clamp(.8rem, 2vw, 1.6rem);
  }

  .hero__content {
    padding-bottom: clamp(1.6rem, 3vw, 2.8rem);
    text-align: left;
  }

  .hero__content .eyebrow {
    max-width: none;
    width: auto;
    font-size: clamp(.66rem, 1.2vw, .78rem);
    letter-spacing: .12em;
    white-space: normal;
  }

  .hero__content h1 {
    display: block;
    max-width: 7ch;
    width: auto;
    margin-top: .5rem;
    font-size: clamp(4.25rem, 8.2vw, 6rem);
    line-height: .84;
    letter-spacing: -.025em;
  }

  .hero__content h1 span {
    display: block;
    white-space: nowrap;
  }

  .hero__copy {
    max-width: 44ch;
    width: auto;
    margin-top: 1rem;
    font-size: clamp(.98rem, 1.65vw, 1.14rem);
    line-height: 1.4;
  }

  .hero__availability {
    display: inline;
    white-space: nowrap;
  }

  .hero__actions {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.2rem;
  }

  .hero__actions .btn {
    width: auto;
    min-height: 48px;
    border-radius: 999px;
    padding-inline: 1rem;
    font-size: .68rem;
  }

  .hero-mascot {
    width: min(440px, 43vw);
    justify-self: end;
    margin: 0 -2vw .7rem 0;
  }

  .trust__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .65rem;
  }

  .trust-card {
    min-height: 124px;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: .45rem;
    padding: .9rem .65rem;
    text-align: center;
  }

  .trust-card__icon {
    display: none !important;
  }

  .trust-card h3,
  .trust-card p {
    grid-column: auto;
    max-width: 13ch;
    text-align: center;
  }

  .service-card-grid,
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.75rem, 1.5vw, 1rem);
  }

  .service-card__media,
  .service-card--tall .service-card__media {
    aspect-ratio: .98 / 1;
  }

  .service-card__body {
    text-align: center;
  }

  .service-card__body::before {
    margin-left: auto !important;
  }

  .service-card__body h3,
  .service-card__body p:last-child {
    margin-inline: auto;
  }

  .service-card__body h3 {
    font-size: clamp(1.35rem, 3vw, 1.8rem);
  }

  .split-layout,
  .split-layout--reverse,
  .contact-grid {
    grid-template-columns: minmax(0, .92fr) minmax(280px, 1.08fr);
  }

  .split-layout--reverse {
    grid-template-columns: minmax(280px, 1.02fr) minmax(0, .98fr);
  }

  .split-layout--reverse .section-heading {
    order: 2;
  }

  .commercial-photo {
    order: 0;
  }

  .commercial-photo,
  .about-photo {
    min-height: clamp(320px, 40vw, 410px);
  }

  #about-title {
    display: block;
    max-width: 8.8ch;
    width: auto;
  }

  #about-title span {
    display: inline;
    white-space: normal;
  }

  .footer__grid {
    grid-template-columns: minmax(150px, .72fr) minmax(210px, 1fr) minmax(250px, 1.05fr);
    gap: clamp(1rem, 2.2vw, 1.8rem);
  }

  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE LOGO 01 — make phone nav wordmark easier to read */
@media (max-width: 700px) {
  .site-nav {
    grid-template-columns: minmax(124px, auto) minmax(0, 1fr) auto;
  }

  .site-nav .logo-slot {
    width: 132px;
    height: 42px;
    padding-inline: .42rem;
  }

  .site-header.is-scrolled .site-nav .logo-slot {
    height: 42px;
  }

  .site-nav .logo-slot::before {
    font-size: .88rem;
    line-height: .86;
    letter-spacing: .012em;
  }
}

@media (max-width: 390px) {
  .site-nav {
    grid-template-columns: minmax(112px, auto) minmax(0, 1fr) auto;
  }

  .site-nav .logo-slot {
    width: 120px;
    height: 40px;
  }

  .site-nav .logo-slot::before {
    font-size: .8rem;
  }
}

@media (max-width: 340px) {
  .site-nav {
    grid-template-columns: minmax(102px, auto) minmax(0, 1fr) auto;
  }

  .site-nav .logo-slot {
    width: 110px;
  }

  .site-nav .logo-slot::before {
    font-size: .73rem;
  }
}
