@font-face {
  font-family: Poppins;
  src: url("/assets/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("/assets/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("/assets/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --navy: #13306e;
  --ink: #192c49;
  --muted: #536079;
  --gold: #f6a609;
  --line: #dce3eb;
  --soft: #f5f7fa;
  --blue: #1e55d6;
  --max: 1248px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  font:
    400 15px/1.75 Poppins,
    Arial,
    sans-serif;
  color: var(--ink);
  background: #fff;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: var(--navy);
}
h1 {
  font-size: clamp(40px, 4.65vw, 68px);
  font-weight: 700;
}
h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
p {
  margin-top: 18px;
  color: var(--muted);
}
a {
  color: inherit;
  text-decoration: none;
}
p a,
.source-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
:focus-visible {
  outline: 3px solid #1e55d6;
  outline-offset: 5px;
}
.navy :focus-visible,
footer :focus-visible {
  outline-color: #ffcb64;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}
.section {
  padding: 96px 0;
}
.soft {
  background: var(--soft);
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #865806;
  margin: 0 0 22px;
}
.small {
  font-size: 12px;
  line-height: 1.8;
}
.large-copy {
  font-size: 23px;
  line-height: 1.5;
}
.skip {
  position: fixed;
  top: -90px;
  left: 16px;
  z-index: 100;
  background: white;
  padding: 12px 20px;
}
.skip:focus {
  top: 8px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: #142446;
  padding: 15px 21px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
  min-height: 50px;
  transition: background 0.15s;
}
.button:hover {
  background: #edb333;
}
.button.secondary {
  background: transparent;
  color: var(--navy);
  border-color: #aab7cc;
}
.button.secondary:hover {
  background: #edf1f8;
}
.button:disabled {
  opacity: 0.7;
  cursor: wait;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  min-height: 44px;
  margin-top: 20px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  line-height: 1.15;
}
.brand > span {
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 700;
}
.brand b {
  color: #986000;
}
.brand small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.header-row nav {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-left: auto;
}
.header-row nav a {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  padding: 12px 0;
}
.header-row nav a:hover {
  color: var(--blue);
}
.header-row > .button {
  font-size: 11px;
  padding: 12px;
}
.header-row > .button svg {
  width: 16px;
}
.menu-toggle {
  display: none;
}
.hero {
  background: #f6f8fb;
  padding-top: 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy {
  padding: 34px 0;
}
.hero-copy > p:not(.eyebrow):not(.small) {
  max-width: 560px;
}
.hero-subtitle {
  font-size: 23px;
  line-height: 1.45;
  color: var(--navy);
  margin-top: 22px;
}
.hero-copy .small {
  margin-top: 20px;
}
.hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  align-self: stretch;
  min-height: 510px;
  background: #cdd7de;
}
.hero-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.hero-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #122543e8;
  color: #fff;
  font-size: 9px;
  padding: 10px 14px;
}
.image-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 22px;
  background: #fff;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  border-left: 4px solid var(--gold);
}
.image-note svg {
  background: var(--gold);
  border-radius: 50%;
  padding: 5px;
  width: 33px;
  height: 33px;
}
.assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 29px 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.assurance span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
}
.assurance svg {
  color: #8b620c;
  width: 19px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 42px;
}
.section-heading > p {
  max-width: 410px;
  margin: 0;
  font-size: 14px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.category-card {
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  min-width: 0;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 8px;
}
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5fb;
  border-radius: 6px;
  width: 48px;
  height: 48px;
  color: var(--navy);
}
.icon-box svg {
  width: 27px;
  height: 27px;
}
.tag {
  font-size: 9px;
  color: #536079;
  background: #f4f6f8;
  padding: 5px 8px;
  border-radius: 3px;
}
.category-card p {
  font-size: 13px;
  line-height: 1.8;
}
.category-card .small {
  font-size: 11px;
  margin-bottom: 20px;
}
.category-card .text-link {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  justify-content: space-between;
  font-size: 12px;
}
.routing-note {
  background: var(--navy);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.routing-note h3 {
  font-size: 27px;
  color: #fff;
}
.routing-note p {
  color: #d8e1f3;
  font-size: 13px;
}
.routing-note .eyebrow {
  color: #ffce74;
}
.routing-note .button {
  margin-top: auto;
}
.navy {
  background: var(--navy);
  color: white;
}
.navy h2,
.navy h3,
.navy .text-link {
  color: white;
}
.navy p {
  color: #d6e0f4;
}
.navy .eyebrow {
  color: #ffd17b;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
}
.about-layout h2 {
  font-size: 38px;
  line-height: 1.3;
}
.about-layout .large-copy {
  margin-top: 0;
  color: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 35px 28px;
}
.service-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.number {
  color: #8e650f;
  font-size: 12px;
}
.service-grid h3 {
  font-size: 16px;
  line-height: 1.45;
  margin-top: 16px;
}
.service-grid p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 10px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 27px;
  padding: 0;
  list-style: none;
  margin: 48px 0 28px;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c1cbdc;
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 12px;
  color: var(--navy);
  margin-bottom: 24px;
}
.process-grid h3 {
  font-size: 17px;
  line-height: 1.4;
}
.process-grid p {
  font-size: 12px;
}
.proof-empty {
  padding: 40px;
  background: var(--soft);
  display: grid;
  grid-template-columns: 70px 1fr 240px;
  gap: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.outline-symbol svg {
  width: 56px;
  height: 56px;
  color: #9daecc;
}
.proof-empty h3 {
  font-size: 21px;
}
.proof-empty p {
  font-size: 13px;
}
.proof-empty .button {
  margin-top: 22px;
}
.proof-list {
  border-left: 1px solid var(--line);
  padding-left: 30px;
  font-size: 12px;
  display: grid;
  gap: 18px;
}
.proof-list span:before {
  content: "↗";
  margin-right: 12px;
  color: #87631a;
}
.trust-section {
  background: #fbf7ee;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.trust-grid svg {
  color: #8e640c;
  margin-bottom: 16px;
}
.trust-grid h3 {
  font-size: 18px;
}
.trust-grid p {
  font-size: 13px;
}
.residential-preview {
  border: 1px solid #dfc78c;
  background: #fffdf7;
  border-radius: 10px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.residential-preview .button {
  margin: 24px 0 6px;
}
.residential-preview > div > p:first-child {
  margin-top: 0;
}
.residential-preview .large-copy {
  font-size: 19px;
  color: var(--navy);
}
.service-area {
  background: #eef3f8;
}
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.area-tags span {
  border: 1px solid #cad6e3;
  background: #fff;
  padding: 9px 15px;
  border-radius: 4px;
  font-size: 12px;
}
.area-tags a {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 10px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-layout > div > p {
  max-width: 330px;
}
.faqs details {
  border-bottom: 1px solid #ced7e4;
}
.faqs summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  padding: 22px 0;
  color: var(--navy);
}
summary::-webkit-details-marker {
  display: none;
}
.faqs summary span {
  font-size: 24px;
  font-weight: 400;
}
.faqs details[open] summary span {
  transform: rotate(45deg);
}
.faqs details p {
  font-size: 13px;
  margin: 0 0 23px;
  padding-right: 25px;
}
.source-links {
  margin-top: 24px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.contact-options {
  margin: 32px 0;
  display: grid;
  gap: 22px;
}
.contact-options a {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  overflow-wrap: anywhere;
}
.contact-options small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 5px;
}
.contact-options svg {
  vertical-align: middle;
}
.contact-layout form {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 10px;
  scroll-margin-top: 110px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 24px 0 12px;
}
.field {
  min-width: 0;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-height: 47px;
  padding: 11px 12px;
  border: 1px solid #aebbd0;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
}
.field textarea {
  resize: vertical;
}
.field small {
  font-size: 10px;
  line-height: 1.6;
  display: block;
  margin-top: 7px;
  color: var(--muted);
}
.error {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  color: #ad2424;
  min-height: 5px;
  margin-top: 5px;
}
[aria-invalid="true"] {
  border-color: #ad2424 !important;
}
.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.submit {
  width: 100%;
  margin-top: 22px;
}
.form-status {
  font-size: 13px;
  white-space: pre-line;
  margin-top: 16px;
}
.form-status:empty {
  display: none;
}
.failure-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.final-cta {
  padding: 75px 0;
  text-align: center;
}
.final-cta .actions {
  justify-content: center;
}
.navy .secondary {
  color: #fff;
  border-color: #91a7d0;
}
.navy .secondary:hover {
  background: #1d417f;
}
footer {
  background: #0c234e;
  color: #d1dbeb;
  padding: 64px 0 22px;
  font-size: 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr 1.1fr;
  gap: 50px;
}
footer .brand > span {
  color: white;
}
footer .brand b {
  color: #ffc364;
}
footer p {
  color: #bbc9df;
  font-size: 12px;
}
footer h2 {
  font-size: 14px;
  letter-spacing: 0;
  color: white;
  margin-bottom: 17px;
}
footer .footer-grid > div > a:not(.brand):not(.qr) {
  display: block;
  min-height: 34px;
  padding: 5px 0;
  overflow-wrap: anywhere;
}
footer a:hover {
  text-decoration: underline;
}
.qr {
  display: inline-block;
  margin-top: 15px;
}
.qr img {
  border: 5px solid white;
  border-radius: 3px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #294067;
  margin-top: 44px;
  padding-top: 24px;
  font-size: 10px;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.mobile-contact {
  display: none;
}
.narrow {
  max-width: 800px;
}
.narrow h2 {
  margin-top: 42px;
  font-size: 28px;
}
.narrow .button {
  margin-top: 24px;
}
.narrow h1 {
  overflow-wrap: anywhere;
}
@media (min-width: 1500px) {
  .hero-grid {
    gap: 70px;
  }
  .hero-image {
    min-height: 555px;
  }
}
@media (max-width: 1200px) {
  .header-row nav {
    gap: 11px;
  }
  .header-row > .button {
    display: none;
  }
  .header-row nav a {
    font-size: 12px;
  }
  .hero-grid {
    gap: 35px;
  }
  .about-layout {
    gap: 55px;
  }
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-layout {
    gap: 45px;
  }
  .footer-grid {
    gap: 30px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .brand > span {
    font-size: 18px;
  }
  .header-row {
    gap: 10px;
  }
  .header-row nav {
    gap: 9px;
  }
  .header-row nav a {
    font-size: 10px;
  }
  .hero-grid {
    gap: 28px;
  }
  .hero-copy .actions .button {
    width: 100%;
  }
  .hero-image {
    min-height: 560px;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-empty {
    grid-template-columns: 60px 1fr;
  }
  .proof-list {
    grid-column: 2;
  }
  .faq-layout {
    gap: 35px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .residential-preview {
    gap: 35px;
    padding: 35px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 92px;
  }
  .section {
    padding: 64px 0;
  }
  .header-row {
    min-height: 76px;
    justify-content: space-between;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f2f5f9;
    color: var(--navy);
    border: 1px solid #cfdaea;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
  }
  .header-row nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
    max-height: calc(100dvh - 150px);
    overflow: auto;
    box-shadow: 0 8px 18px #13233f10;
  }
  .header-row nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .header-row nav a {
    font-size: 14px;
    padding: 14px;
  }
  .hero {
    padding-top: 14px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .hero-copy {
    padding: 25px 0;
  }
  .hero-copy .actions .button {
    width: auto;
  }
  .hero-image {
    min-height: 380px;
  }
  .hero-image > img {
    object-position: center 53%;
  }
  .hero-subtitle {
    font-size: 21px;
  }
  .assurance {
    grid-template-columns: 1fr 1fr;
    margin-top: 25px;
    padding: 25px 0;
    gap: 20px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 22px;
    max-width: 560px;
  }
  .about-layout,
  .area-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-layout h2 {
    font-size: 32px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .residential-preview {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-layout > div > p {
    max-width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    background: white;
    border-top: 1px solid #c6d1e1;
    padding-bottom: env(safe-area-inset-bottom);
    min-height: 58px;
  }
  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    padding: 17px 5px;
    color: var(--navy);
  }
  .mobile-contact a:last-child {
    background: var(--gold);
  }
  .mobile-contact svg {
    width: 16px;
  }
  .footer-bottom {
    padding-bottom: 65px;
  }
  .final-cta {
    padding: 65px 0;
  }
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 36px);
  }
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 31px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-copy > .hero-subtitle {
    font-size: 21px;
  }
  .hero-copy .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-copy .small {
    font-size: 11px;
  }
  .hero-image {
    min-height: 330px;
  }
  .image-note {
    left: 14px;
    right: 14px;
    font-size: 15px;
    padding: 15px;
    bottom: 50px;
  }
  .hero-image figcaption {
    font-size: 8px;
    padding: 9px 12px;
  }
  .assurance span {
    font-size: 10px;
    gap: 8px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .category-card {
    padding: 26px;
  }
  .card-top {
    margin-bottom: 23px;
  }
  .routing-note {
    gap: 10px;
  }
  .routing-note .button {
    margin-top: 18px;
  }
  .service-grid {
    gap: 25px 19px;
  }
  .service-grid h3 {
    font-size: 15px;
  }
  .service-grid p {
    font-size: 11px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-grid li {
    padding-left: 66px;
    position: relative;
    min-height: 65px;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: 0;
  }
  .process-grid p {
    margin-top: 10px;
  }
  .proof-empty {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 18px;
  }
  .proof-list {
    grid-column: 1;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .outline-symbol {
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .trust-grid article {
    padding-left: 42px;
    position: relative;
  }
  .trust-grid svg {
    position: absolute;
    left: 0;
  }
  .trust-grid p {
    margin-top: 10px;
  }
  .residential-preview {
    padding: 27px;
  }
  .area-layout {
    gap: 28px;
  }
  .area-tags {
    gap: 8px;
  }
  .area-tags span {
    padding: 7px 11px;
    font-size: 11px;
  }
  .contact-layout form {
    padding: 24px 19px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-options a {
    font-size: 18px;
  }
  .footer-grid {
    gap: 32px 20px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
  .footer-grid h2 {
    font-size: 13px;
  }
  .final-cta h2 {
    font-size: 29px;
  }
  .final-cta .actions {
    display: grid;
  }
  .narrow h1 {
    font-size: 38px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
