:root {
  --ink: #10110f;
  --ink-2: #171815;
  --canvas: #f4f0e6;
  --canvas-2: #e7e1d4;
  --lime: #c7ff2f;
  --lime-2: #a9e800;
  --cement: #b9b7ad;
  --steel: #3c3e38;
  --muted: #686a61;
  --white: #fffdf8;
  --rust: #d66537;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --condensed: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: 1440px;
}

.hero-photo > img,
.responsibility-media > img,
.hauler-photo > img,
.hauler-feature-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portable-estimator {
  padding-block: 52px 90px;
}

.portable-estimator .item-row input[type="number"] {
  width: 72px;
  min-height: 42px;
  padding: 8px;
  border: 1px solid #aaa599;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.portable-result {
  margin-top: 30px;
  padding: 26px;
  display: grid;
  background: var(--ink);
  color: var(--canvas);
}

.portable-result small {
  color: var(--cement);
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}

.portable-result strong {
  margin-top: 6px;
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(2.6rem, 10vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
}

.portable-result p {
  margin: 8px 0 0;
  color: var(--cement);
  font-size: .76rem;
}

.portable-estimator hr {
  margin-block: 44px;
  border: 0;
  border-top: 1px solid #d4cec1;
}

.mobile-menu a:not(.mobile-quote) {
  grid-template-columns: 1fr auto;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--canvas);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

img {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--lime);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  background: rgba(16, 17, 15, 0.96);
  border-bottom: 1px solid var(--steel);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid var(--lime);
  transform: rotate(-4deg);
}

.brand-mark span {
  width: 15px;
  height: 15px;
  display: block;
  border-right: 4px solid var(--lime);
  border-bottom: 4px solid var(--lime);
  transform: rotate(-45deg) translate(-1px, -1px);
}

.brand-copy {
  display: grid;
  line-height: 0.78;
  text-transform: uppercase;
  font-family: var(--condensed);
  font-stretch: condensed;
}

.brand-copy strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--canvas);
}

.brand-copy b {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.035em;
  color: var(--lime);
}

.desktop-nav,
.header-cta {
  display: none;
}

.menu-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--steel);
  background: transparent;
  color: var(--canvas);
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  transform: translateY(-12px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

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

.mobile-menu nav {
  width: min(100% - 40px, 680px);
  margin: 24px auto;
}

.mobile-menu a:not(.mobile-quote) {
  min-height: 68px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--steel);
  font-family: var(--condensed);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-menu small {
  color: var(--lime);
  font-size: 0.65rem;
}

.mobile-menu b {
  color: var(--lime);
}

.mobile-quote {
  min-height: 64px;
  margin-top: 28px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(199, 255, 47, 0.06), transparent 28%),
    var(--ink);
  border-bottom: 1px solid var(--steel);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.1;
  background-image: radial-gradient(rgba(244, 240, 230, 0.55) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  mask-image: linear-gradient(to right, #000 0%, transparent 78%);
}

.hero-photo {
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 45%;
}

.hero-photo img {
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.84) contrast(1.05);
}

.hero-screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, var(--ink) 0%, var(--ink) 56%, rgba(16, 17, 15, 0.18) 78%, rgba(16, 17, 15, 0.08) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: calc(100svh - 76px);
  padding-block: 42px 28px;
  display: flex;
  flex-direction: column;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cement);
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  display: block;
  background: var(--lime);
}

.eyebrow.dark {
  color: var(--muted);
}

.hero h1,
.section-heading h2,
.estimator-copy h2,
.responsibility-content h2,
.hauler-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(4.05rem, 18vw, 7.7rem);
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--lime);
}

.hero-lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--cement);
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.52;
}

.hero-actions {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.button {
  min-height: 58px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-family: var(--condensed);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button b {
  font-size: 1.5rem;
  line-height: 0;
  transition: transform 160ms ease;
}

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

.button:hover b {
  transform: translateX(4px);
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.button-primary:hover {
  box-shadow: 0 8px 0 rgba(199, 255, 47, 0.16);
}

.button-outline {
  border-color: var(--canvas);
  color: var(--canvas);
  background: rgba(16, 17, 15, 0.24);
}

.button-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(199, 255, 47, 0.08);
}

.button-ink {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}

.trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--canvas);
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  color: var(--lime);
  font-size: 1.05rem;
  font-style: normal;
}

.hero-steps {
  margin: auto 0 0;
  padding: 12px;
  display: grid;
  gap: 1px;
  list-style: none;
  background: rgba(16, 17, 15, 0.93);
  border: 1px solid var(--steel);
}

.hero-steps li {
  min-height: 58px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--steel);
}

.hero-steps li:last-child {
  border-bottom: 0;
}

.hero-steps li > b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--condensed);
}

.hero-steps span {
  display: grid;
}

.hero-steps strong {
  font-family: var(--condensed);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-steps small {
  margin-top: 2px;
  color: var(--cement);
  font-size: 0.7rem;
}

.section {
  position: relative;
  padding-block: 84px;
}

.section-canvas {
  background: var(--canvas);
  color: var(--ink);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.estimator-copy h2,
.responsibility-content h2,
.hauler-copy h2,
.faq-intro h2,
.final-cta h2 {
  font-size: clamp(3.4rem, 14vw, 7.5rem);
}

.split-heading {
  display: grid;
  gap: 24px;
}

.section-intro {
  max-width: 650px;
  align-self: end;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-intro p {
  margin: 0;
}

.text-link {
  width: fit-content;
  margin-top: 22px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--lime-2);
  font-size: 1.25rem;
}

.text-link.light {
  border-color: var(--canvas);
  color: var(--canvas);
}

.category-grid {
  display: grid;
  gap: 1px;
  background: #c9c3b7;
  border: 1px solid #c9c3b7;
}

.category-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.category-card:hover {
  z-index: 1;
  background: var(--ink);
  color: var(--canvas);
  transform: translateY(-4px);
}

.category-number {
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 900;
}

.category-card i {
  margin: 30px 0 22px;
  color: var(--lime-2);
  font-size: 2.8rem;
  font-style: normal;
  line-height: 1;
}

.category-card h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.category-card p {
  max-width: 300px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.category-card:hover p {
  color: var(--cement);
}

.category-card > b {
  position: absolute;
  right: 22px;
  top: 20px;
  color: var(--lime-2);
  font-size: 1.25rem;
}

.estimator-teaser {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(199, 255, 47, 0.05), transparent 38%),
    var(--ink);
}

.estimator-grid {
  display: grid;
  gap: 54px;
}

.estimator-copy h2 em,
.final-cta h2 em {
  color: var(--lime);
  font-style: normal;
}

.estimator-copy > p:not(.eyebrow),
.responsibility-content > p:not(.eyebrow),
.hauler-copy > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow),
.final-cta > .shell > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--cement);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--canvas);
  font-size: 0.92rem;
}

.check-list b {
  color: var(--lime);
}

.estimator-copy .button,
.hauler-copy .button {
  width: min(100%, 360px);
}

.estimator-panel {
  padding: 20px;
  align-self: center;
  background: #151713;
  border: 1px solid var(--steel);
  box-shadow: 18px 18px 0 rgba(199, 255, 47, 0.08);
}

.panel-top {
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  color: var(--cement);
  border-bottom: 1px solid var(--steel);
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-top b {
  color: var(--lime);
}

.truck-load {
  position: relative;
  min-height: 260px;
  margin-top: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #0a0b09;
  border: 2px solid var(--canvas);
}

.truck-lines {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.truck-lines span {
  border-right: 1px solid rgba(244, 240, 230, 0.16);
  border-bottom: 1px solid rgba(244, 240, 230, 0.16);
}

.load-fill {
  position: absolute;
  left: 0;
  right: 75%;
  top: 0;
  bottom: 0;
  background: var(--lime);
  opacity: 0.9;
}

.truck-load strong,
.truck-load small {
  position: relative;
  z-index: 2;
  margin-left: 30%;
}

.truck-load strong {
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.truck-load small {
  margin-top: 5px;
  color: var(--cement);
}

.example-range {
  padding: 24px 2px 4px;
  display: grid;
}

.example-range span {
  color: var(--cement);
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.example-range strong {
  margin-top: 7px;
  color: var(--lime);
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
}

.example-range small {
  margin-top: 8px;
  color: #8d8f86;
  font-size: 0.68rem;
}

.process-section {
  background: var(--canvas-2);
  color: var(--ink);
}

.centered-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading p:last-child {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-grid {
  display: grid;
  gap: 1px;
  background: #c9c3b7;
  border: 1px solid #c9c3b7;
}

.process-grid article {
  position: relative;
  min-height: 300px;
  padding: 26px;
  background: var(--canvas);
}

.process-grid article > b {
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 0.72rem;
}

.process-grid i {
  margin: 56px 0 30px;
  display: block;
  color: var(--lime-2);
  font-size: 3.6rem;
  font-style: normal;
}

.process-grid h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-grid p {
  max-width: 310px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.process-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.responsibility-section {
  padding: 0;
  display: grid;
  background: #151613;
}

.responsibility-media {
  position: relative;
  min-height: 420px;
}

.responsibility-media img {
  object-fit: cover;
}

.responsibility-content {
  padding: 70px 20px;
}

.responsibility-stats {
  margin: 32px 0;
  display: grid;
  border-top: 1px solid var(--steel);
}

.responsibility-stats div {
  min-height: 70px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--steel);
}

.responsibility-stats b {
  color: var(--lime);
  font-family: var(--condensed);
  font-size: 0.8rem;
}

.responsibility-stats span {
  color: var(--canvas);
  font-size: 0.9rem;
}

.use-case-grid {
  display: grid;
  gap: 14px;
}

.use-case-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid #ccc5b7;
  background: transparent;
}

.use-case-grid span {
  color: var(--lime-2);
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 900;
}

.use-case-grid h3 {
  margin: 44px 0 0;
  font-family: var(--condensed);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.use-case-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.ad-wrap {
  padding-block: 28px;
}

.ad-slot {
  min-height: 132px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border: 1px dashed #53564d;
  color: var(--cement);
}

.ad-slot span {
  display: block;
  color: #808278;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ad-slot strong {
  margin-top: 7px;
  display: block;
  color: var(--canvas);
  font-family: var(--condensed);
  text-transform: uppercase;
}

.ad-slot p {
  margin: 4px 0 0;
  font-size: 0.75rem;
}

.ad-slot a {
  color: var(--lime);
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hauler-section {
  overflow: hidden;
  border-top: 1px solid var(--steel);
}

.hauler-grid {
  display: grid;
  gap: 48px;
}

.hauler-photo {
  position: relative;
  min-height: 420px;
}

.hauler-photo img {
  object-fit: cover;
}

.hauler-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(16, 17, 15, 0.9));
}

.hauler-photo > span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.guides-section {
  border-top: 1px solid #d3ccbe;
}

.guide-grid {
  display: grid;
  gap: 14px;
}

.guide-grid > a {
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid #c9c3b7;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.guide-grid > a:hover {
  background: var(--ink);
  color: var(--canvas);
  transform: translateY(-4px);
}

.guide-grid small {
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-grid h3 {
  margin: 64px 0 0;
  font-family: var(--condensed);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.guide-grid p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.guide-grid > a:hover p,
.guide-grid > a:hover small {
  color: var(--cement);
}

.guide-grid b {
  margin-top: auto;
  color: var(--lime-2);
  font-family: var(--condensed);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.faq-section {
  background: #151613;
}

.faq-grid {
  display: grid;
  gap: 50px;
}

.faq-list details {
  border-top: 1px solid var(--steel);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--steel);
}

.faq-list summary {
  min-height: 78px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--canvas);
  font-family: var(--condensed);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--steel);
  color: var(--lime);
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -2px 0 24px;
  color: var(--cement);
  font-size: 0.9rem;
  line-height: 1.65;
}

.final-cta {
  padding-block: 90px;
  background: var(--lime);
  color: var(--ink);
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta .eyebrow span {
  background: var(--ink);
}

.final-cta h2 em {
  color: var(--ink);
  -webkit-text-stroke: 1px var(--ink);
}

.final-cta > .shell > p:not(.eyebrow) {
  margin-inline: auto;
  color: #39420d;
}

.final-cta .button {
  width: min(100%, 370px);
  margin-top: 28px;
}

.site-footer {
  padding-top: 68px;
  background: #0a0b09;
  border-top: 1px solid var(--steel);
}

.footer-top {
  display: grid;
  gap: 52px;
}

.brand-footer .brand-mark {
  width: 48px;
  height: 48px;
}

.brand-footer .brand-copy strong {
  font-size: 0.82rem;
}

.brand-footer .brand-copy b {
  font-size: 1.95rem;
}

.footer-brand > p {
  max-width: 420px;
  margin: 22px 0 0;
  color: var(--cement);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-email {
  margin-top: 20px;
  display: inline-block;
  color: var(--lime);
  font-size: 0.86rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 24px;
}

.footer-links h2 {
  margin: 0 0 15px;
  color: var(--canvas);
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  margin-top: 10px;
  display: block;
  color: var(--cement);
  font-size: 0.78rem;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--lime);
}

.footer-disclosure {
  margin-top: 54px;
  padding-block: 22px;
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}

.footer-disclosure p {
  max-width: 1120px;
  margin: 0;
  color: #777970;
  font-size: 0.68rem;
  line-height: 1.55;
}

.footer-bottom {
  min-height: 88px;
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  color: #777970;
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (min-width: 600px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .hero-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-steps li {
    border-right: 1px solid var(--steel);
    border-bottom: 0;
  }

  .hero-steps li:last-child {
    border-right: 0;
  }

  .category-grid,
  .process-grid,
  .use-case-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ad-slot {
    flex-direction: row;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .shell {
    width: min(100% - 64px, var(--shell));
  }

  .site-header,
  .header-inner {
    min-height: 86px;
  }

  .mobile-menu {
    inset: 86px 0 0;
  }

  .header-cta {
    min-height: 46px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--condensed);
    font-size: 0.77rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .menu-button {
    margin-left: auto;
  }

  .hero-inner {
    min-height: calc(100svh - 86px);
    padding-block: 58px 30px;
  }

  .hero-photo {
    inset: 0 0 0 auto;
    width: 58%;
    height: 100%;
  }

  .hero-photo img {
    object-position: 62% center;
  }

  .hero-screen {
    background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 41%, rgba(16, 17, 15, 0.83) 53%, rgba(16, 17, 15, 0.12) 78%);
  }

  .hero-copy {
    width: 65%;
  }

  .hero h1 {
    font-size: clamp(5.6rem, 10vw, 8.6rem);
  }

  .hero-steps {
    width: min(72%, 860px);
  }

  .section {
    padding-block: 112px;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 60px;
  }

  .section-heading h2,
  .estimator-copy h2,
  .responsibility-content h2,
  .hauler-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(5rem, 8vw, 8.8rem);
  }

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

  .category-card {
    min-height: 300px;
    padding: 30px;
  }

  .estimator-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
    align-items: center;
    gap: 80px;
  }

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

  .responsibility-section {
    grid-template-columns: 1fr 1fr;
  }

  .responsibility-media {
    min-height: 760px;
  }

  .responsibility-content {
    padding: 100px clamp(40px, 6vw, 110px);
    align-self: center;
  }

  .use-case-grid,
  .guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hauler-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 74px;
  }

  .hauler-photo {
    min-height: 620px;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
  }

  .footer-top {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  }

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

/* Content, directory, legal and guide pages */
.interior-section,
.hauler-feature {
  padding-block: 82px;
  background: var(--canvas);
  color: var(--ink);
}

.interior-title,
.hauler-feature h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(2.4rem, 9vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.93;
  text-transform: uppercase;
}

.dark-section {
  background: #151613;
  color: var(--canvas);
}

.dark-section .section-intro,
.dark-section .prose {
  color: var(--cement);
}

.price-table {
  margin-top: 42px;
  border: 1px solid #c9c3b7;
}

.price-row {
  padding: 15px;
  display: grid;
  gap: 10px;
  border-bottom: 1px solid #c9c3b7;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  display: grid;
  grid-template-columns: 84px 1fr;
  color: var(--muted);
  font-size: 0.86rem;
}

.price-row span::before {
  content: attr(data-label);
  color: #89867e;
  font-family: var(--condensed);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-row span:first-child,
.price-row span:last-child {
  color: var(--ink);
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}

.price-head {
  display: none;
  background: var(--ink);
  color: var(--canvas);
}

.price-head span {
  color: inherit;
}

.price-head span::before {
  display: none;
}

.table-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.factor-grid {
  display: grid;
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
}

.factor-grid article {
  min-height: 220px;
  padding: 25px;
  background: var(--ink);
}

.factor-grid article > b {
  color: var(--lime);
  font-family: var(--condensed);
  font-size: 0.7rem;
}

.factor-grid h3 {
  margin: 55px 0 0;
  color: var(--canvas);
  font-family: var(--condensed);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.factor-grid p {
  margin: 10px 0 0;
  color: var(--cement);
  font-size: 0.84rem;
  line-height: 1.55;
}

.factor-grid.light-grid {
  background: #cbc5b8;
  border-color: #cbc5b8;
}

.factor-grid.light-grid article {
  background: var(--canvas);
}

.factor-grid.light-grid h3 {
  color: var(--ink);
}

.factor-grid.light-grid p {
  color: var(--muted);
}

.number-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.number-list li {
  min-height: 62px;
  padding: 16px 0 16px 50px;
  position: relative;
  border-top: 1px solid #c9c3b7;
  counter-increment: steps;
  font-family: var(--condensed);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.number-list li:last-child {
  border-bottom: 1px solid #c9c3b7;
}

.number-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--lime-2);
  font-size: 0.7rem;
}

.number-list.compact {
  margin-top: 26px;
}

.callout-band {
  padding-block: 52px;
  background: var(--lime);
  color: var(--ink);
}

.callout-band > .shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.callout-band small {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.callout-band h2 {
  margin: 5px 0 0;
  font-family: var(--condensed);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.callout-band p {
  margin: 10px 0 0;
  color: #39420d;
  font-size: 0.86rem;
}

.interior-faq {
  padding-block: 82px;
  background: #151613;
}

.interior-faq.light {
  background: var(--canvas);
  color: var(--ink);
}

.mini-cta {
  padding-block: 74px;
  background: var(--lime);
  color: var(--ink);
  text-align: center;
}

.mini-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  letter-spacing: -0.025em;
  line-height: 0.84;
  text-transform: uppercase;
}

.mini-cta p {
  margin: 20px auto 0;
  color: #39420d;
}

.mini-cta .button {
  width: min(100%, 370px);
  margin-top: 26px;
}

.item-guide-controls {
  padding: 18px;
  display: grid;
  gap: 16px;
  background: #dfd8ca;
}

.item-guide-controls .field {
  margin: 0;
}

.item-count {
  margin: 20px 0 10px;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.item-results {
  display: grid;
  gap: 1px;
  background: #c9c3b7;
  border: 1px solid #c9c3b7;
}

.item-results article {
  min-height: 185px;
  padding: 22px;
  display: grid;
  align-content: start;
  background: var(--canvas);
}

.item-results small {
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 0.63rem;
  font-weight: 900;
  text-transform: uppercase;
}

.item-results h3 {
  margin: 7px 0 0;
  font-family: var(--condensed);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-chip {
  width: fit-content;
  margin-top: 18px;
  padding: 6px 8px;
  background: #efe4a3;
  color: #615821;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-chip.good {
  background: #ddf5a1;
  color: #35410b;
}

.status-chip.danger {
  background: #f3d1c4;
  color: #702b17;
}

.item-results p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.empty-state {
  padding: 40px 20px;
  border: 1px solid #c9c3b7;
  text-align: center;
}

.restricted-section {
  padding-block: 80px;
  background: #4a1f13;
  color: var(--canvas);
}

.restricted-section h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(2.4rem, 9vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.93;
  text-transform: uppercase;
}

.workflow-list article {
  padding-block: 30px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  border-top: 1px solid #c9c3b7;
}

.workflow-list article:last-child {
  border-bottom: 1px solid #c9c3b7;
}

.workflow-list article > b {
  color: var(--lime-2);
  font-family: var(--condensed);
  font-size: 0.72rem;
}

.workflow-list h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.workflow-list p {
  max-width: 790px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.verify-list {
  border-top: 1px solid var(--steel);
}

.verify-list > div {
  padding-block: 20px;
  border-bottom: 1px solid var(--steel);
}

.verify-list b {
  color: var(--canvas);
  font-family: var(--condensed);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.verify-list p {
  margin: 6px 0 0;
  color: var(--cement);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hauler-feature-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hauler-feature-photo {
  position: relative;
  min-height: 420px;
  box-shadow: 14px 14px 0 var(--lime-2);
}

.hauler-feature-photo img {
  object-fit: cover;
}

.hauler-feature p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.form-layout {
  display: grid;
  gap: 42px;
  align-items: start;
}

.form-lede {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.form-lede a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
}

.business-form {
  padding: 22px;
  background: var(--white);
  border: 1px solid #cbc5b8;
  box-shadow: 12px 12px 0 #d8d1c3;
}

.business-form .field:first-child {
  margin-top: 0;
}

.business-form .consent-field a {
  color: var(--ink);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  margin-top: 28px;
  border: 0;
  cursor: pointer;
}

.check-fieldset {
  margin: 26px 0 0;
  padding: 18px;
  display: grid;
  gap: 12px;
  border: 1px solid #cbc5b8;
}

.check-fieldset legend {
  padding-inline: 8px;
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.check-fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.check-fieldset input {
  width: 18px;
  height: 18px;
  accent-color: var(--lime-2);
}

.contact-notes {
  margin-top: 34px;
  border-top: 1px solid #c9c3b7;
}

.contact-notes > div {
  padding-block: 16px;
  border-bottom: 1px solid #c9c3b7;
}

.contact-notes b {
  font-family: var(--condensed);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.contact-notes p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.legal-hero {
  padding-block: 44px 70px;
  background: var(--ink);
  color: var(--canvas);
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 15vw, 8.5rem);
  letter-spacing: -0.025em;
  line-height: 0.85;
  text-transform: uppercase;
}

.legal-hero > .shell > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--cement);
  line-height: 1.65;
}

.legal-layout {
  padding-block: 60px 100px;
  display: grid;
  gap: 44px;
}

.legal-layout > aside {
  padding: 20px;
  display: grid;
  align-content: start;
  background: var(--canvas-2);
  border-left: 4px solid var(--lime-2);
}

.legal-layout > aside strong {
  font-family: var(--condensed);
  text-transform: uppercase;
}

.legal-layout > aside a {
  margin-top: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-layout > aside small {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.5;
}

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

.legal-content h2 {
  margin: 46px 0 12px;
  font-family: var(--condensed);
  font-size: 1.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-family: var(--condensed);
  font-size: 1rem;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #55574f;
  font-size: 0.9rem;
  line-height: 1.78;
}

.legal-content a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
}

.guide-library {
  display: grid;
  gap: 14px;
}

.guide-library > a {
  min-height: 300px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid #c9c3b7;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.guide-library > a:hover {
  background: var(--ink);
  color: var(--canvas);
  transform: translateY(-4px);
}

.guide-library > a > span {
  color: var(--lime-2);
  font-family: var(--condensed);
  font-size: 0.68rem;
  font-weight: 900;
}

.guide-library small {
  margin-top: 42px;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-library h2 {
  margin: 8px 0 0;
  font-family: var(--condensed);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.guide-library p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.guide-library b {
  margin-top: auto;
  color: var(--lime-2);
  font-family: var(--condensed);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.guide-library > a:hover p,
.guide-library > a:hover small {
  color: var(--cement);
}

.article-hero {
  padding-block: 44px 76px;
  background:
    linear-gradient(120deg, rgba(199, 255, 47, 0.08), transparent 42%),
    var(--ink);
  color: var(--canvas);
}

.article-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(3.2rem, 11vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.article-hero > .shell > p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--cement);
  font-size: 1rem;
  line-height: 1.65;
}

.article-meta {
  margin-top: 30px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  border-top: 1px solid var(--steel);
  color: #898b82;
  font-size: 0.68rem;
}

.article-layout {
  padding-block: 60px 100px;
  display: grid;
  gap: 46px;
}

.article-side {
  display: grid;
  align-content: start;
  gap: 20px;
}

.share-bar {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: var(--canvas-2);
}

.share-bar > span {
  width: 100%;
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.share-bar a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 900;
}

.share-bar button {
  min-height: 36px;
  padding-inline: 12px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
}

.article-action {
  padding: 20px;
  background: var(--ink);
  color: var(--canvas);
}

.article-action b {
  color: var(--lime);
  font-family: var(--condensed);
  text-transform: uppercase;
}

.article-action p {
  color: var(--cement);
  font-size: 0.76rem;
  line-height: 1.5;
}

.article-action a {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.takeaway-box {
  margin-bottom: 46px;
  padding: 24px;
  background: #eaffb0;
  border-left: 5px solid var(--lime-2);
}

.takeaway-box h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.takeaway-box ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.takeaway-box li {
  margin-top: 7px;
  color: #3f4c13;
  font-size: 0.82rem;
  line-height: 1.5;
}

.article-content > h2 {
  margin: 52px 0 14px;
  font-family: var(--condensed);
  font-size: clamp(1.7rem, 6vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.article-content > p {
  color: #55574f;
  font-size: 0.96rem;
  line-height: 1.8;
}

.article-disclaimer {
  margin-top: 56px;
  padding: 20px;
  border: 1px solid #c9c3b7;
}

.article-disclaimer b {
  font-family: var(--condensed);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.article-disclaimer p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.not-found {
  min-height: 72svh;
  padding-block: 90px;
  display: grid;
  align-items: center;
  background: var(--ink);
}

.not-found h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 16vw, 9rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.not-found p:not(.eyebrow) {
  color: var(--cement);
}

.not-found > .shell > div {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

@media (min-width: 600px) {
  .factor-grid,
  .item-results,
  .guide-library {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .item-guide-controls {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.35fr);
  }

  .not-found > .shell > div {
    max-width: 700px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .interior-section,
  .hauler-feature,
  .interior-faq {
    padding-block: 112px;
  }

  .price-row {
    min-height: 70px;
    padding: 0 22px;
    grid-template-columns: 0.7fr 1.5fr 0.8fr;
    align-items: center;
  }

  .price-row span {
    display: block;
  }

  .price-row span::before {
    display: none;
  }

  .price-head {
    display: grid;
  }

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

  .factor-grid article {
    min-height: 260px;
    padding: 30px;
  }

  .callout-band > .shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .callout-band .button {
    width: 330px;
  }

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

  .workflow-list article {
    padding-block: 46px;
    grid-template-columns: 90px 1fr;
  }

  .workflow-list h2 {
    font-size: 2.2rem;
  }

  .hauler-feature-grid,
  .form-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 80px;
  }

  .hauler-feature-photo {
    min-height: 620px;
  }

  .business-form {
    padding: 38px;
  }

  .legal-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 80px;
  }

  .legal-layout > aside {
    position: sticky;
    top: 120px;
  }

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

  .guide-library > a {
    min-height: 370px;
    padding: 32px;
  }

  .article-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 70px;
  }

  .article-side {
    position: sticky;
    top: 120px;
  }
}

@media (min-width: 1100px) {
  .guide-library {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .header-inner {
    display: grid;
    grid-template-columns: 230px 1fr auto;
  }

  .brand {
    padding-right: 28px;
    border-right: 2px solid var(--lime);
  }

  .desktop-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.6vw, 44px);
  }

  .desktop-nav a {
    position: relative;
    padding-block: 12px;
    font-family: var(--condensed);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 6px;
    height: 2px;
    background: var(--lime);
    transition: right 140ms ease;
  }

  .desktop-nav a:hover::after {
    right: 0;
  }

  .menu-button,
  .mobile-menu {
    display: none;
  }

  .hero-inner {
    padding-top: 6vh;
  }

  .hero-copy {
    width: 62%;
  }

  .hero h1 {
    font-size: clamp(6.8rem, 8.25vw, 9rem);
  }

  .hero-lede {
    font-size: 1.18rem;
  }

  .hero-actions {
    max-width: 690px;
  }

  .button {
    min-height: 64px;
    padding-inline: 26px;
  }

  .hero-steps {
    padding: 14px;
  }

  .hero-steps li {
    min-height: 68px;
  }

  .category-card {
    min-height: 330px;
  }

  .process-grid article {
    min-height: 350px;
    padding: 34px;
  }

  .use-case-grid article {
    min-height: 230px;
    padding: 32px;
  }

  .site-footer {
    padding-top: 86px;
  }
}

@media (min-width: 1500px) {
  .hero h1 {
    font-size: 9.6rem;
  }
}

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

/* Interior pages and forms */
.subpage {
  background: var(--canvas);
  color: var(--ink);
}

.page-hero {
  padding-block: 46px 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 15%, rgba(199, 255, 47, 0.13), transparent 28%),
    var(--ink);
  color: var(--canvas);
  border-bottom: 1px solid var(--steel);
}

.breadcrumbs {
  margin-bottom: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: #898b82;
  font-size: 0.72rem;
}

.breadcrumbs a:hover {
  color: var(--lime);
}

.page-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 16vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.82;
  text-transform: uppercase;
}

.page-hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.page-hero > .shell > p:last-child {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--cement);
  font-size: 1.02rem;
  line-height: 1.65;
}

.wizard-shell {
  padding-block: 46px 90px;
}

.estimate-wizard {
  max-width: 1160px;
  margin-inline: auto;
}

.wizard-progress {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #d3ccbe;
  border: 1px solid #d3ccbe;
  gap: 1px;
}

.wizard-progress div {
  min-height: 58px;
  padding: 10px;
  display: grid;
  align-content: center;
  background: #e7e1d4;
  color: #8b887f;
}

.wizard-progress div.active {
  background: var(--ink);
  color: var(--canvas);
}

.wizard-progress b {
  color: var(--lime-2);
  font-family: var(--condensed);
  font-size: 0.65rem;
}

.wizard-progress span {
  display: none;
  font-family: var(--condensed);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wizard-step {
  padding: 24px;
  background: var(--white);
  border: 1px solid #cbc5b8;
  box-shadow: 12px 12px 0 #dad3c5;
}

.wizard-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.wizard-heading > p {
  margin: 0 0 8px;
  color: var(--lime-2);
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wizard-heading h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(2.1rem, 8vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.wizard-heading > span {
  margin-top: 13px;
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.item-picker {
  display: grid;
  gap: 1px;
  background: #d4cec1;
  border: 1px solid #d4cec1;
}

.item-row {
  min-height: 84px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--canvas);
  transition: background 150ms ease, color 150ms ease;
}

.item-row.selected {
  background: #eaffb0;
}

.item-row > div:first-child {
  display: grid;
}

.item-row strong {
  font-family: var(--condensed);
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
}

.item-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.quantity-control {
  display: grid;
  grid-template-columns: 36px 32px 36px;
  align-items: center;
  flex: 0 0 auto;
  border: 1px solid #aaa599;
  background: var(--white);
}

.quantity-control button {
  width: 36px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
}

.quantity-control button:hover:not(:disabled) {
  background: var(--lime);
}

.quantity-control button:disabled {
  color: #bbb7ae;
  cursor: not-allowed;
}

.quantity-control output {
  text-align: center;
  font-family: var(--condensed);
  font-weight: 900;
}

.wizard-actions {
  margin-top: 32px;
  padding-top: 24px;
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  gap: 16px;
  border-top: 1px solid #d4cec1;
}

.wizard-actions > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.wizard-actions .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.wizard-actions .button:disabled {
  opacity: 0.55;
  cursor: progress;
}

.back-button {
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.choice-group {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  border: 0;
}

.choice-group legend {
  margin-bottom: 10px;
  font-family: var(--condensed);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-group label {
  position: relative;
  min-height: 70px;
  padding: 13px 13px 13px 48px;
  display: flex;
  align-items: center;
  border: 1px solid #cbc5b8;
  cursor: pointer;
}

.choice-group label:has(input:checked) {
  border-color: var(--ink);
  background: #eaffb0;
  box-shadow: inset 4px 0 0 var(--lime-2);
}

.choice-group input {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  accent-color: var(--lime-2);
}

.choice-group label > span {
  display: grid;
}

.choice-group strong {
  font-family: var(--condensed);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-group small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}

.field {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}

.field > span {
  font-family: var(--condensed);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field > span small {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #aaa599;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgba(169, 232, 0, 0.45);
}

.estimate-result {
  padding: 20px;
  background: var(--ink);
  color: var(--canvas);
}

.result-load {
  position: relative;
  min-height: 170px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 2px solid var(--canvas);
  background-image: linear-gradient(90deg, transparent 24.8%, rgba(244, 240, 230, 0.14) 25%, transparent 25.2%, transparent 49.8%, rgba(244, 240, 230, 0.14) 50%, transparent 50.2%, transparent 74.8%, rgba(244, 240, 230, 0.14) 75%, transparent 75.2%);
}

.result-load > span {
  position: absolute;
  inset: 0 auto 0 0;
  max-width: 100%;
  background: var(--lime);
  opacity: 0.9;
}

.result-load > div {
  position: relative;
  z-index: 2;
  display: grid;
  color: var(--canvas);
  mix-blend-mode: difference;
}

.result-load small,
.result-price small {
  font-family: var(--condensed);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-load strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.result-price {
  padding-block: 30px;
  display: grid;
}

.result-price small {
  color: var(--cement);
}

.result-price strong {
  margin-top: 6px;
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(3.2rem, 12vw, 6rem);
  line-height: 0.95;
}

.result-price p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--cement);
  font-size: 0.76rem;
  line-height: 1.55;
}

.result-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--steel);
}

.result-summary div {
  padding: 16px 8px 2px;
  display: grid;
  border-right: 1px solid var(--steel);
}

.result-summary div:last-child {
  border-right: 0;
}

.result-summary span {
  color: #898b82;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.result-summary b {
  margin-top: 4px;
  color: var(--canvas);
  font-family: var(--condensed);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.estimate-disclaimer {
  margin-top: 18px;
  padding: 18px;
  border-left: 4px solid var(--rust);
  background: #f5dfd4;
}

.estimate-disclaimer b {
  font-family: var(--condensed);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.estimate-disclaimer p {
  margin: 6px 0 0;
  color: #715040;
  font-size: 0.76rem;
  line-height: 1.5;
}

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

.consent-field {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--lime-2);
}

.marketplace-note {
  margin: 16px 0 0;
  padding: 13px;
  background: #ede7da;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-message {
  margin: 18px 0 0;
  padding: 13px;
  background: #eaffb0;
  color: #2e3a09;
  font-size: 0.78rem;
}

.form-message.error {
  background: #f5dfd4;
  color: #7a2f17;
}

.success-panel {
  padding: 42px 24px;
  background: var(--ink);
  color: var(--canvas);
  text-align: center;
}

.success-panel > b {
  width: 58px;
  height: 58px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 1.7rem;
}

.success-panel h3 {
  margin: 18px 0 0;
  font-family: var(--condensed);
  font-size: 2rem;
  text-transform: uppercase;
}

.success-panel p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--cement);
  line-height: 1.6;
}

.success-panel a {
  margin-top: 22px;
  display: inline-block;
  color: var(--lime);
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-explainer {
  padding-block: 80px;
  background: var(--canvas-2);
  border-top: 1px solid #cec7b9;
}

.content-columns {
  display: grid;
  gap: 30px;
}

.content-columns h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.prose {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.prose p {
  margin: 0 0 20px;
}

@media (min-width: 600px) {
  .wizard-progress span {
    display: block;
  }

  .item-picker,
  .choice-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-group legend {
    grid-column: 1 / -1;
  }

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

  .wizard-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .wizard-actions .button {
    width: min(100%, 330px);
  }
}

@media (min-width: 768px) {
  .page-hero {
    padding-block: 64px 100px;
  }

  .wizard-shell {
    padding-block: 70px 120px;
  }

  .wizard-step {
    padding: 48px;
  }

  .wizard-progress div {
    min-height: 72px;
    padding: 14px 18px;
  }

  .item-row {
    min-height: 96px;
    padding: 18px;
  }

  .estimate-result {
    padding: 30px;
  }

  .result-load {
    min-height: 230px;
    padding: 30px;
  }

  .content-columns {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 90px;
  }
}
