:root {
  --ink: #131611;
  --ink-2: #20251d;
  --stone: #51584e;
  --stone-2: #626a5f;
  --line: #d9e0d2;
  --paper: #f5f7ef;
  --paper-2: #e9efe0;
  --white: #ffffff;
  --accent: #dfff4f;
  --green: #11865d;
  --green-2: #0b6248;
  --cyan: #187fa7;
  --coral: #dc5a49;
  --blue: #3657b8;
  --radius: 8px;
  --radius-sm: 4px;
  --container: 1180px;
  --shadow-1:
    0 1px 2px rgb(16 20 13 / 0.06),
    0 8px 20px rgb(16 20 13 / 0.08);
  --shadow-2:
    0 2px 4px rgb(16 20 13 / 0.06),
    0 16px 36px rgb(16 20 13 / 0.12);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.stx-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a,
button,
summary,
label,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: var(--accent);
  color: var(--ink);
}

.stx-skip-link {
  position: fixed;
  inset-block-start: var(--space-4);
  inset-inline-start: var(--space-4);
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--ink);
  padding: var(--space-3) var(--space-4);
  font-weight: 850;
  transition: transform 160ms ease-out;
}

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

.stx-container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.stx-site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 40;
  background: rgb(19 22 17 / 0.92);
  color: var(--white);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  backdrop-filter: blur(18px);
}

.stx-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 72px;
}

.stx-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 44px;
  font-weight: 900;
}

.stx-brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 154px;
  object-fit: contain;
}

.stx-footer-logo {
  height: 54px;
  max-width: 182px;
}

.stx-brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--green));
  color: var(--ink);
  font-size: 0.86rem;
}

.stx-brand-name {
  white-space: nowrap;
}

.stx-primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-1);
}

.stx-primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  padding: 0 var(--space-3);
  color: rgb(255 255 255 / 0.78);
  font-size: 0.94rem;
  font-weight: 750;
  transition: color 160ms ease-out, background 160ms ease-out, transform 160ms ease-out;
}

.stx-primary-nav a[aria-current="page"] {
  background: rgb(255 255 255 / 0.10);
  color: var(--white);
}

.stx-nav-cta {
  background: var(--accent);
  color: var(--ink) !important;
}

.stx-nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 0.08);
  color: var(--white);
}

.stx-nav-toggle svg {
  width: 24px;
  height: 24px;
}

.stx-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;
}

.stx-page-hero {
  position: relative;
  isolation: isolate;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding-block: var(--space-16) var(--space-12);
}

.stx-page-hero.stx-compact {
  min-height: auto;
  padding-block: var(--space-16);
}

.stx-hero-media,
.stx-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stx-hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.stx-hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(6 8 6 / 0.94) 0%, rgb(6 8 6 / 0.78) 46%, rgb(6 8 6 / 0.24) 78%),
    linear-gradient(0deg, rgb(6 8 6 / 0.40), rgb(6 8 6 / 0.12));
}

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

.stx-hero-content h1,
.stx-content-page h1 {
  margin: 0;
  max-width: 12ch;
  font-size: 3.25rem;
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 950;
  text-wrap: balance;
}

.stx-hero-content .stx-long-title,
.stx-content-page h1 {
  max-width: 16ch;
}

.stx-hero-lead,
.stx-page-lead {
  max-width: 68ch;
  margin: var(--space-6) 0 0;
  color: rgb(255 255 255 / 0.84);
  font-size: 1.12rem;
  line-height: 1.68;
}

.stx-page-lead.stx-dark {
  color: var(--stone);
}

.stx-eyebrow,
.stx-section-kicker,
.stx-result-label,
.stx-tagline {
  margin: 0 0 var(--space-3);
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.stx-eyebrow,
.stx-section-dark .stx-section-kicker,
.stx-footer-brand .stx-brand-mark + span {
  color: var(--accent);
}

.stx-section-kicker,
.stx-result-label,
.stx-tagline {
  color: var(--green-2);
}

h1,
h2,
h3,
h4,
p,
li {
  overflow-wrap: break-word;
}

h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  margin-block: 0;
}

.stx-hero-actions,
.stx-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-block-start: var(--space-8);
}

.stx-action-row.stx-centered {
  justify-content: center;
}

.stx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.82rem 1rem;
  font-weight: 850;
  line-height: 1.15;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, background 160ms ease-out, border-color 160ms ease-out;
}

.stx-button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.stx-button-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 18px 36px rgb(223 255 79 / 0.18);
}

.stx-button-secondary {
  color: var(--white);
  border-color: rgb(255 255 255 / 0.28);
  background: rgb(255 255 255 / 0.08);
}

.stx-button-dark {
  background: var(--ink);
  color: var(--white);
}

.stx-button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.stx-hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  max-width: 980px;
  margin-block-start: var(--space-10);
}

.stx-proof-item {
  border-top: 1px solid rgb(255 255 255 / 0.22);
  padding-block-start: var(--space-4);
}

.stx-proof-item strong {
  display: block;
  color: var(--accent);
  font-size: 1.05rem;
}

.stx-proof-item span {
  display: block;
  margin-block-start: var(--space-1);
  color: rgb(255 255 255 / 0.72);
  font-size: 0.92rem;
}

.stx-signal-strip {
  background: var(--accent);
  color: var(--ink);
}

.stx-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stx-strip-grid a,
.stx-strip-grid span {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-inline-start: 1px solid rgb(19 22 17 / 0.14);
  padding-inline: var(--space-3);
  text-align: center;
  font-weight: 900;
}

.stx-strip-grid a:last-child,
.stx-strip-grid span:last-child {
  border-inline-end: 1px solid rgb(19 22 17 / 0.14);
}

.stx-section {
  padding-block: var(--space-20);
  scroll-margin-top: 92px;
}

.stx-section-tight {
  padding-block: var(--space-16);
}

.stx-section-light {
  background: var(--paper);
}

.stx-section-white {
  background: var(--white);
}

.stx-section-muted {
  background: var(--paper-2);
}

.stx-section-dark {
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 68%, #263224 100%);
  color: var(--white);
}

.stx-section-heading {
  max-width: 840px;
}

.stx-section-heading.stx-center {
  margin-inline: auto;
  text-align: center;
}

.stx-section-heading h2 {
  font-size: 2.25rem;
  font-weight: 950;
}

.stx-section-heading p:not(.stx-section-kicker),
.stx-card p,
.stx-plain-list p,
.stx-faq p {
  color: var(--stone);
}

.stx-section-heading p:not(.stx-section-kicker) {
  max-width: 70ch;
  margin-block-start: var(--space-4);
  font-size: 1.05rem;
}

.stx-section-dark .stx-section-heading p:not(.stx-section-kicker),
.stx-section-dark .stx-card p,
.stx-section-dark .stx-plain-list p {
  color: rgb(255 255 255 / 0.72);
}

.stx-grid {
  display: grid;
  gap: var(--space-5);
  margin-block-start: var(--space-10);
}

.stx-grid.stx-flush-grid {
  margin-block-start: 0;
}

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

.stx-grid.stx-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stx-grid.stx-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stx-pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stx-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.stx-section-dark .stx-card {
  border-color: rgb(255 255 255 / 0.13);
  background: rgb(255 255 255 / 0.07);
  box-shadow: none;
}

.stx-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--paper-2);
}

.stx-logo-preview {
  width: 100%;
  aspect-ratio: 13 / 4;
  object-fit: contain;
  padding: var(--space-5);
  background: var(--paper-2);
}

.stx-logo-card .stx-card-body {
  min-height: 190px;
}

.stx-card-body {
  padding: var(--space-6);
}

.stx-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
}

.stx-card p {
  margin-block-start: var(--space-3);
}

.stx-card .stx-button {
  margin-block-start: var(--space-5);
}

.stx-list-clean,
.stx-check-list,
.stx-result-list,
.stx-plain-list {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
}

.stx-check-list li,
.stx-result-list li,
.stx-plain-list li {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.stx-check-list li + li,
.stx-result-list li + li,
.stx-plain-list li + li {
  margin-block-start: var(--space-2);
}

.stx-check-list li::before,
.stx-result-list li::before,
.stx-plain-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-block-start: 0.55em;
  border-radius: 50%;
  background: var(--green);
}

.stx-section-dark .stx-check-list li::before,
.stx-section-dark .stx-result-list li::before,
.stx-section-dark .stx-plain-list li::before {
  background: var(--accent);
}

.stx-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-12);
  align-items: start;
}

.stx-sticky-copy {
  position: sticky;
  inset-block-start: 104px;
}

.stx-metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.stx-metric-row.stx-offset-top {
  margin-block-start: var(--space-10);
}

.stx-metric {
  padding: var(--space-5);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.stx-metric strong {
  display: block;
  color: var(--green-2);
  font-size: 1.3rem;
  line-height: 1.12;
}

.stx-metric span {
  display: block;
  margin-block-start: var(--space-2);
  color: var(--stone);
  font-size: 0.94rem;
}

.stx-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin-block-start: var(--space-10);
}

.stx-stack-card {
  min-height: 100%;
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.stx-stack-card h3 {
  font-size: 1.15rem;
  font-weight: 950;
}

.stx-stack-card p:not(.stx-tagline) {
  margin-block-start: var(--space-3);
  color: var(--stone);
}

.stx-stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
}

.stx-stack-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgb(17 134 93 / 0.26);
  border-radius: var(--radius-sm);
  padding: 0.28rem 0.55rem;
  background: rgb(17 134 93 / 0.08);
  color: var(--green-2);
  font-size: 0.86rem;
  font-weight: 850;
}

.stx-stack-note {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  align-items: center;
  margin-block-start: var(--space-5);
  border-left: 4px solid var(--green);
  padding: var(--space-4) var(--space-5);
  background: var(--paper);
  color: var(--stone);
}

.stx-stack-note strong {
  color: var(--ink);
}

.stx-process-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin-block-start: var(--space-10);
}

.stx-process-step {
  counter-increment: step;
  min-height: 260px;
  padding: var(--space-6);
  border-radius: var(--radius);
  border: 1px solid rgb(255 255 255 / 0.13);
  background: rgb(255 255 255 / 0.06);
}

.stx-process-step::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-block-end: var(--space-8);
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--ink);
  font-weight: 950;
}

.stx-process-step h3 {
  font-size: 1.12rem;
}

.stx-process-step p {
  margin-block-start: var(--space-3);
  color: rgb(255 255 255 / 0.72);
}

.stx-planner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: var(--space-5);
  align-items: stretch;
  margin-block-start: var(--space-10);
}

.stx-estimate-form,
.stx-estimate-result,
.stx-contact-form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.stx-estimate-form,
.stx-estimate-result {
  padding: var(--space-6);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset + fieldset,
.stx-range-field {
  margin-block-start: var(--space-8);
}

legend,
.stx-range-field > span,
.stx-contact-form label > span {
  display: block;
  margin-block-end: var(--space-3);
  color: var(--ink);
  font-weight: 900;
}

.stx-segmented {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-2);
}

.stx-segmented label {
  min-width: 0;
}

.stx-segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.stx-segmented span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 var(--space-3);
  text-align: center;
  color: var(--stone);
  font-weight: 800;
  transition: color 160ms ease-out, border-color 160ms ease-out, background 160ms ease-out;
}

.stx-segmented input:checked + span {
  border-color: var(--green);
  background: rgb(17 134 93 / 0.10);
  color: var(--green-2);
}

.stx-segmented input:focus-visible + span {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.stx-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.stx-check-grid label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 48px;
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink-2);
  font-weight: 700;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--green-2);
}

.stx-range-field input {
  width: 100%;
  accent-color: var(--green-2);
}

.stx-estimate-result {
  display: flex;
  flex-direction: column;
}

.stx-result-price {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.12;
  font-weight: 950;
}

.stx-result-time,
.stx-result-route {
  margin-block-start: var(--space-3);
  color: var(--stone);
  font-weight: 760;
}

.stx-estimate-result .stx-button {
  margin-block-start: auto;
}

.stx-faq {
  display: grid;
  gap: var(--space-3);
  margin-block-start: var(--space-8);
}

.stx-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.stx-faq summary {
  cursor: pointer;
  padding: var(--space-5);
  color: var(--ink);
  font-weight: 900;
}

.stx-faq p {
  padding: 0 var(--space-5) var(--space-5);
}

.stx-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-block-end: var(--space-6);
  color: rgb(255 255 255 / 0.70);
  font-size: 0.94rem;
}

.stx-breadcrumbs a {
  color: var(--accent);
  font-weight: 750;
}

.stx-breadcrumbs.stx-dark {
  color: var(--stone);
}

.stx-breadcrumbs.stx-dark a {
  color: var(--green-2);
}

.stx-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-12);
  align-items: start;
}

.stx-contact-form {
  padding: var(--space-6);
}

.stx-section-dark .stx-contact-form {
  border-color: rgb(255 255 255 / 0.14);
  background: rgb(255 255 255 / 0.08);
  box-shadow: var(--shadow-2);
}

.stx-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.stx-contact-form label {
  display: block;
}

.stx-contact-form label + label,
.stx-contact-form .stx-field-row + label {
  margin-block-start: var(--space-4);
}

.stx-section-dark .stx-contact-form label > span {
  color: var(--white);
}

.stx-form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: var(--space-3);
  margin-block-start: var(--space-4);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  background: rgb(17 134 93 / 0.08);
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.45;
}

.stx-form-consent input {
  flex: 0 0 auto;
  margin-block-start: 0.2rem;
}

.stx-form-consent a {
  color: var(--green-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stx-section-dark .stx-form-consent {
  background: rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.78);
}

.stx-section-dark .stx-form-consent a {
  color: var(--accent);
}

.stx-contact-form input,
.stx-contact-form textarea,
.stx-contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgb(19 22 17 / 0.18);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  background: rgb(255 255 255 / 0.94);
  color: var(--ink);
}

.stx-contact-form .stx-form-consent input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border-radius: 4px;
}

.stx-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.stx-form-submit {
  width: 100%;
  margin-block-start: var(--space-5);
}

.stx-form-status {
  min-height: 1.5em;
  margin: var(--space-4) 0 0;
  color: var(--stone);
}

.stx-section-dark .stx-form-status {
  color: rgb(255 255 255 / 0.78);
}

.stx-mail-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-block-start: var(--space-2);
  color: var(--green-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.stx-section-dark .stx-mail-link {
  color: var(--accent);
}

.stx-content-page {
  padding-block: var(--space-16);
}

.stx-content-page h1 {
  color: var(--ink);
}

.stx-content-page h2 {
  margin-block-start: var(--space-12);
  font-size: 2rem;
}

.stx-content-page h3 {
  margin-block-start: var(--space-8);
  font-size: 1.35rem;
}

.stx-content-page p,
.stx-content-page li {
  color: var(--stone);
}

.stx-content-page p {
  max-width: 76ch;
  margin-block-start: var(--space-4);
}

.stx-content-page ul,
.stx-content-page ol {
  max-width: 76ch;
  margin-block-start: var(--space-4);
  padding-inline-start: var(--space-6);
}

.stx-article-meta {
  margin-block: var(--space-5) var(--space-8);
  color: var(--stone-2);
  font-weight: 750;
}

.stx-site-footer {
  background: var(--ink);
  color: rgb(255 255 255 / 0.74);
}

.stx-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-8);
  min-height: 150px;
  align-items: center;
}

.stx-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-3);
}

.stx-footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgb(255 255 255 / 0.78);
  font-weight: 760;
}

.stx-footer-note {
  margin-block-start: var(--space-2);
  color: rgb(255 255 255 / 0.58);
}

.stx-primary-nav a:active,
.stx-button:active,
.stx-card:active,
.stx-stack-card:active,
.stx-footer-links a:active,
summary:active {
  transform: scale(0.98);
}

@media (hover: hover) and (pointer: fine) {
  .stx-primary-nav a:hover {
    background: rgb(255 255 255 / 0.10);
    color: var(--white);
    transform: translateY(-1px);
  }

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

  .stx-button-primary:hover {
    box-shadow: 0 22px 44px rgb(223 255 79 / 0.26);
  }

  .stx-button-secondary:hover {
    border-color: rgb(255 255 255 / 0.54);
    background: rgb(255 255 255 / 0.14);
  }

  .stx-footer-links a:hover {
    color: var(--accent);
  }
}

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

@media (min-width: 920px) {
  .stx-hero-content h1,
  .stx-content-page h1 {
    font-size: 5rem;
  }

  .stx-hero-content .stx-long-title,
  .stx-content-page h1 {
    font-size: 4.3rem;
  }

  .stx-section-heading h2 {
    font-size: 3rem;
  }
}

@media (max-width: 1100px) {
  .stx-primary-nav a {
    padding-inline: var(--space-2);
  }
}

@media (max-width: 980px) {
  .stx-grid.stx-two,
  .stx-grid.stx-three,
  .stx-grid.stx-four,
  .stx-stack-grid,
  .stx-split,
  .stx-planner,
  .stx-contact-layout,
  .stx-process-list,
  .stx-hero-proof,
  .stx-metric-row {
    grid-template-columns: 1fr;
  }

  .stx-process-list,
  .stx-metric-row,
  .stx-stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stx-sticky-copy {
    position: static;
  }

  .stx-estimate-result .stx-button {
    margin-block-start: var(--space-8);
  }
}

@media (max-width: 820px) {
  .stx-header-shell {
    min-height: 64px;
  }

  .stx-nav-toggle {
    display: grid;
  }

  .stx-primary-nav {
    position: fixed;
    inset-block-start: 64px;
    inset-inline: 0;
    display: grid;
    align-items: stretch;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    min-height: calc(100svh - 64px);
    overflow-y: auto;
    padding: var(--space-3) var(--space-4) var(--space-6);
    background: var(--ink);
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 180ms ease-out, visibility 180ms ease-out;
  }

  .stx-site-header.stx-is-open .stx-primary-nav {
    transform: translateY(0);
    visibility: visible;
  }

  .stx-primary-nav a {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-sm);
  }

  .stx-page-hero {
    min-height: 76svh;
    padding-block: var(--space-12) var(--space-10);
  }

  .stx-hero-scrim {
    background:
      linear-gradient(90deg, rgb(6 8 6 / 0.92), rgb(6 8 6 / 0.48)),
      linear-gradient(0deg, rgb(6 8 6 / 0.50), rgb(6 8 6 / 0.16));
  }

  .stx-hero-content h1,
  .stx-hero-content .stx-long-title,
  .stx-content-page h1 {
    font-size: 2.85rem;
  }

  .stx-section-heading h2,
  .stx-content-page h2 {
    font-size: 2rem;
  }

  .stx-strip-grid,
  .stx-stack-grid,
  .stx-segmented,
  .stx-check-grid,
  .stx-field-row {
    grid-template-columns: 1fr;
  }

  .stx-strip-grid a,
  .stx-strip-grid span {
    min-height: 54px;
    border-inline: 0;
    border-block-end: 1px solid rgb(19 22 17 / 0.14);
  }

  .stx-strip-grid a:last-child,
  .stx-strip-grid span:last-child {
    border-inline-end: 0;
    border-block-end: 0;
  }

  .stx-section {
    padding-block: var(--space-16);
  }

  .stx-card-body,
  .stx-process-step,
  .stx-estimate-form,
  .stx-estimate-result,
  .stx-contact-form {
    padding: var(--space-5);
  }
}

@media (max-width: 460px) {
  .stx-container {
    width: min(100% - 1rem, var(--container));
  }

  .stx-brand-name {
    display: none;
  }

  .stx-brand-logo {
    height: 38px;
    max-width: 126px;
  }

  .stx-hero-content h1,
  .stx-hero-content .stx-long-title,
  .stx-content-page h1 {
    font-size: 2.35rem;
  }

  .stx-button {
    width: 100%;
  }

  .stx-process-list,
  .stx-metric-row {
    grid-template-columns: 1fr;
  }

  .stx-footer-inner {
    grid-template-columns: 1fr;
  }

  .stx-footer-links {
    justify-content: flex-start;
  }
}

@media print {
  .stx-site-header,
  .stx-hero-media,
  .stx-hero-scrim,
  .stx-hero-actions,
  .stx-signal-strip,
  .stx-contact-form,
  .stx-site-footer {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .stx-section,
  .stx-content-page,
  .stx-page-hero {
    padding-block: 1rem;
  }
}

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

/* Contact form and footer alignment pass */
#contact {
  padding-block-end: clamp(4.5rem, 8vw, 7rem);
}

#contact .stx-contact-layout {
  align-items: start;
}

#contact .stx-contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

#contact .stx-contact-form label,
#contact .stx-field-row {
  min-width: 0;
}

#contact .stx-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

#contact .stx-contact-form label + label,
#contact .stx-contact-form .stx-field-row + label {
  margin-block-start: 0;
}

#contact .stx-contact-form label > span {
  display: block;
  min-height: 1.45em;
  margin-block-end: 0.55rem;
  line-height: 1.2;
}

#contact .stx-contact-form input,
#contact .stx-contact-form select {
  height: 56px;
  min-height: 56px;
}

#contact .stx-contact-form textarea {
  min-height: 170px;
}

#contact .stx-form-consent {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin-block-start: 0;
  padding: 1rem;
}

#contact .stx-contact-form .stx-form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-block-start: 0.15rem;
}

#contact .stx-form-submit {
  margin-block-start: 0.1rem;
}

.stx-site-footer {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.stx-footer-inner {
  min-height: auto;
  align-items: start;
}

.stx-footer-brand {
  min-height: 0;
}

.stx-footer-logo {
  height: 46px;
  max-width: 156px;
}

.stx-footer-note {
  max-width: 320px;
  margin-block-start: 1rem;
}

.stx-mail-link[hidden] {
  display: none !important;
}

@media (max-width: 820px) {
  #contact .stx-field-row {
    grid-template-columns: 1fr;
  }

  .stx-footer-logo {
    height: 40px;
    max-width: 140px;
  }
}
