:root {
  --red: #e31313;
  --red-dark: #a90d0d;
  --red-soft: #fbe7e7;
  --charcoal: #313642;
  --ink: #1d2129;
  --gray-900: #242832;
  --gray-700: #555c68;
  --gray-300: #d9dde3;
  --gray-100: #f4f6f9;
  --white: #ffffff;
  --header-height: 82px;
  --page-pad: 7vw;
  --content-width: 1320px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  background: var(--gray-100);
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--gray-100);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 9px 13px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: 100vw;
  padding: 9px var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(35, 39, 48, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.83);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.slide {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 34px) var(--page-pad) 56px;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--white);
}

.slide.is-soft {
  background: var(--gray-100);
}

.slide.is-dark {
  color: var(--white);
  background: var(--charcoal);
}

.slide::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -190px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(227, 19, 19, 0.18);
  transform: rotate(24deg);
}

.slide-number {
  position: absolute;
  z-index: -1;
  top: 98px;
  right: var(--page-pad);
  color: rgba(49, 54, 66, 0.06);
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  user-select: none;
}

.is-dark .slide-number {
  color: rgba(255, 255, 255, 0.055);
}

.media-background {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-background.position-right {
  object-position: 70% center;
}

.media-background.position-left {
  object-position: 30% center;
}

.slide-cover::before,
.slide-media-cover::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(28, 31, 39, 0.97) 0%,
    rgba(28, 31, 39, 0.88) 46%,
    rgba(28, 31, 39, 0.36) 72%,
    rgba(28, 31, 39, 0.18) 100%
  );
}

.slide-cover::after,
.slide-media-cover::after {
  z-index: -1;
  right: auto;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 38%;
  border: 0;
  background: var(--red);
  transform: none;
}

.slide-inner {
  width: 100%;
  min-width: 0;
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.is-dark .eyebrow,
.slide-cover .eyebrow,
.slide-media-cover .eyebrow {
  color: #ff6b65;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 4rem;
  font-weight: 760;
}

h1 span,
h2 span {
  color: var(--red);
}

.slide-cover h1 span,
.slide-media-cover h1 span,
.is-dark h2 span {
  color: #ff6b65;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  line-height: 1.72;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-meta span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(36, 40, 50, 0.48);
  font-size: 0.82rem;
  font-weight: 650;
}

.scroll-cue {
  position: absolute;
  right: var(--page-pad);
  bottom: 28px;
  display: grid;
  width: 38px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
}

.scroll-cue::before {
  content: "";
  width: 5px;
  height: 10px;
  border-radius: 4px;
  background: var(--white);
  animation: scroll-cue 1.7s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%,
  100% {
    transform: translateY(-6px);
    opacity: 0.35;
  }
  50% {
    transform: translateY(7px);
    opacity: 1;
  }
}

.slide-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.slide-heading.compact {
  margin-bottom: 23px;
}

.slide-heading h2 {
  margin-bottom: 17px;
  font-size: 3rem;
  font-weight: 740;
}

.slide-heading p:last-child {
  max-width: 810px;
  margin-bottom: 0;
  color: var(--gray-700);
  font-size: 1.05rem;
}

.is-dark .slide-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 68px;
}

.split-layout > *,
.media-duo > *,
.contact-grid > * {
  min-width: 0;
}

.split-layout.reverse {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
}

.split-layout.reverse .split-copy {
  order: 2;
}

.split-layout.reverse .media-frame {
  order: 1;
}

.split-copy h2 {
  margin-bottom: 20px;
  font-size: 3rem;
}

.split-copy > p:not(.eyebrow) {
  color: var(--gray-700);
  font-size: 1.04rem;
}

.is-dark .split-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.media-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(49, 54, 66, 0.18);
  border-radius: 8px;
  background: var(--gray-300);
  box-shadow: 20px 20px 0 rgba(227, 19, 19, 0.1);
}

.is-dark .media-frame {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 20px 20px 0 rgba(227, 19, 19, 0.2);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.media-frame.service-poster {
  height: min(56vh, 520px);
  min-height: 390px;
  background: #0b0e13;
}

.media-frame.service-poster img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.media-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-left: 4px solid var(--red);
  color: var(--white);
  background: rgba(29, 33, 41, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 13px 15px 13px 44px;
  border-left: 3px solid var(--red);
  background: rgba(49, 54, 66, 0.06);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--red);
}

.is-dark .feature-list li {
  background: rgba(255, 255, 255, 0.07);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.capability-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
}

.capability-card strong {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.capability-card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.capability-card p {
  margin-bottom: 0;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.is-dark .capability-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.is-dark .capability-card p {
  color: rgba(255, 255, 255, 0.69);
}

.media-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.media-duo figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.media-duo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.media-duo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(
    0deg,
    rgba(29, 33, 41, 0.96),
    rgba(29, 33, 41, 0)
  );
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--gray-300);
}

.stat-grid div {
  padding: 19px;
  background: var(--white);
}

.stat-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 1.35rem;
}

.stat-grid span {
  color: var(--gray-700);
  font-size: 0.82rem;
}

.is-dark .stat-grid {
  background: rgba(255, 255, 255, 0.16);
}

.is-dark .stat-grid div {
  background: var(--charcoal);
}

.is-dark .stat-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.clientele-slide {
  background-color: var(--gray-100);
  background-image:
    linear-gradient(rgba(244, 246, 249, 0.93), rgba(244, 246, 249, 0.93)),
    url("assets/site-images/clientele-bg.png");
  background-position: center;
  background-size: cover;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.client-logo {
  display: grid;
  min-height: 128px;
  padding: 12px;
  place-items: center;
  border-bottom: 3px solid transparent;
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.client-logo:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.client-logo img {
  width: 100%;
  max-width: 150px;
  height: 96px;
  object-fit: contain;
}

.partner-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 9px 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.partner-panel div {
  display: grid;
  min-height: 65px;
  padding: 5px;
  place-items: center;
  background: var(--white);
}

.partner-panel img {
  width: 100%;
  max-width: 112px;
  height: 55px;
  object-fit: contain;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details a,
.contact-details p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.83);
  text-decoration: none;
}

.contact-details .phones {
  display: inline;
  padding: 0;
  border-bottom: 0;
  color: inherit;
  text-decoration: none;
}

.contact-details strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.contact-details .social-link {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-details .social-link:hover,
.contact-details .social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 11px 25px rgba(0, 0, 0, 0.24);
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.social-link svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-details .facebook-link {
  color: #1877f2;
}

.contact-details .linkedin-link {
  color: #0a66c2;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 25px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.8rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #c7ccd4;
  border-radius: 5px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--gray-100);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 19, 19, 0.13);
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-status {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.84rem;
}

.form-status.is-success {
  color: #147a42;
}

.form-status.is-error {
  color: var(--red-dark);
}

.primary-button {
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 5px;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
  font-weight: 750;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--red-dark);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.back-to-top {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: var(--white);
  background: rgba(49, 54, 66, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 1.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--red);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.reveal.delay-1 {
  transition-delay: 100ms;
}

.reveal.delay-2 {
  transition-delay: 190ms;
}

.slide.is-visible .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --page-pad: 5vw;
  }

  h1 {
    font-size: 3.15rem;
  }

  .slide-heading h2,
  .split-copy h2 {
    font-size: 2.45rem;
  }

  .split-layout,
  .split-layout.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 38px;
  }

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

  .capability-card {
    min-height: 145px;
  }

  .partner-panel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-height: 760px) and (min-width: 801px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .slide {
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 28px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 2.9rem;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .slide-heading {
    margin-bottom: 20px;
  }

  .slide-heading h2,
  .split-copy h2 {
    margin-bottom: 12px;
    font-size: 2.25rem;
  }

  .media-frame,
  .media-frame img {
    min-height: 315px;
  }

  .media-duo figure,
  .media-duo img {
    min-height: 285px;
  }

  .partner-panel {
    gap: 5px 10px;
    padding: 15px;
  }

  .partner-panel div {
    min-height: 51px;
  }

  .partner-panel img {
    height: 44px;
  }
}

@media (max-width: 800px) {
  html {
    scroll-snap-type: y proximity;
  }

  :root {
    --header-height: 70px;
    --page-pad: 22px;
  }

  .site-header {
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 56px);
    overflow: hidden;
  }

  .brand img {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
  }

  .brand span {
    display: block;
    min-width: 0;
    overflow: hidden;
    font-size: 1.2rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    width: 100%;
    max-width: 100vw;
    max-height: calc(100svh - var(--header-height));
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(35, 39, 48, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .slide {
    width: 100%;
    max-width: 100%;
    min-height: 100svh;
    height: auto;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 72px;
    overflow: visible;
  }

  .slide-cover,
  .slide-media-cover {
    min-height: 100svh;
  }

  .slide-cover::before,
  .slide-media-cover::before {
    background: linear-gradient(
      90deg,
      rgba(28, 31, 39, 0.97),
      rgba(28, 31, 39, 0.76)
    );
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .slide-number {
    top: 86px;
    font-size: 5.5rem;
  }

  .slide-heading h2,
  .split-copy h2 {
    font-size: 2.15rem;
  }

  .split-layout,
  .split-layout.reverse,
  .contact-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split-layout.reverse .split-copy,
  .split-layout.reverse .media-frame {
    order: initial;
  }

  .media-frame,
  .media-frame img {
    min-height: 300px;
  }

  .media-frame {
    box-shadow: 10px 10px 0 rgba(227, 19, 19, 0.12);
  }

  .is-dark .media-frame {
    box-shadow: 10px 10px 0 rgba(227, 19, 19, 0.2);
  }

  .media-frame.service-poster {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .media-duo {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
  }

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

  .client-logo {
    min-height: 112px;
  }

  .partner-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
  }

  .partner-panel div {
    min-height: 72px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 19px;
  }

  .field.full,
  .submit-row {
    grid-column: auto;
  }

  .submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --page-pad: 16px;
  }

  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .brand span {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.15rem;
  }

  .slide-heading h2,
  .split-copy h2 {
    font-size: 1.9rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .media-frame,
  .media-frame img {
    min-height: 240px;
  }

  .media-duo figure,
  .media-duo img {
    min-height: 260px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
  }
}

@media print {
  html,
  body {
    scroll-snap-type: none;
    background: var(--white);
  }

  .site-header,
  .back-to-top,
  .scroll-cue {
    display: none !important;
  }

  .slide {
    min-height: 100vh;
    height: auto;
    break-after: page;
    padding-top: 48px;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
