:root {
  --navy: #061a35;
  --navy-2: #0a2448;
  --navy-3: #102f5a;
  --steel: #d9dde4;
  --silver: #f0f1f4;
  --white: #ffffff;
  --ink: #0a1526;
  --muted: #5d6674;
  --line: rgba(6, 26, 53, 0.18);
  --shadow: 0 24px 65px rgba(6, 26, 53, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 122px;
  padding: 17px clamp(18px, 4vw, 58px);
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 245px;
}
.brand img { width: 238px; height: auto; }
.brand span {
  padding-left: 66px;
  color: rgba(255,255,255,.82);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 30px);
}
.site-nav a {
  position: relative;
  color: rgba(255,255,255,.9);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 3px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.site-nav a:hover::after,
.site-nav a:focus::after { transform: scaleX(1); }

.call-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 214px;
  padding: 18px 22px;
  background: #e7e8ec;
  color: var(--navy);
  border: 2px solid #bfc4cf;
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
  font-weight: 900;
  letter-spacing: .04em;
}
.call-box span { font-size: 22px; }

.nav-toggle {
  display: none;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  font-size: 30px;
  padding: 4px 11px;
}

.hero {
  position: relative;
  min-height: clamp(560px, 62vw, 735px);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}
.hero-rotator {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,26,53,.2), rgba(6,26,53,.08)),
    var(--hero-image) center / contain no-repeat;
  opacity: 0;
  filter: saturate(.9) contrast(1.04);
  transition: opacity 1.25s ease-in-out;
}
.hero-bg.active { opacity: 1; }
.hero-angle { display: none; }
.hero-content {
  max-width: 790px;
  margin: clamp(58px, 7vw, 92px) clamp(22px, 4vw, 66px);
  padding: clamp(28px, 4vw, 44px);
  background: rgba(6, 26, 53, .3);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  color: #fff;
}
.eyebrow,
.mini-title,
.section-kicker {
  color: rgba(255,255,255,.75);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 12px 0 24px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.8rem, 6.3vw, 6.7rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: .018em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.hero h1 span { color: rgba(255,255,255,.72); }
.hero-lede {
  max-width: 475px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.4vw, 1.23rem);
  font-weight: 600;
}

.button-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  min-width: 176px;
  padding: 15px 25px;
  border: 2px solid rgba(255,255,255,.78);
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: rgba(12, 48, 92, .78); }
.btn.ghost { background: rgba(6, 26, 53, .24); }
.btn span { font-size: 30px; line-height: 0; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(180deg, #f7f7f8, #e7e8ec);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #c8ccd5;
}
.feature-strip article {
  min-height: 196px;
  padding: 38px clamp(20px, 3vw, 46px);
  border-right: 1px solid #c7ccd6;
}
.feature-strip article:last-child { border-right: 0; }
.icon {
  min-height: 50px;
  color: var(--navy-2);
  line-height: 1;
}
.icon-svg,
.icon-mask {
  width: 52px;
  height: 52px;
}
.icon-svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}
.icon-mask {
  display: inline-block;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}
.paint-gun-icon {
  -webkit-mask-image: url("assets/icons/paint-gun.png");
  mask-image: url("assets/icons/paint-gun.png");
}
.repair-tools-icon {
  -webkit-mask-image: url("assets/icons/repair-tools.png");
  mask-image: url("assets/icons/repair-tools.png");
}
.handshake-icon {
  -webkit-mask-image: url("assets/icons/handshake.png");
  mask-image: url("assets/icons/handshake.png");
}
.truck-icon {
  width: 81px;
  height: 68px;
  -webkit-mask-image: url("assets/icons/truck.svg");
  mask-image: url("assets/icons/truck.svg");
}
.feature-strip h2 {
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 27px;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.feature-strip p { max-width: 250px; color: #29384d; font-weight: 600; }

.section-pad { padding: clamp(58px, 7vw, 92px) clamp(22px, 5vw, 72px); }
.dark-section {
  background:
    radial-gradient(circle at 50% -10%, rgba(255,255,255,.13), transparent 38%),
    linear-gradient(180deg, #071c38, #06152c);
  color: #fff;
}
.light-section { background: #f0f1f4; }
.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.68);
}
.section-kicker span { display: block; width: 80px; height: 2px; background: rgba(255,255,255,.48); }
.process-section h2,
.gallery h2,
.faq h2,
.cta-band h2 {
  margin-bottom: 38px;
  color: inherit;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: .045em;
  text-align: center;
  text-transform: uppercase;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  max-width: 1260px;
  margin: 0 auto;
}
.process-grid article {
  position: relative;
  min-height: 238px;
  padding: 52px 22px 28px;
  border: 2px solid rgba(255,255,255,.62);
  text-align: center;
}
.process-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 46%;
  right: -32px;
  color: rgba(255,255,255,.72);
  font-size: 32px;
}
.process-grid b {
  position: absolute;
  top: -28px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #d8d9dd;
  color: var(--navy);
  box-shadow: inset 0 0 0 2px rgba(6,26,53,.15);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 42px;
  font-weight: 900;
}
.process-icon {
  display: grid;
  place-items: center;
  min-height: 56px;
  color: #fff;
}
.process-icon .icon-svg,
.process-icon .icon-mask {
  width: 54px;
  height: 54px;
}
.process-icon .icon-svg { stroke-width: 4; }
.process-icon .handshake-icon {
  width: 70px;
  height: 64px;
}
.process-icon .truck-icon {
  width: 132px;
  height: 108px;
}
.process-grid h3 {
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  line-height: .98;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.process-grid p { color: rgba(255,255,255,.78); font-size: 15px; font-weight: 600; }

.why-section {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(310px, .9fr) minmax(260px, .48fr);
  align-items: stretch;
  background: #f1f2f5;
}
.why-image img { width: 100%; height: 100%; min-height: 365px; object-fit: cover; }
.why-copy { padding: clamp(40px, 5vw, 72px); }
.why-copy .mini-title,
.gallery .mini-title,
.faq .mini-title { color: var(--navy); }
.why-copy h2 {
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.why-copy ul { list-style: none; padding: 0; margin: 24px 0 0; }
.why-copy li {
  position: relative;
  margin: 12px 0;
  padding-left: 34px;
  font-weight: 800;
  color: #13253e;
}
.why-copy li::before { content: "★"; position: absolute; left: 0; color: var(--navy-3); }
blockquote {
  position: relative;
  margin: 28px 34px 28px 0;
  padding: 40px 32px;
  align-self: center;
  background: #fff;
  border: 1px solid #d5d8df;
  color: #1d2a3c;
  box-shadow: 0 18px 45px rgba(6,26,53,.12);
  font-weight: 700;
}
blockquote span {
  display: block;
  color: var(--navy-3);
  font-family: Georgia, serif;
  font-size: 75px;
  line-height: .55;
}
blockquote cite { display: block; margin-top: 18px; color: var(--navy); font-style: normal; font-weight: 900; text-transform: uppercase; }

.section-heading { max-width: 930px; margin: 0 auto 34px; text-align: center; }
.section-heading h2 { color: var(--navy); }
.section-heading p:last-child { color: var(--muted); font-weight: 600; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}
.gallery-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(6, 26, 53, .12);
}
.gallery-grid img { width: 100%; height: 285px; object-fit: cover; filter: contrast(1.03); }
.gallery-grid figcaption {
  padding: 18px 20px;
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.faq-grid article {
  padding: 28px;
  background: #fff;
  border-top: 6px solid var(--navy);
  box-shadow: 0 16px 44px rgba(6, 26, 53, .1);
}
.faq-grid h3 {
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}
.faq-grid p { color: var(--muted); font-weight: 600; }

.cta-band {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  padding: 26px clamp(22px, 5vw, 72px);
  background: var(--navy);
  color: #fff;
}
.cta-star { color: #fff; font-size: 70px; line-height: 1; }
.cta-band h2 { margin: 0; text-align: left; font-size: clamp(2.1rem, 4vw, 4rem); }
.cta-band p { margin: 4px 0 0; color: rgba(255,255,255,.76); font-weight: 700; }
.phone-link {
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: .075em;
  white-space: nowrap;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #c9ced8;
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .055em;
  text-align: center;
  text-transform: uppercase;
}
.contact-details div { background: #f4f5f7; padding: 18px 20px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 5vw, 72px);
  background: #041224;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}
.site-footer p { margin: 0; }
.site-footer a { color: #fff; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto auto; }
  .site-nav { grid-column: 1 / -1; order: 3; }
  .call-box { justify-self: end; }
  .process-grid { gap: 22px; }
  .process-grid article:not(:last-child)::after { display: none; }
  .why-section { grid-template-columns: 1fr 1fr; }
  blockquote { grid-column: 1 / -1; margin: 0 clamp(22px, 5vw, 72px) 48px; }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; min-height: auto; gap: 14px; }
  .brand img { width: 205px; }
  .brand span { padding-left: 55px; font-size: 15px; }
  .nav-toggle { display: block; }
  .call-box { grid-column: 1 / -1; justify-self: stretch; min-width: 0; padding: 13px 16px; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255,255,255,.13);
  }
  .site-nav.open { display: grid; justify-content: stretch; gap: 0; }
  .site-nav a { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-nav a::after { display: none; }
  .hero-bg {
    background:
      linear-gradient(90deg, rgba(6,26,53,.2), rgba(6,26,53,.08)),
      var(--hero-image) center / cover no-repeat;
  }
  .hero-content { max-width: 700px; }
  .feature-strip,
  .process-grid,
  .gallery-grid,
  .faq-grid,
  .contact-details { grid-template-columns: 1fr; }
  .feature-strip article { border-right: 0; border-bottom: 1px solid #c7ccd6; }
  .feature-strip p { max-width: none; }
  .why-section { grid-template-columns: 1fr; }
  .why-image img { min-height: 275px; }
  blockquote { margin: 0 22px 42px; }
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-band h2 { text-align: center; }
  .cta-star { display: none; }
  .site-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  body { overflow-x: hidden; }
  .site-header {
    position: static;
    padding: 12px 14px 14px;
  }
  .brand {
    min-width: 0;
    justify-items: start;
  }
  .brand img { width: 174px; }
  .brand span { padding-left: 44px; font-size: 12px; }
  .nav-toggle {
    align-self: start;
    margin-top: 4px;
  }
  .call-box {
    min-height: 52px;
    font-size: 14px;
  }
  .hero {
    min-height: 565px;
  }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(6,26,53,.22), rgba(6,26,53,.12)),
      var(--hero-image) center / cover no-repeat;
  }
  .hero-content {
    margin: 42px 16px;
    padding: 24px 18px 28px;
    background: rgba(6, 26, 53, .36);
  }
  .eyebrow,
  .mini-title,
  .section-kicker {
    font-size: 14px;
    letter-spacing: .14em;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 11.6vw, 3.6rem);
    line-height: .9;
  }
  .hero-lede {
    font-size: .98rem;
  }
  .button-row {
    gap: 10px;
  }
  .button-row .btn { width: 100%; }
  .feature-strip article {
    min-height: 0;
    padding: 30px 22px;
  }
  .icon,
  .process-icon {
    min-height: 42px;
  }
  .icon-svg,
  .icon-mask {
    width: 46px;
    height: 46px;
  }
  .truck-icon {
    width: 76px;
    height: 62px;
  }
  .section-pad {
    padding: 48px 16px;
  }
  .section-kicker span {
    width: 42px;
  }
  .process-section h2,
  .gallery h2,
  .faq h2,
  .cta-band h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
    margin-bottom: 32px;
  }
  .process-section h2 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.35rem;
    letter-spacing: .025em;
  }
  .process-grid {
    gap: 42px;
  }
  .process-grid article {
    min-height: 0;
    padding: 46px 18px 24px;
  }
  .process-icon .icon-svg,
  .process-icon .icon-mask {
    width: 48px;
    height: 48px;
  }
  .process-icon .handshake-icon {
    width: 66px;
    height: 58px;
  }
  .process-icon .truck-icon {
    width: 128px;
    height: 104px;
    margin: -16px 0 -10px;
  }
  .why-copy {
    padding: 42px 22px;
  }
  .why-copy h2 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }
  .gallery-grid img {
    height: 235px;
  }
  .cta-band .btn {
    width: 100%;
  }
}


.brand-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(46px, 6vw, 78px) clamp(22px, 5vw, 72px);
  background: linear-gradient(135deg, #f7f8fb, #e9edf3);
  border-bottom: 1px solid #c8ccd5;
}
.brand-showcase-copy {
  max-width: 520px;
}
.brand-showcase-copy .mini-title {
  color: var(--navy);
}
.brand-showcase h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4.9rem);
  line-height: .92;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.brand-showcase p:last-child {
  color: #29384d;
  font-size: 1.05rem;
  font-weight: 700;
}
.brand-showcase figure {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 50% 62%, rgba(6, 26, 53, .12), rgba(6, 26, 53, 0) 58%);
}
.brand-showcase img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 38px rgba(6, 26, 53, .18));
}

@media (max-width: 860px) {
  .brand-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-showcase-copy {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .brand-showcase {
    padding: 38px 16px;
    overflow: hidden;
  }
  .brand-showcase h2 {
    font-size: clamp(1.78rem, 8.8vw, 2.72rem);
    line-height: .98;
  }
  .brand-showcase figure {
    margin-inline: -6px;
    padding: 8px;
  }
}

.page-hero {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(48px, 6vw, 76px);
}
.page-hero .section-heading {
  margin-bottom: 0;
}
.page-hero h1 {
  margin: 10px 0 18px;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: .9;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.page-hero p:last-child {
  max-width: 820px;
  margin-inline: auto;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
}

.payments-banner {
  padding: clamp(26px, 4vw, 48px) clamp(16px, 4vw, 48px);
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  text-align: center;
}
.payments-banner img {
  display: block;
  width: min(100%, 1180px);
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(6, 26, 53, .14);
}
.dark-section + .payments-banner,
.cta-band + .payments-banner {
  background: #fff;
}
@media (max-width: 640px) {
  .payments-banner {
    padding: 22px 12px 30px;
  }
  .payments-banner img {
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(6, 26, 53, .12);
  }
}
.payments-banner p {
  margin: 14px auto 0;
  max-width: 900px;
  color: var(--navy);
  font-weight: 800;
}

.gallery-count {
  width: fit-content;
  margin: -8px auto 28px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.large-gallery {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  max-width: 1380px;
}
.large-gallery figure {
  overflow: hidden;
  border-radius: 14px;
}
.large-gallery a {
  display: block;
}
.large-gallery img {
  display: block;
  height: 230px;
  transition: transform .22s ease, filter .22s ease;
}
.large-gallery a:hover img {
  transform: scale(1.035);
  filter: contrast(1.06) saturate(1.04);
}
@media (max-width: 520px) {
  .gallery-count {
    font-size: 18px;
    text-align: center;
  }
  .large-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .large-gallery img {
    height: 145px;
  }
}

@media (max-width: 520px) {
  .page-hero h1,
  .gallery .section-heading h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }
  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    line-height: .95;
  }
  .gallery .section-heading h2 {
    font-size: clamp(2.05rem, 10vw, 2.95rem);
    line-height: 1;
  }
}

@media (max-width: 520px) {
  .gallery .page-hero h1 {
    font-size: clamp(2rem, 9.4vw, 2.45rem);
    letter-spacing: .03em;
  }
  .gallery .section-heading h2,
  #gallery .section-heading h2 {
    font-size: clamp(1.8rem, 8.8vw, 2.35rem);
    letter-spacing: .03em;
  }
}

.before-after-intro {
  border-bottom: 1px solid var(--line);
}
.case-study-wrap {
  background: #f4f6fa;
}
.case-study {
  display: grid;
  grid-template-columns: minmax(260px, .34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(46px, 6vw, 78px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(6, 26, 53, .14);
}
.case-study:nth-child(even) {
  background: #fff;
}
.case-copy {
  position: sticky;
  top: 148px;
  align-self: start;
}
.case-copy h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  line-height: .9;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.case-copy p:not(.mini-title) {
  color: #32445c;
  font-weight: 700;
}
.case-copy span {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.case-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.case-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(6, 26, 53, .12);
  box-shadow: 0 14px 34px rgba(6, 26, 53, .12);
}
.case-gallery a {
  display: block;
}
.case-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .22s ease, filter .22s ease;
}
.case-gallery a:hover img {
  transform: scale(1.035);
  filter: contrast(1.06) saturate(1.04);
}
.case-gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(6, 26, 53, .86);
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .case-study {
    grid-template-columns: 1fr;
  }
  .case-copy {
    position: static;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .before-after-hero h1,
  .before-after-intro h2,
  .case-copy h2 {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
    line-height: .95;
  }
  .case-study {
    padding: 42px 14px;
  }
  .case-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .case-gallery img {
    height: 145px;
  }
  .case-gallery figcaption {
    font-size: 13px;
    left: 7px;
    bottom: 7px;
    padding: 4px 8px;
  }
}

@media (max-width: 520px) {
  .before-after-hero h1 {
    font-size: clamp(2.2rem, 10vw, 2.85rem);
    line-height: .94;
    letter-spacing: .035em;
  }
  .before-after-hero .section-heading,
  .before-after-intro .section-heading,
  .case-copy {
    max-width: 100%;
    overflow: hidden;
  }
  .before-after-intro h2,
  .case-copy h2 {
    font-size: clamp(2rem, 9.2vw, 2.65rem);
    line-height: .96;
    letter-spacing: .03em;
  }
}

@media (max-width: 520px) {
  .before-after-hero .section-heading,
  .before-after-intro .section-heading,
  #gallery .section-heading,
  .page-hero .section-heading {
    width: min(100%, calc(100vw - 32px));
    margin-left: auto;
    margin-right: auto;
  }
  .before-after-hero h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.25rem);
  }
  .before-after-hero p,
  .before-after-intro p,
  .case-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 520px) {
  .before-after-hero p,
  .before-after-intro p,
  .case-copy p:not(.mini-title) {
    font-size: .92rem;
    line-height: 1.45;
  }
}

.light-section .mini-title,
.before-after-intro .mini-title,
.case-copy .mini-title {
  color: var(--navy);
}
.case-gallery figcaption {
  display: none;
}

#case-3 .case-gallery {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
#case-3 .case-gallery img {
  height: 190px;
}
@media (max-width: 1180px) {
  #case-3 .case-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  #case-3 .case-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #case-3 .case-gallery img {
    height: 145px;
  }
}

.case-gallery {
  align-items: start;
}
.case-gallery figure {
  align-self: start;
}

.seo-service-area {
  border-top: 1px solid rgba(6, 26, 53, .1);
  border-bottom: 1px solid rgba(6, 26, 53, .1);
}
.seo-service-area h2 {
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
  line-height: .95;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.seo-service-area p:last-child {
  max-width: 960px;
  margin-inline: auto;
  color: #34465e;
  font-weight: 700;
}

.contact-card-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(16, 47, 90, .12), transparent 28%),
    linear-gradient(135deg, #f7f8fb, #e8edf5);
}
.contact-card {
  display: grid;
  grid-template-columns: minmax(220px, .38fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(6, 26, 53, .16);
  box-shadow: 0 28px 70px rgba(6, 26, 53, .18);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: var(--navy);
}
.contact-card-logo {
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 22px;
  background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.contact-card-logo img {
  width: min(100%, 260px);
  height: auto;
}
.contact-card-copy .mini-title {
  color: var(--navy);
}
.contact-card-copy h2 {
  margin: 4px 0 10px;
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: .86;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.contact-card-role {
  margin-bottom: 22px;
  color: #34465e;
  font-weight: 800;
}
.contact-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-card-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #eef2f7;
  color: var(--navy);
  font-weight: 900;
  border: 1px solid rgba(6, 26, 53, .14);
}
.contact-card-links a:hover,
.contact-card-links a:focus {
  background: var(--navy);
  color: #fff;
}
@media (max-width: 720px) {
  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-card::before {
    width: 100%;
    height: 10px;
    inset: 0 0 auto 0;
  }
  .contact-card-logo {
    max-width: 300px;
    margin-inline: auto;
  }
  .contact-card-links {
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .contact-card-section {
    padding: 36px 14px;
  }
  .contact-card {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .contact-card-copy h2 {
    font-size: clamp(2.85rem, 15vw, 4rem);
  }
  .contact-card-links a {
    width: 100%;
    justify-content: center;
  }
}

.contact-card-copy,
.contact-card-logo {
  min-width: 0;
}
@media (max-width: 520px) {
  .contact-card-copy h2 {
    font-size: clamp(2.15rem, 11.2vw, 3rem);
    letter-spacing: .03em;
    white-space: normal;
  }
  .contact-card-role {
    font-size: .9rem;
    line-height: 1.35;
  }
}

/* 3D business card on contact page */
.business-card-wrap {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  perspective: 1400px;
}
.business-card-wrap > .mini-title {
  margin-bottom: 14px;
  color: var(--navy);
}
.business-card-3d.contact-card {
  display: block;
  width: min(100%, 880px);
  aspect-ratio: 1.82 / 1;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  overflow: visible;
  transform-style: preserve-3d;
}
.business-card-3d.contact-card::before {
  display: none;
}
.contact-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: businessCardTurn 9s ease-in-out infinite;
  transition: transform .8s cubic-bezier(.2, .75, .2, 1);
}
.business-card-3d.is-locked .contact-card-inner {
  animation: none;
}
.contact-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 46px);
  border: 3px solid var(--navy);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,247,251,.98));
  box-shadow:
    0 26px 70px rgba(6, 26, 53, .22),
    0 2px 0 rgba(255,255,255,.9) inset;
  backface-visibility: hidden;
  overflow: hidden;
}
.contact-card-face::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(6, 26, 53, .18);
  border-radius: 18px;
  pointer-events: none;
}
.contact-card-front {
  background:
    radial-gradient(circle at 85% 18%, rgba(255,255,255,.12), transparent 26%),
    linear-gradient(135deg, #061a35, #0e315f 68%, #061a35);
  color: #fff;
}
.contact-card-front img {
  width: min(72%, 520px);
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.24));
}
.contact-card-front span {
  position: absolute;
  bottom: clamp(28px, 4vw, 44px);
  color: rgba(255,255,255,.82);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-card-back {
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  transform: rotateY(180deg);
  text-align: center;
}
.contact-card-back h2 {
  margin: 4px 0 10px;
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.8rem, 7.6vw, 6.8rem);
  line-height: .84;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.contact-card-back .mini-title {
  color: var(--navy);
}
.contact-card-back .contact-card-role {
  margin-bottom: 22px;
}
@keyframes businessCardTurn {
  0%, 34% { transform: rotateY(0deg) rotateX(0deg); }
  50%, 84% { transform: rotateY(180deg) rotateX(0deg); }
  100% { transform: rotateY(360deg) rotateX(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-card-inner {
    animation: none;
  }
}
@media (max-width: 640px) {
  .business-card-3d.contact-card {
    aspect-ratio: .62 / 1;
  }
  .contact-card-face {
    padding: 26px 18px;
    border-radius: 22px;
  }
  .contact-card-front img {
    width: 88%;
  }
  .contact-card-front span {
    max-width: 220px;
    line-height: 1.15;
  }
  .contact-card-back h2 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }
  .contact-card-back .contact-card-role {
    font-size: .9rem;
    line-height: 1.35;
  }
}

@media (max-width: 640px) {
  .business-card-3d.contact-card {
    aspect-ratio: 1.82 / 1;
  }
  .contact-card-front img {
    width: 70%;
  }
  .contact-card-front span {
    bottom: 20px;
    max-width: none;
    font-size: .82rem;
  }
  .contact-card-back h2 {
    font-size: clamp(1.8rem, 9.2vw, 2.45rem);
    margin-bottom: 6px;
  }
  .contact-card-back .contact-card-role {
    margin-bottom: 10px;
    font-size: .72rem;
  }
  .contact-card-back .mini-title {
    font-size: .68rem;
    margin-bottom: 2px;
  }
  .contact-card-back .contact-card-links {
    gap: 6px;
  }
  .contact-card-back .contact-card-links a {
    min-height: 34px;
    padding: 7px 10px;
    font-size: .72rem;
  }
}

.contact-card-flip {
  margin: 0 0 16px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  padding: 9px 16px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(6, 26, 53, .12);
}
.contact-card-flip:hover,
.contact-card-flip:focus {
  background: var(--navy);
  color: #fff;
}

.how-to-section {
  border-top: 1px solid rgba(6, 26, 53, .1);
}
.how-to-section h2 {
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: .95;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.how-to-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(10px, 1.8vw, 18px);
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(6, 26, 53, .14);
  box-shadow: 0 22px 58px rgba(6, 26, 53, .14);
}
.how-to-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.how-to-card figcaption {
  padding: 14px 8px 2px;
  color: #34465e;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 520px) {
  .how-to-section h2 {
    font-size: clamp(2rem, 9.8vw, 2.8rem);
  }
  .how-to-card {
    border-radius: 16px;
    padding: 8px;
  }
  .how-to-card img {
    border-radius: 10px;
  }
  .how-to-card figcaption {
    font-size: .9rem;
  }
}

@media (max-width: 520px) {
  .faq .page-hero h1,
  .faq .section-heading h2,
  #faq .section-heading h2,
  .how-to-section .section-heading h2 {
    font-size: clamp(1.8rem, 8.6vw, 2.45rem);
    line-height: .98;
    letter-spacing: .025em;
    max-width: 100%;
  }
  .faq .section-heading,
  #faq .section-heading,
  .how-to-section .section-heading {
    width: min(100%, calc(100vw - 32px));
    overflow: hidden;
  }
  .how-to-section .section-heading p:last-child {
    font-size: .88rem;
    line-height: 1.45;
  }
}

/* JS drives the contact card rotation for consistent desktop/mobile behavior. */
.contact-card-inner {
  animation: none !important;
  will-change: transform;
}

.business-card-3d {
  touch-action: none;
  user-select: none;
}
.business-card-3d.is-dragging {
  cursor: grabbing;
}
.business-card-3d.is-dragging .contact-card-inner {
  transition: none;
}

.contact-quick-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.contact-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(6, 26, 53, .16);
}
.contact-quick-links a:hover,
.contact-quick-links a:focus {
  background: var(--navy-3);
}
@media (max-width: 520px) {
  .contact-quick-links a {
    width: 100%;
  }
}

.contact-form-section {
  border-top: 1px solid rgba(6, 26, 53, .1);
  border-bottom: 1px solid rgba(6, 26, 53, .1);
}
.contact-form-section h2 {
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.quote-form {
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(6, 26, 53, .15);
  box-shadow: 0 24px 65px rgba(6, 26, 53, .14);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 900;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 2px solid rgba(6, 26, 53, .16);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #f7f9fc;
  font: inherit;
  font-weight: 600;
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16, 47, 90, .12);
}
.quote-form textarea {
  resize: vertical;
}
.quote-form button {
  border: 0;
  cursor: pointer;
}
.form-note {
  margin: 14px 0 0;
  color: #5d6674;
  font-size: .92rem;
  font-weight: 700;
}
.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 520px) {
  .contact-form-section h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }
  .quote-form {
    padding: 20px 14px;
    border-radius: 18px;
  }
  .quote-form .btn {
    width: 100%;
  }
}

/* Contact form hardening: keep labels and fields aligned even after cached/live reloads. */
.quote-form,
.quote-form * {
  box-sizing: border-box;
}
.quote-form {
  display: block;
  width: min(100% - 32px, 1020px);
}
.quote-form .form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px 22px;
}
.quote-form label {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
  text-align: left;
}
.quote-form input,
.quote-form textarea {
  display: block;
  min-height: 52px;
}
.quote-form textarea {
  min-height: 150px;
}
.quote-form ::placeholder {
  color: #7a8493;
  opacity: 1;
}
.quote-form > .btn {
  margin-top: 4px;
}
@media (max-width: 720px) {
  .quote-form {
    width: min(100% - 24px, 1020px);
  }
  .quote-form .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.field-help {
  margin-top: -2px;
  color: #5d6674;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}
.field-help a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.field-help a:hover,
.field-help a:focus {
  color: var(--navy-3);
}

.field-help-button {
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 0;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.field-help-button:hover,
.field-help-button:focus {
  color: var(--navy-3);
}
.help-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.help-modal.is-open {
  display: flex;
}
.help-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 36, .72);
  backdrop-filter: blur(4px);
}
.help-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 24px;
  background: #fff;
  border: 3px solid var(--navy);
  box-shadow: 0 34px 90px rgba(0,0,0,.38);
}
.help-modal-dialog .mini-title {
  color: var(--navy);
}
.help-modal-dialog h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: .95;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.help-modal-dialog p:not(.mini-title) {
  color: #34465e;
  font-weight: 800;
}
.help-modal-dialog img {
  width: 100%;
  height: auto;
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid rgba(6, 26, 53, .14);
}
.help-modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: -8px -8px 8px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 520px) {
  .help-modal {
    padding: 12px;
  }
  .help-modal-dialog {
    max-height: 90vh;
    border-radius: 18px;
  }
  .help-modal-dialog h2 {
    font-size: clamp(1.8rem, 8.8vw, 2.45rem);
  }
}

.about-story,
.about-process-detail {
  border-top: 1px solid rgba(6, 26, 53, .1);
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .55fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.about-lede {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(6, 26, 53, .14);
  box-shadow: 0 22px 60px rgba(6, 26, 53, .12);
}
.about-lede .mini-title { color: var(--navy); }
.about-lede h2,
.about-specialty h2,
.about-process-detail h2 {
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  line-height: .92;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.about-lede p:not(.mini-title) {
  color: #34465e;
  font-weight: 700;
  font-size: 1.05rem;
}
.about-stats {
  display: grid;
  gap: 16px;
}
.about-stats article {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 24px;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 46px rgba(6, 26, 53, .16);
}
.about-stats strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: .9;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.about-stats span {
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}
.about-specialty .section-heading h2,
.about-specialty .section-heading p:last-child {
  color: #fff;
}
.about-card-grid,
.about-services-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.about-card-grid article,
.about-services-list article {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(6, 26, 53, .14);
  box-shadow: 0 18px 48px rgba(6, 26, 53, .12);
}
.about-card-grid article {
  background: rgba(255,255,255,.96);
}
.about-card-grid h3,
.about-services-list h3 {
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: .98;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.about-card-grid p,
.about-services-list p {
  color: #435268;
  font-weight: 700;
}
@media (max-width: 980px) {
  .about-story-grid,
  .about-card-grid,
  .about-services-list {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  .about-lede,
  .about-card-grid article,
  .about-services-list article {
    border-radius: 18px;
    padding: 22px;
  }
  .about-lede h2,
  .about-specialty h2,
  .about-process-detail h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
}

/* About page contrast/caching safety overrides. */
.about-specialty.dark-section .section-heading h2,
.about-specialty.dark-section .section-heading p,
.about-specialty.dark-section .mini-title {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.26);
}
.about-specialty.dark-section .section-heading p:last-child {
  color: rgba(255,255,255,.84) !important;
}
.about-story .about-stats article {
  background: var(--navy) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.12);
}
.about-story .about-stats strong,
.about-story .about-stats span {
  display: block;
  color: #fff !important;
}
.about-story .about-stats span {
  color: rgba(255,255,255,.82) !important;
}
.about-specialty .about-card-grid article {
  background: #fff !important;
  color: var(--ink) !important;
}
.about-specialty .about-card-grid h3 {
  color: var(--navy) !important;
}
.about-specialty .about-card-grid p {
  color: #33445c !important;
}
