@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-600.ttf") format("truetype");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-600.ttf") format("truetype");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #e8f1f2;
  --paper-soft: #f4f7f4;
  --ink: #10252b;
  --muted: #48656c;
  --accent: #d8482f;
  --accent-dark: #ae321f;
  --deep: #0c3035;
  --line: rgba(16, 37, 43, .2);
  --shell: 1440px;
  color-scheme: light;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Onest", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 37, 43, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 37, 43, .045) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(232, 241, 242, .97);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 2.2fr);
  align-items: stretch;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding-right: 28px;
}

.brand__mark {
  display: grid;
  flex: 0 0 50px;
  height: 42px;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font: 600 18px/1 "Unbounded", sans-serif;
}

.brand__copy {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.brand__copy strong {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  letter-spacing: -.03em;
}

.brand__copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-width: 0;
  border-left: 1px solid var(--line);
}

.site-nav > a:not(.button):not(.header-action) {
  display: grid;
  min-height: 78px;
  padding: 0 clamp(12px, 1.35vw, 24px);
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav > a:not(.button):not(.header-action):hover,
.site-nav > a[aria-current="page"] {
  color: var(--accent);
}

.site-nav .button {
  align-self: center;
  min-height: 44px;
  margin-inline: 12px;
  padding: 0 16px;
}

.header-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  padding: 0 24px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.button--copper {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button--copper:hover,
.button--copper:focus-visible {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.button--phone:hover,
.button--phone:focus-visible,
.button--line:hover,
.button--line:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.button__arrow {
  flex: 0 0 auto;
  font-size: 18px;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, .9fr) minmax(600px, 1.1fr);
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(72px, 8vw, 126px) clamp(32px, 5.6vw, 92px);
}

.river-rings {
  position: absolute;
  z-index: 0;
  top: 9%;
  left: -16vw;
  width: min(54vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 72, 47, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(16, 37, 43, .03), 0 0 0 14vw rgba(16, 37, 43, .03);
}

.hero-kicker,
.section-label {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.home-hero h1,
.internal-hero h1,
.content-section h2,
.source-block h2,
.faq-block h2,
.related-block h2,
.mid-cta h2,
.final-cta h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.home-hero h1 {
  max-width: 860px;
  font-size: clamp(54px, 5.8vw, 92px);
}

.home-hero__lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.action-pair,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.home-hero__media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #cbd9da;
}

.home-hero__media::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 16%;
  background: linear-gradient(90deg, var(--paper), transparent);
  content: "";
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.home-hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
}

.home-hero__media figcaption strong {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
}

.home-hero__media figcaption span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.fact-strip {
  border-bottom: 1px solid var(--line);
}

.fact-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: none;
}

.fact-strip__grid > div {
  display: grid;
  min-width: 0;
  min-height: 150px;
  align-content: center;
  gap: 10px;
  padding: 30px clamp(24px, 4vw, 64px);
}

.fact-strip__grid > div + div {
  border-left: 1px solid var(--line);
}

.fact-strip strong {
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(27px, 3vw, 48px);
  letter-spacing: -.06em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.fact-strip span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.internal-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.internal-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(36px, 6vw, 96px);
  min-height: 610px;
  padding-block: 28px 68px;
}

.breadcrumbs {
  grid-column: 1 / -1;
  display: flex;
  min-width: 0;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.internal-hero__copy {
  align-self: center;
  min-width: 0;
}

.internal-hero h1 {
  max-width: 940px;
  font-size: clamp(47px, 5.5vw, 84px);
}

.internal-hero__copy > p:not(.hero-kicker) {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.internal-hero__media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
}

.internal-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.content-flow {
  display: grid;
  gap: 0;
  padding-block: 0 88px;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(170px, .55fr) minmax(0, 1.45fr);
  gap: clamp(36px, 7vw, 110px);
  padding-block: clamp(76px, 9vw, 138px);
  border-bottom: 1px solid var(--line);
}

.content-section__number {
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(58px, 7vw, 112px);
  letter-spacing: -.08em;
  line-height: .8;
}

.content-section__body {
  min-width: 0;
}

.content-section h2 {
  max-width: 960px;
  font-size: clamp(36px, 4.6vw, 72px);
}

.content-prose {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin-top: 32px;
}

.content-prose p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.72;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 66px;
  padding: 20px 20px 18px 30px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.check-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 27px;
  left: 4px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  content: "";
}

.section-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.section-links a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.section-links a:nth-child(odd) {
  margin-right: 22px;
}

.section-links a:hover {
  color: var(--accent);
}

.section-cta {
  margin-top: 36px;
}

.mid-cta,
.final-cta {
  position: relative;
  overflow: hidden;
  margin: 0 calc((min(100vw, var(--shell)) - min(100vw - 48px, var(--shell))) / -2);
}

.mid-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  padding: clamp(52px, 7vw, 92px) clamp(28px, 6vw, 90px);
  background: var(--deep);
  color: #edf5f5;
}

.mid-cta__copy {
  max-width: 820px;
}

.mid-cta .section-label {
  color: #ff8e77;
}

.mid-cta h2 {
  font-size: clamp(34px, 4vw, 62px);
}

.mid-cta p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: #bad0d2;
  font-size: 17px;
}

.mid-cta .button--phone,
.final-cta .button--phone {
  border-color: currentColor;
}

.source-block,
.faq-block,
.related-block {
  display: grid;
  grid-template-columns: minmax(210px, .6fr) minmax(0, 1.4fr);
  gap: clamp(36px, 7vw, 110px);
  padding-block: clamp(78px, 9vw, 132px);
  border-bottom: 1px solid var(--line);
}

.source-block h2,
.faq-block h2,
.related-block h2 {
  font-size: clamp(34px, 4.2vw, 66px);
}

.source-block > div > p:last-child {
  max-width: 440px;
  color: var(--muted);
}

.source-block nav,
.related-block nav {
  border-top: 1px solid var(--line);
}

.source-block nav a,
.related-block nav a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  min-height: 92px;
  align-content: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.source-block nav strong,
.related-block nav span {
  font-size: 17px;
}

.source-block nav span {
  grid-column: 1;
  color: var(--muted);
  font-size: 14px;
}

.source-block nav i,
.related-block nav i {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--accent);
  font-style: normal;
}

.faq-block__head,
.related-block > .section-label,
.related-block > h2 {
  grid-column: 1;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 20px;
  min-height: 76px;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 800px;
  margin: -4px 0 0;
  padding: 0 52px 25px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.related-block {
  grid-template-rows: auto 1fr;
}

.related-block nav {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  min-height: 430px;
  margin-top: 0;
  background: var(--accent);
  color: #fff;
}

.final-cta__mark {
  position: absolute;
  right: -4%;
  bottom: -34%;
  color: rgba(16, 37, 43, .15);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(250px, 32vw, 530px);
  font-weight: 600;
  line-height: .8;
}

.final-cta__copy {
  z-index: 1;
  grid-column: 1 / -1;
  align-self: center;
  max-width: 980px;
  padding: clamp(64px, 8vw, 112px) clamp(28px, 7vw, 110px);
}

.final-cta .section-label {
  color: var(--ink);
}

.final-cta h2 {
  max-width: 17ch;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(2.75rem, 4.35vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.03;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.final-cta p:not(.section-label) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #231c18;
  font-size: 17px;
}

.final-cta__actions {
  margin-top: 32px;
}

.final-cta .button--copper {
  border-color: var(--ink);
  background: var(--ink);
}

.site-footer {
  background: var(--ink);
  color: #eaf2f2;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(180px, .7fr) minmax(300px, 1.2fr);
  gap: clamp(38px, 7vw, 110px);
  padding-block: 64px;
}

.brand--footer {
  padding: 0;
}

.brand--footer .brand__copy small,
.site-footer p,
.site-footer__note span {
  color: #9fb4b7;
}

.site-footer__grid > div:first-child > p {
  max-width: 360px;
  margin: 24px 0 0;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer nav a:hover {
  color: #ff8e77;
}

.site-footer__note {
  border-left: 1px solid rgba(255, 255, 255, .2);
  padding-left: 28px;
}

.site-footer__note strong {
  color: #ff8e77;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer__note span {
  font-size: 12px;
}

@media (max-width: 1240px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    width: 74px;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 26px;
    cursor: pointer;
  }

  .site-header[data-open="true"] .mobile-nav {
    display: block;
  }

  .mobile-nav {
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-nav nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-nav a {
    display: flex;
    min-height: 56px;
    align-items: center;
    padding: 14px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-nav .button {
    justify-content: space-between;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .home-hero {
    grid-template-columns: minmax(430px, .9fr) minmax(480px, 1.1fr);
    min-height: 650px;
  }

  .home-hero h1 {
    font-size: clamp(50px, 6.4vw, 76px);
  }
}

@media (max-width: 1024px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-hero__copy {
    min-height: 560px;
    padding: 76px clamp(24px, 7vw, 72px);
  }

  .home-hero__media {
    height: min(72vw, 650px);
  }

  .home-hero__media::after {
    inset: 0 0 auto;
    width: auto;
    height: 12%;
    background: linear-gradient(180deg, var(--paper), transparent);
  }

  .internal-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .internal-hero__media {
    height: min(60vw, 520px);
    clip-path: none;
  }

  .content-section,
  .source-block,
  .faq-block,
  .related-block {
    grid-template-columns: minmax(130px, .35fr) minmax(0, 1.65fr);
    gap: 42px;
  }

  .mid-cta {
    grid-template-columns: 1fr;
  }

  .mid-cta .action-pair {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__mark {
    flex-basis: 44px;
    height: 38px;
    font-size: 15px;
  }

  .home-hero__copy {
    min-height: auto;
    padding: 62px 20px 56px;
  }

  .home-hero h1 {
    font-size: clamp(42px, 11vw, 68px);
  }

  .home-hero__media {
    height: min(94vw, 620px);
  }

  .fact-strip__grid {
    grid-template-columns: 1fr;
  }

  .fact-strip__grid > div {
    min-height: 112px;
    padding: 24px 20px;
  }

  .fact-strip__grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .internal-hero__inner {
    padding-block: 20px 48px;
  }

  .internal-hero h1 {
    font-size: clamp(39px, 10.5vw, 64px);
  }

  .internal-hero__media {
    height: 68vw;
  }

  .content-section,
  .source-block,
  .faq-block,
  .related-block {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 72px;
  }

  .content-section__number {
    font-size: 50px;
  }

  .content-section h2,
  .source-block h2,
  .faq-block h2,
  .related-block h2 {
    font-size: clamp(34px, 9.5vw, 54px);
  }

  .check-list,
  .section-links {
    grid-template-columns: 1fr;
  }

  .check-list li:nth-child(odd) {
    border-right: 0;
  }

  .section-links a:nth-child(odd) {
    margin-right: 0;
  }

  .faq-list,
  .related-block nav {
    grid-column: 1;
    grid-row: auto;
  }

  .mid-cta,
  .final-cta {
    margin-inline: -16px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__note {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
    padding: 28px 0 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  body::before {
    background-size: 52px 52px;
  }

  .brand {
    gap: 10px;
    padding-right: 8px;
  }

  .brand__copy strong {
    font-size: 11px;
  }

  .brand__copy small {
    font-size: 8px;
  }

  .mobile-nav nav {
    grid-template-columns: 1fr;
  }

  .mobile-nav a,
  .mobile-nav .button {
    border-right: 0;
  }

  .home-hero h1 {
    font-size: clamp(38px, 12.5vw, 58px);
  }

  .home-hero__lead,
  .internal-hero__copy > p:not(.hero-kicker),
  .content-prose p {
    font-size: 16px;
  }

  .hero-actions,
  .action-pair,
  .final-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button,
  .action-pair .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .home-hero__media {
    height: 112vw;
    max-height: 570px;
  }

  .home-hero__media img {
    object-position: 58% center;
  }

  .home-hero__media figcaption {
    right: 12px;
    bottom: 12px;
  }

  .internal-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .internal-hero__media {
    height: 88vw;
  }

  .content-flow {
    padding-bottom: 56px;
  }

  .content-section,
  .source-block,
  .faq-block,
  .related-block {
    padding-block: 62px;
  }

  .content-section h2,
  .source-block h2,
  .faq-block h2,
  .related-block h2,
  .mid-cta h2,
  .final-cta h2 {
    max-width: 15ch;
    font-size: clamp(2.1rem, 9.2vw, 2.75rem);
    letter-spacing: -.035em;
    line-height: 1.06;
  }

  .mid-cta,
  .final-cta__copy {
    padding: 58px 20px;
  }

  .final-cta {
    min-height: 0;
  }

  .final-cta__mark {
    right: -18%;
    bottom: -12%;
    font-size: 240px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    padding-block: 50px;
  }

  .site-footer__note {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
