:root {
  --ink: #101312;
  --graphite: #171a18;
  --forest: #123525;
  --pine: #1d4a34;
  --moss: #64744d;
  --river: #79c7c4;
  --river-dark: #2d6f73;
  --sand: #d9c59d;
  --bone: #f4efe2;
  --paper: #fbf7ec;
  --clay: #a95f3e;
  --rust: #c57a45;
  --white: #ffffff;
  --muted: #6e7167;
  --line: rgba(16, 19, 18, 0.16);
  --line-light: rgba(251, 247, 236, 0.22);
  --shadow: 0 24px 70px rgba(7, 12, 10, 0.22);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Bahnschrift", "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--river);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--river);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 800;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--graphite);
  color: var(--bone);
  display: grid;
  place-items: center;
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
  animation: loader-exit 0.45s ease 1.15s forwards;
}

.loader-mark {
  display: grid;
  gap: 18px;
  width: min(320px, 74vw);
}

.loader-word {
  font-family: "Arial Narrow", "Bahnschrift", sans-serif;
  font-size: 4.4rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.loader-line {
  height: 5px;
  background: linear-gradient(90deg, var(--river), var(--sand), var(--clay));
  transform-origin: left center;
  animation: loader-pulse 1s ease-in-out infinite alternate;
}

@keyframes loader-pulse {
  from {
    transform: scaleX(0.32);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes loader-exit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--bone);
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(16, 19, 18, 0.8);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: calc(100% - 32px);
  max-width: var(--max);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 188px;
}

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

.brand-word {
  display: grid;
  line-height: 0.92;
  text-transform: uppercase;
  font-family: "Arial Narrow", "Bahnschrift", sans-serif;
  font-weight: 900;
  font-size: 1.18rem;
}

.brand-word small {
  color: var(--river);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(251, 247, 236, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(251, 247, 236, 0.1);
  border-color: rgba(251, 247, 236, 0.18);
  color: var(--white);
}

.nav-icon {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  transform: skew(-10deg);
  position: relative;
}

.nav-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  right: -5px;
  bottom: -5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  color: var(--ink);
  background: var(--river);
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: 11px 14px;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(16, 19, 18, 0.16);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(251, 247, 236, 0.28);
  color: var(--bone);
  background: rgba(251, 247, 236, 0.1);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(16, 19, 18, 0.96);
  color: var(--bone);
  transform: translateY(-100%);
  transition: transform 0.36s ease;
  padding: 108px 24px 32px;
  display: grid;
  align-content: start;
  gap: 22px;
}

.menu-open .mobile-panel {
  transform: translateY(0);
}

.mobile-panel nav {
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  text-decoration: none;
}

.mobile-panel .mobile-link {
  font-family: "Arial Narrow", "Bahnschrift", sans-serif;
  font-size: 4.3rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(251, 247, 236, 0.18);
  padding: 8px 0 14px;
}

.mobile-meta {
  display: grid;
  gap: 10px;
  color: rgba(251, 247, 236, 0.72);
}

.hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  color: var(--bone);
  overflow: hidden;
  background: var(--graphite);
  isolation: isolate;
}

.page-hero {
  min-height: 560px;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 19, 18, 0.84), rgba(16, 19, 18, 0.5) 46%, rgba(16, 19, 18, 0.34)),
    linear-gradient(180deg, rgba(16, 19, 18, 0.48), rgba(16, 19, 18, 0.88));
}

.hero-inner,
.page-hero-inner {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
  min-height: inherit;
  display: grid;
  align-items: end;
  padding: 132px 0 72px;
}

.hero-content {
  display: grid;
  gap: 26px;
  max-width: 820px;
  min-width: 0;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--river);
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--river);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Arial Narrow", "Bahnschrift", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  font-size: 8.4rem;
  max-width: 980px;
}

h1 .m-line {
  display: inline;
}

h2 {
  font-size: 5.2rem;
}

h3 {
  font-size: 2.1rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  font-size: 1.28rem;
  color: rgba(251, 247, 236, 0.86);
  overflow-wrap: break-word;
}

.hero-actions,
.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--river);
  color: var(--ink);
  border-color: var(--river);
}

.btn-secondary {
  background: transparent;
  color: var(--bone);
  border-color: rgba(251, 247, 236, 0.44);
}

.btn-dark {
  background: var(--graphite);
  color: var(--bone);
  border-color: var(--graphite);
}

.btn-sand {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}

.trust-badge {
  border: 1px solid rgba(251, 247, 236, 0.24);
  background: rgba(16, 19, 18, 0.44);
  backdrop-filter: blur(10px);
  padding: 14px;
  border-radius: var(--radius);
}

.trust-badge strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
}

.trust-badge span {
  color: rgba(251, 247, 236, 0.68);
  font-size: 0.9rem;
}

.section {
  padding: clamp(70px, 10vw, 126px) 0;
}

.section-tight {
  padding: clamp(48px, 7vw, 86px) 0;
}

.wrap {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
}

.band-dark {
  background: var(--graphite);
  color: var(--bone);
}

.band-forest {
  background: var(--forest);
  color: var(--bone);
}

.band-sand {
  background: var(--bone);
}

.band-river {
  background: var(--river);
  color: var(--ink);
}

.section-head {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.band-dark .section-head p,
.band-forest .section-head p {
  color: rgba(251, 247, 236, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
}

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

.media-block {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.band-dark .media-block,
.band-forest .media-block {
  border-color: var(--line-light);
}

.media-block img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: "Arial Narrow", "Bahnschrift", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

.gear-list {
  display: grid;
  gap: 18px;
}

.gear-item {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
  gap: 0;
  min-height: 330px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.gear-item picture,
.gear-item img {
  height: 100%;
}

.gear-item img {
  width: 100%;
  object-fit: cover;
}

.gear-copy {
  padding: clamp(22px, 4vw, 42px);
  display: grid;
  align-content: center;
  gap: 18px;
}

.gear-copy p {
  color: #3e423d;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.spec-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 800;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.46);
}

.review-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--forest);
  font-weight: 900;
}

details {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}

details p {
  margin-top: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.44);
}

.feature h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.feature p {
  color: #42463e;
}

.band-dark .feature,
.band-forest .feature {
  background: rgba(251, 247, 236, 0.06);
  border-color: var(--line-light);
}

.band-dark .feature p,
.band-forest .feature p {
  color: rgba(251, 247, 236, 0.72);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote {
  margin: 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(251, 247, 236, 0.07);
}

.quote p {
  color: rgba(251, 247, 236, 0.82);
}

.quote footer {
  margin-top: 18px;
  color: var(--river);
  font-weight: 900;
}

.brand-wall {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brand-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.44);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.45);
}

.contact-card a {
  font-weight: 900;
}

.form {
  display: grid;
  gap: 16px;
}

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

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

.field label {
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 19, 18, 0.26);
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: 12px 13px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #70746b;
}

.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #a23522;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-stack {
  display: grid;
  gap: 12px;
}

.faq-stack details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.faq-stack details p {
  color: #42463e;
}

.timeline {
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.timeline-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.timeline-item::before {
  content: counter(step, decimal-leading-zero);
  font-family: "Arial Narrow", "Bahnschrift", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--clay);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promo {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.46);
}

.promo strong {
  font-family: "Arial Narrow", "Bahnschrift", sans-serif;
  font-size: 2.8rem;
  line-height: 0.9;
}

.legal-content {
  display: grid;
  gap: 24px;
  max-width: 880px;
}

.legal-content h2 {
  font-size: 3.2rem;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.site-footer {
  background: #0d0f0e;
  color: var(--bone);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(150px, 0.6fr));
  gap: 30px;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col h2,
.footer-col h3 {
  font-size: 1.25rem;
  line-height: 1;
}

.footer-col a {
  color: rgba(251, 247, 236, 0.78);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--river);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 247, 236, 0.12);
  margin-top: 44px;
  padding-top: 22px;
  color: rgba(251, 247, 236, 0.58);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(251, 247, 236, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 19, 18, 0.92);
  color: var(--bone);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-bar.is-visible {
  display: flex;
}

.cookie-bar p {
  color: rgba(251, 247, 236, 0.78);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero .hero-content.reveal,
.page-hero .hero-content.reveal {
  opacity: 1;
  transform: none;
}

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

.floating-tag {
  position: absolute;
  right: min(5vw, 80px);
  bottom: 9vh;
  width: min(260px, 42vw);
  border: 1px solid rgba(251, 247, 236, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--bone);
  background: rgba(16, 19, 18, 0.44);
  backdrop-filter: blur(12px);
  animation: float-soft 5s ease-in-out infinite;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .phone-link {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .split,
  .split.reverse,
  .brand-wall,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .split.reverse .media-block {
    order: -1;
  }

  .gear-item {
    grid-template-columns: 1fr;
  }

  .gear-item picture,
  .gear-item img {
    height: auto;
  }

  .gear-item img {
    aspect-ratio: 16 / 10;
  }

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

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

  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 4.1rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 1.14rem;
  }

  .mobile-panel .mobile-link {
    font-size: 3.8rem;
  }

  .legal-content h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 680px) {
  .hero,
  .page-hero {
    min-height: 680px;
  }

  .page-hero {
    min-height: 500px;
  }

  .hero-inner,
  .page-hero-inner {
    padding: 108px 0 42px;
  }

  h1 {
    font-size: 3rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  h1 .m-line {
    display: block;
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero .lead,
  .page-hero .lead {
    max-width: 30ch;
  }

  .eyebrow {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    width: 100%;
    max-width: 32ch;
    align-items: start;
    overflow-wrap: break-word;
  }

  .eyebrow::before {
    margin-top: 0.56em;
  }

  h2 {
    font-size: 2.46rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  h3 {
    font-size: 1.52rem;
  }

  .loader-word {
    font-size: 3.1rem;
  }

  .mobile-panel .mobile-link {
    font-size: 3rem;
  }

  .legal-content h2 {
    font-size: 2.2rem;
  }

  .trust-strip,
  .stat-grid,
  .feature-grid,
  .quote-grid,
  .promo-grid,
  .footer-grid,
  .form-row,
  .brand-list {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .floating-tag {
    display: none;
  }

  .cookie-bar {
    display: none;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-bar.is-visible {
    display: flex;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.58rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .lead {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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