:root {
  --ink: #10100f;
  --paper: #f4f3ef;
  --white: #fff;
  --line: #c8c7c2;
  --muted: #666862;
  --coral: #ff5c45;
  --blue: #335cff;
  --green: #27c979;
  --yellow: #f5d34e;
  --radius: 6px;
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
}
body.modal-open {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 100;
  background: #fff;
  padding: 10px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.site-header.scrolled {
  position: fixed;
  background: rgba(16, 16, 15, 0.96);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  font-family: Georgia, serif;
  font-size: 15px;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.desktop-nav a,
.site-footer a {
  text-decoration: none;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.button {
  border: 0;
  border-radius: var(--radius);
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  min-height: 50px;
}
.button-small {
  padding: 10px 15px;
  min-height: 40px;
}
.button-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.button-primary {
  background: var(--coral);
  color: var(--ink);
}
.button-ink {
  background: var(--ink);
  color: #fff;
}
.button:hover {
  transform: translateY(-1px);
}
.hero {
  height: min(820px, 94vh);
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #181817;
  color: #fff;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media {
  object-position: center;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.92) 0%,
      rgba(8, 8, 8, 0.72) 33%,
      rgba(8, 8, 8, 0.12) 69%
    ),
    linear-gradient(0deg, rgba(8, 8, 8, 0.52), transparent 42%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 48px));
  margin: 0 max(24px, calc((100vw - var(--max)) / 2));
  padding-bottom: 130px;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
}
.eyebrow.dark {
  color: #5a5b55;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(39, 201, 121, 0.17);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(64px, 8vw, 116px);
  line-height: 0.88;
  margin-bottom: 26px;
  max-width: 760px;
}
h2 {
  font-size: clamp(48px, 5.6vw, 82px);
  line-height: 0.98;
  margin-bottom: 0;
}
.hero-copy {
  font-size: 20px;
  line-height: 1.55;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.text-button {
  background: transparent;
  border: 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 800;
  cursor: pointer;
}
.hero-proof {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 74px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.hero-proof span {
  flex: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.signal-band {
  background: var(--yellow);
  padding: 30px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 800;
}
.signal-band p {
  margin: 0;
}
.signal-accent {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 110px 24px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 6px;
}
.campaign-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.campaign-facts div {
  padding: 28px 20px 28px 0;
  border-right: 1px solid var(--line);
}
.campaign-facts div:not(:first-child) {
  padding-left: 20px;
}
.campaign-facts div:last-child {
  border-right: 0;
}
.campaign-facts strong,
.campaign-facts span {
  display: block;
}
.campaign-facts strong {
  font-size: 31px;
  margin-bottom: 4px;
}
.campaign-facts span {
  font-size: 13px;
  color: var(--muted);
}
.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.track {
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
}
.track-coral {
  background: var(--coral);
}
.track-blue {
  background: var(--blue);
  color: #fff;
}
.track-green {
  background: var(--green);
}
.track-number,
.track-label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.track-label {
  margin-bottom: 14px;
  opacity: 0.7;
}
.track h3 {
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.track p:not(.track-number):not(.track-label) {
  max-width: 320px;
}
.track-footer {
  border-top: 1px solid currentColor;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  font-weight: 800;
}
.circle-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 22px;
  cursor: pointer;
  flex: 0 0 auto;
}
.circle-button:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.campaign-cta {
  margin-top: 12px;
  background: #fff;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  border: 1px solid #e0dfda;
}
.campaign-cta h3 {
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 15px;
  max-width: 850px;
}
.campaign-cta p {
  color: var(--muted);
  max-width: 900px;
}
.kicker {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--blue) !important;
}
.legal-note {
  font-size: 12px;
  color: #6b6c67;
  max-width: 1000px;
  margin: 18px 0 0;
}
.project-section {
  background: #fff;
  padding: 105px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
}
.project-copy h2 {
  font-size: clamp(44px, 4.8vw, 70px);
  margin-bottom: 28px;
}
.project-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.inline-link {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.site-preview {
  display: block;
  border: 1px solid #b8b9b5;
  background: #e8e8e4;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
}
.browser-bar {
  height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #e1e2de;
  border-bottom: 1px solid #b8b9b5;
}
.browser-bar span {
  width: 9px;
  height: 9px;
  background: #a9aaa6;
  border-radius: 50%;
}
.browser-bar strong {
  font-size: 11px;
  margin-left: 8px;
  color: #5f605c;
}
.site-preview > img {
  display: block;
  width: 100%;
  height: calc(100% - 42px);
  object-fit: cover;
  object-position: top center;
  transition: transform 0.25s ease;
}
.site-preview:hover > img {
  transform: scale(1.015);
}
.process-section {
  padding-bottom: 130px;
}
.section-heading.compact {
  align-items: start;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.process-list li > span {
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
}
.process-list h3 {
  font-size: 25px;
  margin-bottom: 7px;
}
.process-list p {
  color: var(--muted);
  margin: 0;
  max-width: 650px;
}
.growth-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.growth-section > img,
.growth-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.growth-section > img {
  object-fit: cover;
  object-position: center;
}
.growth-shade {
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.75) 32%, rgba(8, 8, 8, 0.12) 68%);
}
.growth-content {
  position: relative;
  z-index: 1;
  width: min(670px, calc(100% - 48px));
  margin: 0 max(24px, calc((100vw - var(--max)) / 2));
}
.growth-content h2 {
  margin-bottom: 25px;
}
.growth-content > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}
.growth-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.growth-path span {
  padding: 15px 10px 15px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 11px;
  font-weight: 800;
}
.growth-path span:not(:first-child) {
  padding-left: 10px;
}
.growth-path span:last-child {
  border-right: 0;
}
.newsletter-section {
  background: var(--blue);
  color: #fff;
  padding: 90px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-inline label:first-child {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}
.input-action {
  display: flex;
  border-bottom: 2px solid #fff;
}
.input-action input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 27px;
  padding: 13px 0;
  min-width: 0;
  outline: 0;
}
.input-action input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.input-action button {
  width: 55px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px !important;
  line-height: 1.45;
  margin-top: 16px;
}
.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--green);
}
.consent a {
  text-decoration: underline;
}
.form-status {
  font-size: 13px;
  min-height: 20px;
  margin: 13px 0 0;
}
.form-status.error {
  color: #b91414;
}
.newsletter-section .form-status.error {
  color: #fff;
  background: #9e1d14;
  padding: 7px;
}
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 45px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
}
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.site-footer nav {
  display: flex;
  gap: 22px;
}
.copyright {
  grid-column: 2;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}
.modal.open {
  display: block;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(6px);
}
.modal-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(720px, 100%);
  background: var(--paper);
  padding: 52px;
  overflow: auto;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.25);
}
.modal-close {
  position: absolute;
  right: 22px;
  top: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 29px;
  cursor: pointer;
}
.modal-heading {
  padding-right: 50px;
  margin-bottom: 35px;
}
.modal-heading h2,
.newsletter-panel h2 {
  font-size: 55px;
  margin-bottom: 18px;
}
.modal-heading > p:last-child,
.newsletter-panel > p {
  color: var(--muted);
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 28px;
}
legend,
.form-grid label > span,
.newsletter-panel form > label > span {
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 7px;
  display: block;
}
.track-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.track-options label {
  cursor: pointer;
}
.track-options input {
  position: absolute;
  opacity: 0;
}
.track-options label span {
  display: flex;
  flex-direction: column;
  min-height: 90px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.track-options small {
  color: var(--muted);
  margin-top: 5px;
}
.track-options input:checked + span {
  border-color: var(--ink);
  box-shadow: inset 0 -5px 0 var(--coral);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid select,
.form-grid textarea,
.newsletter-panel input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 3px;
  padding: 13px;
  color: var(--ink);
}
.form-grid textarea {
  resize: vertical;
  min-height: 115px;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.newsletter-panel input:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.counter {
  display: block;
  text-align: right;
  color: var(--muted);
}
.optional {
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.form-submit {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 23px;
}
.form-submit .form-status {
  margin: 0;
  flex: 1;
}
.newsletter-panel {
  width: min(520px, 100%);
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter-panel form > label:not(.consent) {
  display: block;
  margin-top: 14px;
}
.newsletter-panel .consent {
  margin-top: 22px;
}
.full-button {
  width: 100%;
  margin-top: 16px;
}
.success-state {
  margin: auto 0;
  max-width: 560px;
}
.success-state[hidden] {
  display: none;
}
.success-state h2 {
  font-size: 52px;
  margin-bottom: 20px;
}
.success-state > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.success-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}
.success-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 15px 18px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: 0.2s;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .hero-media {
    object-position: 57% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.89), rgba(8, 8, 8, 0.2)),
      linear-gradient(0deg, rgba(8, 8, 8, 0.6), transparent);
  }
  .section-heading,
  .project-section,
  .newsletter-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .campaign-facts {
    grid-template-columns: 1fr 1fr;
  }
  .campaign-facts div:nth-child(2) {
    border-right: 0;
  }
  .campaign-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .track-grid {
    grid-template-columns: 1fr;
  }
  .track {
    min-height: 320px;
  }
  .campaign-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .project-copy {
    max-width: 720px;
  }
  .site-preview {
    height: 460px;
  }
  .growth-section > img {
    object-position: 60% center;
  }
  .site-footer {
    grid-template-columns: 1fr auto;
  }
  .site-footer > p:not(.copyright) {
    grid-column: 1/-1;
  }
  .copyright {
    grid-column: 1;
  }
  .modal-panel {
    padding: 42px 28px;
  }
  .track-options {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 66px;
    padding: 0 16px;
  }
  .site-header .brand > span:last-child {
    font-size: 14px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .button-small {
    font-size: 12px;
    padding: 8px 10px;
  }
  .hero {
    min-height: 660px;
    height: 88svh;
    align-items: flex-end;
  }
  .hero-media {
    object-position: 63% center;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(8, 8, 8, 0.94) 0%,
      rgba(8, 8, 8, 0.58) 58%,
      rgba(8, 8, 8, 0.16) 100%
    );
  }
  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding-bottom: 115px;
  }
  .eyebrow {
    margin-bottom: 15px;
  }
  .hero h1 {
    font-size: 58px;
    line-height: 0.9;
    margin-bottom: 17px;
  }
  .hero-copy {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 20px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .text-button {
    width: 100%;
    text-align: left;
    padding: 7px 0;
  }
  .hero-proof {
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 74px;
  }
  .hero-proof span {
    font-size: 11px;
  }
  .signal-band {
    padding: 22px 16px;
    display: block;
    font-size: 20px;
  }
  .signal-band p + p {
    margin-top: 5px;
  }
  .section {
    padding: 74px 16px;
  }
  .section-heading {
    margin-bottom: 42px;
  }
  .section-heading h2 {
    font-size: 47px;
  }
  .section-intro {
    font-size: 16px;
  }
  .campaign-facts {
    margin-bottom: 14px;
  }
  .campaign-facts div {
    padding: 18px 12px 18px 0;
  }
  .campaign-facts div:not(:first-child) {
    padding-left: 12px;
  }
  .campaign-facts strong {
    font-size: 25px;
  }
  .campaign-facts span {
    font-size: 11px;
  }
  .track {
    padding: 22px;
    min-height: 300px;
  }
  .track h3 {
    font-size: 31px;
  }
  .campaign-cta {
    padding: 28px 22px;
  }
  .campaign-cta h3 {
    font-size: 26px;
  }
  .campaign-cta .button {
    width: 100%;
  }
  .project-section {
    padding: 72px 16px;
  }
  .project-copy h2 {
    font-size: 45px;
  }
  .site-preview {
    height: 340px;
  }
  .process-section {
    padding-bottom: 80px;
  }
  .process-list li {
    grid-template-columns: 52px 1fr;
  }
  .growth-section {
    min-height: 740px;
    align-items: flex-end;
  }
  .growth-section > img {
    object-position: 60% center;
  }
  .growth-shade {
    background: linear-gradient(0deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.72) 55%, rgba(8, 8, 8, 0.08) 100%);
  }
  .growth-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding-bottom: 48px;
  }
  .growth-content h2 {
    font-size: 44px;
  }
  .growth-content > p:not(.eyebrow) {
    font-size: 15px;
  }
  .growth-path {
    grid-template-columns: 1fr 1fr;
  }
  .growth-path span:nth-child(2) {
    border-right: 0;
  }
  .growth-path span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }
  .newsletter-section {
    padding: 70px 16px;
  }
  .newsletter-section h2 {
    font-size: 48px;
  }
  .input-action input {
    font-size: 20px;
  }
  .site-footer {
    padding: 40px 16px;
    grid-template-columns: 1fr;
  }
  .site-footer nav,
  .copyright {
    grid-column: 1;
  }
  .site-footer nav {
    flex-wrap: wrap;
  }
  .modal-panel {
    padding: 72px 16px 30px;
  }
  .modal-heading h2,
  .newsletter-panel h2 {
    font-size: 43px;
  }
  .modal-heading {
    padding-right: 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: 1;
  }
  .track-options label span {
    min-height: 70px;
  }
  .form-submit {
    display: block;
  }
  .form-submit .button {
    width: 100%;
    margin-top: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button,
  .toast {
    transition: none;
  }
}
