/* PRIME TEXAS TRUCKING LLC
   West Houston route sheet — Texas limestone + lone-star crimson.
   Archivo + Mulish. Map / I-10 motif, 4px radius, map-pin cards. */

:root {
  --bg: #e8e2d6;
  --bg-2: #ddd6c8;
  --bg-3: #f3efe6;
  --bg-4: #d2cbbd;
  --paper: #f7f4ed;
  --text: #1e1a16;
  --muted: #5e574c;
  --line: rgba(30, 26, 22, 0.12);
  --line-strong: rgba(30, 26, 22, 0.22);
  --accent: #b01030;
  --accent-2: #8c0d26;
  --accent-hover: #8a0c24;
  --accent-dim: rgba(176, 16, 48, 0.1);
  --ink: #241f1c;
  --map: #c9bfb0;
  --gold: #b01030;
  --danger: #9b1b1b;
  --ok: #2f6b46;
  --font: "Mulish", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Archivo", "Arial Narrow", "Segoe UI", sans-serif;
  --wrap: 1140px;
  --gutter: 24px;
  --radius: 4px;
  --header-h: 76px;
  --sticky-cta: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

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

body {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(30, 26, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 26, 22, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  min-height: 100vh;
  padding-bottom: var(--sticky-cta);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -56px;
  z-index: 120;
  background: var(--accent);
  color: var(--paper);
  padding: 10px 16px;
  font-weight: 600;
  border-radius: var(--radius);
}
.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(var(--wrap), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: 0 1px 0 rgba(176, 16, 48, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.logo img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-text strong {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-text span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  padding: 10px 13px;
  border-radius: var(--radius);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}
.site-nav a[aria-current="page"]:not(.header-cta) {
  box-shadow: inset 0 -2px 0 var(--accent);
  border-radius: 0;
}
.header-cta {
  margin-left: 10px;
  background: var(--accent);
  color: var(--paper) !important;
  font-weight: 700;
  padding: 10px 16px !important;
  border-radius: var(--radius);
  box-shadow: none !important;
}
.header-cta:hover {
  background: var(--accent-hover);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 13px 20px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--paper);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  min-height: min(86vh, 760px);
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
  border-bottom: 1px dashed var(--line-strong);
}
.hero-media {
  position: relative;
  min-height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 58%;
  position: absolute;
  inset: 0;
}
.hero-route {
  position: absolute;
  inset: 8% 6% auto auto;
  width: min(46%, 280px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(30, 26, 22, 0.28));
}
.hero-inner {
  width: auto;
  margin: 0;
  padding: 72px var(--gutter) 56px calc((100vw - var(--wrap)) / 2 + var(--gutter));
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
}
@media (min-width: 1188px) {
  .hero-inner {
    padding-left: calc((100vw - var(--wrap)) / 2);
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  box-shadow: 28px 0 0 var(--map);
}

h1,
.h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.35rem, 5.4vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 13ch;
  text-transform: none;
}
.lede {
  margin-top: 18px;
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.trust-chip {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px dashed var(--line-strong);
  background: var(--bg-3);
  padding: 8px 12px;
  border-radius: var(--radius);
}

.stats {
  background: var(--paper);
  color: var(--text);
  border-block: 1px dashed var(--line-strong);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 28px 20px;
  border-right: 1px dashed var(--line);
  position: relative;
}
.stat:last-child {
  border-right: 0;
}
.stat::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.stat b {
  display: block;
  padding-top: 18px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat span {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 88px 0;
}
.section-alt {
  background: var(--bg-2);
}
.section-head {
  max-width: 40rem;
  margin-bottom: 36px;
}
.section-head h2 {
  margin: 0;
}
h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}
h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 8px;
}
.muted {
  color: var(--muted);
}
.fineprint {
  font-size: 0.9rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 56px;
  align-items: center;
}
.split-start {
  align-items: start;
}
.split-copy p + p {
  margin-top: 16px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px dashed var(--line-strong);
  background: var(--bg-3);
  border-radius: var(--radius);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.media-wide img {
  aspect-ratio: 16 / 9;
}
.media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(36, 31, 28, 0.78));
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.card-feature {
  grid-column: span 2;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent 0%, rgba(176, 16, 48, 0.05) 100%),
    var(--paper);
  color: var(--text);
  border: 1px dashed var(--accent);
}
.card-feature p {
  color: var(--muted);
}
.card-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}
.card-index::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.card-feature .card-index {
  color: var(--accent);
}
.card p {
  color: var(--muted);
}

.cards-quad {
  grid-template-columns: 1fr 1fr;
}
.cards-quad .card-feature {
  grid-column: auto;
  min-height: 0;
  justify-content: flex-start;
}

.equipment {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
}
.equipment-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.equipment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}
.equipment::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(36, 31, 28, 0.92) 0%, rgba(36, 31, 28, 0.58) 46%, rgba(36, 31, 28, 0.16) 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(247, 244, 237, 0.05) 42px 43px);
}
.equipment-copy {
  max-width: 36rem;
  padding: 80px 0;
}
.equipment .kicker {
  color: #f3c4cb;
}
.equipment .kicker::before {
  background: var(--accent);
  box-shadow: 28px 0 0 rgba(247, 244, 237, 0.35);
}
.equipment h2,
.equipment .lede,
.equipment .fineprint {
  color: var(--paper);
}
.equipment .lede,
.equipment .fineprint {
  color: rgba(247, 244, 237, 0.78);
}
.equipment .btn-ghost {
  color: var(--paper);
  border-color: rgba(247, 244, 237, 0.35);
}
.equipment .btn-ghost:hover {
  background: rgba(247, 244, 237, 0.08);
  color: var(--paper);
  border-color: var(--accent);
}

.pay-block {
  background: var(--bg-3);
  border: 1px dashed var(--line-strong);
  padding: 32px 28px;
  border-radius: var(--radius);
}
.pay-block .amount {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.pay-block .amount-label {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.chip {
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px dashed var(--line-strong);
  padding: 8px 12px;
  color: var(--text);
  border-radius: var(--radius);
}
.req-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.req-list li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}
.req-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.form {
  display: grid;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 28px;
  border-radius: var(--radius);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field-full {
  grid-column: 1 / -1;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
label {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--bg-3);
  color: var(--text);
  padding: 12px 13px;
  border-radius: var(--radius);
}
input::placeholder,
textarea::placeholder {
  color: #8a8378;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
select option {
  background: var(--bg-3);
  color: var(--text);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note,
.form-status {
  font-size: 0.95rem;
  color: var(--muted);
}
.form-status[data-state="ok"] {
  color: var(--ok);
}
.form-status[data-state="err"] {
  color: var(--danger);
}

.contact-panel {
  background: var(--paper);
  border: 1px dashed var(--line-strong);
  border-left: 3px solid var(--accent);
  padding: 28px;
  border-radius: var(--radius);
}
.contact-panel a {
  color: var(--accent-2);
}
.contact-panel a:hover {
  color: var(--accent-hover);
}
.dl {
  display: grid;
  gap: 18px;
}
.dl div {
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.dl dt {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.dl dd {
  margin: 0;
}

.spec {
  width: 100%;
  border: 1px dashed var(--line-strong);
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec div {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px dashed var(--line);
}
.spec div:last-child {
  border-bottom: 0;
}
.spec dt,
.spec dd {
  padding: 14px 18px;
  margin: 0;
}
.spec dt {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px dashed var(--line);
  background: var(--bg-3);
}

.page-hero {
  padding: 68px 0 40px;
  border-bottom: 1px dashed var(--line-strong);
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 22px,
      var(--line) 22px 23px
    ),
    var(--paper);
  background-size: 44px 100%, auto;
}
.page-hero h1 {
  max-width: 16ch;
}

.final-cta {
  padding: 88px 0;
  background: var(--ink);
  color: var(--paper);
  border-top: 0;
}
.final-cta h2 {
  max-width: 16ch;
  color: var(--paper);
}
.final-cta .kicker {
  color: #f3c4cb;
}
.final-cta .lede {
  color: rgba(247, 244, 237, 0.72);
}
.final-cta .btn-ghost {
  color: var(--paper);
  border-color: rgba(247, 244, 237, 0.35);
}
.final-cta .btn-ghost:hover {
  background: rgba(247, 244, 237, 0.08);
  color: var(--paper);
}

.site-footer {
  background: var(--ink);
  color: rgba(247, 244, 237, 0.62);
  padding: 48px 0 32px;
  border-top: 3px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand {
  font-family: var(--display);
  color: var(--paper);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-nav {
  display: grid;
  gap: 8px;
  overflow-wrap: anywhere;
}
.footer-nav a:hover,
.site-footer a:hover {
  color: #f3c4cb;
}
.footer-meta {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px dashed rgba(247, 244, 237, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.mt-10 { margin-top: 10px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.text-link {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover {
  color: var(--accent-hover);
}
.final-cta .text-link,
.site-footer .text-link {
  color: #f3c4cb;
}

@media (max-width: 1100px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .card-feature {
    grid-column: span 2;
  }
  .cards-quad .card-feature {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inner {
    padding-left: var(--gutter);
  }
}

@media (max-width: 900px) {
  .split,
  .split-start {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px dashed var(--line);
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-media {
    min-height: 42vh;
    order: -1;
  }
  .hero-media img {
    position: relative;
    height: 42vh;
    object-position: 50% 60%;
  }
  .hero-inner {
    padding: 36px var(--gutter) 44px;
  }
  .hero-route {
    width: 42%;
    inset: 10% 8% auto auto;
  }
  .equipment {
    min-height: 480px;
  }
}

@media (max-width: 920px) {
  :root {
    --gutter: 18px;
    --header-h: 66px;
    --sticky-cta: 64px;
  }
  body {
    font-size: 16px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: var(--paper);
    border-bottom: 1px solid var(--line-strong);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 18px 20px;
    gap: 0;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 16px 4px;
    border-bottom: 1px dashed var(--line);
    border-radius: 0;
  }
  .header-cta {
    margin: 12px 0 0;
    text-align: center;
    border-bottom: 0 !important;
    border-radius: var(--radius);
  }
  .cards,
  .form-grid,
  .spec div,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .card-feature {
    grid-column: auto;
  }
  .spec dt {
    border-right: 0;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 6px;
  }
  .spec dd {
    padding-top: 8px;
  }
  .section,
  .equipment-copy,
  .final-cta {
    padding: 64px 0;
  }
  .page-hero {
    padding: 48px 0 32px;
  }
  h1 {
    max-width: none;
  }
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    background: var(--ink);
    border-top: 1px solid rgba(247, 244, 237, 0.16);
  }
  .mobile-cta a {
    text-align: center;
    padding: 16px 10px;
    font-family: var(--display);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--paper);
  }
  .mobile-cta a:first-child {
    border-right: 1px solid rgba(247, 244, 237, 0.16);
  }
  .mobile-cta a:last-child {
    background: var(--accent);
    color: var(--paper);
  }
}

@media (max-width: 430px) {
  .cta-row .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat,
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px dashed var(--line);
  }
  .stat:last-child {
    border-bottom: 0;
  }
  .hero-inner {
    padding: 28px 0 36px;
    width: min(var(--wrap), 100% - (var(--gutter) * 2));
    margin-inline: auto;
  }
  .form,
  .contact-panel,
  .pay-block {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
