:root {
  --ink: #14120f;
  --ink-soft: #28241f;
  --bone: #eee4d1;
  --bone-light: #f7f0e4;
  --sand: #c9b99e;
  --saddle: #5e3b26;
  --field-orange: #ce5b24;
  --line: rgba(20, 18, 15, 0.2);
  --shell: min(1200px, calc(100vw - 48px));
  --display: "Arial Narrow", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bone-light);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--bone-light);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  color: var(--bone-light);
  border-bottom: 1px solid rgba(247, 240, 228, 0.22);
  transition: background-color 250ms ease, min-height 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  background: rgba(18, 17, 15, 0.96);
  border-color: rgba(247, 240, 228, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: invert(1);
  flex: 0 0 auto;
}

.brand__wordmark {
  width: 132px;
  height: 54px;
  object-fit: contain;
  filter: invert(1);
}

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

.site-nav a {
  position: relative;
  padding: 7px 0;
  color: rgba(247, 240, 228, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: var(--bone-light);
  background: var(--ink);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__image {
  background-image: url("assets/south-texas-dawn-v2.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.78) 0%, rgba(8, 8, 7, 0.58) 34%, rgba(8, 8, 7, 0.12) 70%, rgba(8, 8, 7, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.56) 0%, transparent 38%, rgba(8, 8, 7, 0.18) 100%);
}

.hero__content {
  align-self: center;
  padding-top: 110px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 29px;
  color: rgba(247, 240, 228, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__eyebrow .rule {
  width: 52px;
  height: 1px;
  background: var(--field-orange);
}

.hero__wordmark {
  width: min(450px, 68vw);
  margin-bottom: 24px;
  filter: invert(1) sepia(0.08) saturate(0.55) brightness(1.1);
}

.hero__statement {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(247, 240, 228, 0.78);
  font-size: 1.04rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--orange {
  color: #fff8ee;
  background: var(--field-orange);
}

.button--orange:hover,
.button--orange:focus-visible {
  background: #e16a2e;
}

.text-link {
  color: var(--bone-light);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--field-orange);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(4px);
}

.hero__foot {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  display: flex;
  gap: 28px;
  color: rgba(247, 240, 228, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero__foot span + span::before {
  content: "•";
  margin-right: 28px;
  color: var(--field-orange);
}

.section {
  padding: clamp(96px, 12vw, 164px) 0;
}

.section-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--field-orange);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-number--light {
  color: var(--sand);
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--sand);
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.1rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.38;
}

.story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 80%, rgba(94, 59, 38, 0.09), transparent 28%),
    var(--bone-light);
}

.story__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: clamp(64px, 10vw, 145px);
  align-items: start;
}

.story__copy {
  max-width: 570px;
  padding-top: 42px;
}

.story__copy p {
  margin-top: 0;
  margin-bottom: 24px;
}

.story__copy strong {
  color: var(--saddle);
}

.story__closing {
  margin-top: 35px !important;
  padding-top: 27px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.story__mark {
  position: absolute;
  z-index: -1;
  right: -15vw;
  bottom: -24vw;
  width: min(740px, 58vw);
  opacity: 0.045;
  pointer-events: none;
}

.section--dark {
  color: var(--bone-light);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
}

.standard__intro {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
  align-items: end;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(247, 240, 228, 0.18);
}

.standard__intro h2 {
  max-width: 900px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(247, 240, 228, 0.18);
}

.principle {
  min-height: 330px;
  padding: 44px 40px 52px 0;
}

.principle + .principle {
  padding-left: 40px;
  border-left: 1px solid rgba(247, 240, 228, 0.18);
}

.principle > span {
  color: var(--field-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.principle h3 {
  margin: 80px 0 17px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.4vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.principle p {
  max-width: 320px;
  margin: 0;
  color: rgba(247, 240, 228, 0.62);
}

.drop {
  background: var(--bone);
}

.drop__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.drop__copy .lead {
  max-width: 560px;
  margin: 40px 0 20px;
}

.drop__copy > p:not(.eyebrow):not(.lead) {
  max-width: 520px;
}

.drop__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drop__status span {
  width: 9px;
  height: 9px;
  border: 2px solid var(--field-orange);
  border-radius: 50%;
}

.drop__signup {
  display: flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-weight: 700;
  text-underline-offset: 0.25em;
}

.drop__signup:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.drop-preview {
  min-width: 0;
  margin: 0;
  color: var(--bone-light);
  background: var(--ink);
  box-shadow: 0 24px 64px rgba(55, 37, 24, 0.16);
}

.drop-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.drop-preview figcaption {
  display: grid;
  gap: 8px;
  padding: 20px 24px 24px;
  color: rgba(247, 240, 228, 0.82);
  font-size: 0.875rem;
  line-height: 1.5;
}

.drop-preview__label {
  color: var(--bone-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.drop-card {
  position: relative;
  min-height: 610px;
  padding: clamp(30px, 4.4vw, 64px);
  overflow: hidden;
  color: var(--bone-light);
  background:
    radial-gradient(circle at 78% 8%, rgba(206, 91, 36, 0.2), transparent 28%),
    linear-gradient(140deg, var(--ink-soft), #0d0c0a 72%);
  box-shadow: 0 35px 80px rgba(55, 37, 24, 0.22);
}

.drop-card::before {
  position: absolute;
  content: "";
  inset: 13px;
  border: 1px solid rgba(238, 228, 209, 0.16);
  pointer-events: none;
}

.drop-card__top {
  display: flex;
  justify-content: space-between;
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.drop-card > img {
  width: min(430px, 82%);
  margin: 115px auto 96px;
  filter: invert(1) sepia(0.08) saturate(0.65) brightness(1.04);
}

.drop-card__line {
  width: 100%;
  height: 1px;
  background: rgba(238, 228, 209, 0.2);
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 38px;
  margin: 28px 0 0;
}

.specs div {
  display: grid;
  gap: 2px;
}

.specs dt {
  color: var(--sand);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.specs dd {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
}

.drop-card__note {
  margin: 34px 0 0;
  color: rgba(247, 240, 228, 0.5);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.closing {
  overflow: hidden;
  color: var(--ink);
  background: var(--field-orange);
}

.closing__marquee {
  display: flex;
  width: max-content;
  padding: 14px 0;
  color: rgba(20, 18, 15, 0.72);
  border-bottom: 1px solid rgba(20, 18, 15, 0.25);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.closing__marquee span {
  min-width: 850px;
}

.closing__inner {
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
}

.closing__inner img {
  width: clamp(100px, 14vw, 185px);
}

.closing__statement {
  max-width: 770px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.closing__copy {
  min-width: 0;
  padding-block: 48px;
}

.closing__invitation {
  margin: 8px 0 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.signup-form {
  max-width: 600px;
  margin-block: 32px 12px;
}

.signup-form h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.signup-form .ml-block-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.signup-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 700;
}

.signup-form input[type="email"] {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--bone-light);
  border: 1px solid var(--ink);
  border-radius: 0;
  font: inherit;
}

.signup-form input::placeholder {
  color: #655d51;
  opacity: 1;
}

.signup-form input:focus-visible,
.signup-form .row-success:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.signup-form .button {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--ink);
  font-family: inherit;
  cursor: pointer;
}

.signup-form .loading {
  cursor: wait;
}

.signup-form .ml-error input {
  border: 2px solid #781d11;
}

.signup-form .ml-error label {
  color: #571409;
}

.signup-form .row-success {
  padding: 22px;
  color: var(--ink);
  background: var(--bone-light);
  border-left: 4px solid var(--ink);
}

.signup-form .row-success p {
  margin: 8px 0 0;
}

.signup-form__privacy {
  margin: 12px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.signup-form__privacy a {
  text-underline-offset: 0.2em;
}

.signup-form__privacy a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.privacy-page .site-header {
  background: var(--ink);
}

.privacy-page .header-home {
  color: var(--bone-light);
  font-size: 0.875rem;
  text-underline-offset: 0.2em;
}

.privacy-copy {
  width: min(740px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 136px 80px;
}

.privacy-copy h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.privacy-copy h2 {
  margin: 32px 0 10px;
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
}

.privacy-copy p {
  margin: 0 0 16px;
}

.privacy-copy a {
  overflow-wrap: anywhere;
  text-underline-offset: 0.2em;
}

.privacy-copy a:focus-visible,
.privacy-page .header-home:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.privacy-copy__date {
  color: var(--saddle);
  font-size: 0.875rem;
}

.closing__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.closing__social {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-block: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-underline-offset: 0.25em;
}

.closing__social:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.button--ink {
  max-width: 100%;
  padding-block: 14px;
  color: var(--bone-light);
  background: var(--ink);
  font-size: 0.875rem;
  text-align: center;
}

.button--ink:hover,
.button--ink:focus-visible {
  color: var(--ink);
  background: var(--bone-light);
}

.button--ink:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

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

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 42px;
  align-items: center;
}

.site-footer p {
  margin: 0;
  color: rgba(247, 240, 228, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand {
  width: 165px;
}

.footer-contact {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.footer-contact a {
  padding-block: 6px;
  font-size: 0.875rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  text-underline-offset: 0.25em;
}

.footer-contact a:focus-visible {
  outline: 2px solid var(--bone-light);
  outline-offset: 4px;
}

.footer-brand img {
  filter: invert(1) sepia(0.08) saturate(0.55) brightness(1.08);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero .reveal:nth-of-type(2) {
  transition-delay: 80ms;
}

.hero .reveal:nth-of-type(3) {
  transition-delay: 150ms;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 40px, 720px);
  }

  .site-header {
    padding-inline: 20px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 22px;
    padding: 90px 30px 40px;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    width: min(100%, 440px);
    margin-inline: auto;
    padding: 14px 0;
    font-family: var(--display);
    font-size: clamp(2.1rem, 9vw, 4rem);
    letter-spacing: -0.02em;
  }

  .hero {
    min-height: 720px;
  }

  .hero__image {
    background-position: 67% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.82) 0%, rgba(8, 8, 7, 0.54) 66%, rgba(8, 8, 7, 0.24) 100%),
      linear-gradient(0deg, rgba(8, 8, 7, 0.72) 0%, rgba(8, 8, 7, 0.03) 58%, rgba(8, 8, 7, 0.3) 100%);
  }

  .hero__foot {
    gap: 15px;
  }

  .hero__foot span + span::before {
    margin-right: 15px;
  }

  .story__grid,
  .drop__grid {
    grid-template-columns: 1fr;
  }

  .story__copy {
    padding-top: 0;
  }

  .standard__intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .principle {
    min-height: 0;
    padding: 38px 0;
  }

  .principle + .principle {
    padding-left: 0;
    border-top: 1px solid rgba(247, 240, 228, 0.18);
    border-left: 0;
  }

  .principle h3 {
    margin-top: 46px;
  }

  .drop__grid {
    gap: 65px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 34px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 31px;
    height: 31px;
  }

  .brand__wordmark {
    width: 112px;
    height: 48px;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    grid-template-rows: 1fr auto;
  }

  .hero__content {
    align-self: center;
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .hero__eyebrow {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero__eyebrow .rule {
    width: 30px;
  }

  .hero__wordmark {
    width: min(350px, 82vw);
  }

  .hero__statement {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }

  .hero__foot {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-bottom: 28px;
    color: rgba(247, 240, 228, 0.78);
    font-size: 0.875rem;
    letter-spacing: 0.12em;
  }

  .hero__foot span {
    white-space: nowrap;
  }

  .hero__foot span + span::before {
    margin-right: 14px;
  }

  h2 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

  .section {
    padding: 92px 0;
  }

  .standard__intro {
    padding-bottom: 48px;
  }

  .drop-card {
    min-height: 535px;
    padding: 34px 30px;
  }

  .drop-card > img {
    width: 88%;
    margin: 95px auto 78px;
  }

  .specs {
    gap: 18px;
  }

  .closing__inner {
    min-height: 330px;
    padding-block: 48px;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    justify-content: center;
  }

  .closing__inner img {
    width: 92px;
  }

  .closing__copy {
    padding-block: 0;
  }

  .signup-form .ml-block-form {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: auto;
    margin-bottom: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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