:root {
  --bg: #111311;
  --surface: #181b18;
  --surface-2: #202420;
  --text: #f3f0e8;
  --muted: #aaa99f;
  --line: #333830;
  --accent: #d9f05d;
  --accent-dark: #0c0d09;
  --max: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(17,19,17,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  transition: transform .2s ease;

  img {
    margin: 10px 0;
  }

  &:hover img {
    transform-origin: center;
    transform: rotate(-5deg) scale(1.1);
  }
}


.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  transition: all .2s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: .25rem;

  &:hover,
  &:focus {
    color: var(--accent);
    border-color: var(--accent);
  }
}

.hero {
  padding: clamp(4rem, 9vw, 8rem) 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

h1, 
h2, 
h3 {
  line-height: .98;
  letter-spacing: -.045em;
  margin-top: 0;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 5rem);
  max-width: 11ch;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.6rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-copy,
.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 62ch;
}

.hero-visual {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--surface-2), #0d0f0d);
  display: grid;
  place-items: center;
  color: var(--muted);
  padding: 2rem;
  text-align: center;

  img {
    border-radius: 16px;
  }
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  background: var(--accent);
  border-radius: 999px;
  border: 2px solid var(--accent);
  color: var(--accent-dark);
  display: inline-block;
  font-weight: 800;
  padding: .9rem 1.2rem;
  text-decoration: none;
  transition: all .2s ease;

  &:hover,
  &:focus {
    background: transparent;
    color: var(--text);
    outline: none;
  }
}

.button--secondary {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--text);
  transition: all .2s ease;

  &:hover,
  &:focus {
    border-color: var(--accent);
    outline: none;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--line);
}

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

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
}

.stats span {
  color: var(--muted);
  font-size: .85rem;
  margin-top: .35rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--muted {
  background: var(--surface);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.journal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.journal-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.journal-card h3 {
  margin: 3rem 0 .8rem;
}

.journal-card h3 a {
  text-decoration: none;
}

.journal-card p {
  color: var(--muted);
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  margin-top: auto;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.build-grid a {
  background: var(--surface);
  text-decoration: none;
  padding: 2rem;
  min-height: 240px;
}

.build-grid span {
  color: var(--accent);
  font-weight: 800;
}

.build-grid strong {
  display: block;
  font-size: 2rem;
  margin: 2rem 0 .5rem;
  letter-spacing: -.04em;
}

.build-grid p {
  color: var(--muted);
  max-width: 48ch;
}

.page-hero, .post-hero {
  padding: clamp(4rem, 9vw, 8rem) 0 2rem;
}

.page-hero h1, .post-hero h1 {
  max-width: 14ch;
}

.prose {
  max-width: 780px;
  padding-bottom: 6rem;
}

.prose h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

.prose h3 {
  margin-top: 2rem;
}

.prose p, .prose li {
  color: #d2d0c8;
}

.prose a {
  color: var(--accent);
}

.back-link {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.25rem 0;
}

.post-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem .75rem;
  color: var(--muted);
  font-size: .82rem;
}

.cost-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.cost-row {
  display: grid;
  grid-template-columns: 2fr 1fr .6fr;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line);
}

.cost-row:first-child {
  border-top: 0;
}

.cost-row--head {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
}

.cost-row small {
  display: block;
  color: var(--muted);
}

.note {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0;
  color: var(--muted);
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .nav-list {
    gap: .75rem 1rem;
  }

  .hero-grid, .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

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

  .stats div:nth-child(2) {
    border-right: 0;
  }

  .stats div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .nav-list {
    font-size: .8rem;
  }

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

  .section-heading, .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cost-row {
    grid-template-columns: 1fr;
  }

  .cost-row--head {
    display: none;
  }
}

/* Gallery */
.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
}

.gallery-filter {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  padding: .7rem 1rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible {
  border-color: var(--muted);
  color: var(--text);
}

.gallery-filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  grid-column: span 4;
  margin: 0;
  min-width: 0;
}

.gallery-item:nth-child(5n + 1),
.gallery-item:nth-child(5n + 4) {
  grid-column: span 8;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item__button {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  cursor: zoom-in;
}

.gallery-item__button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:nth-child(5n + 1) .gallery-item__button img,
.gallery-item:nth-child(5n + 4) .gallery-item__button img {
  aspect-ratio: 16 / 9;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .45), transparent 55%);
  opacity: 0;
  transition: opacity .2s ease;
}

.gallery-item__overlay span {
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 800;
  padding: .45rem .7rem;
}

.gallery-item__button:hover img,
.gallery-item__button:focus-visible img {
  transform: scale(1.025);
}

.gallery-item__button:hover .gallery-item__overlay,
.gallery-item__button:focus-visible .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  padding: .85rem .25rem 1.25rem;
}

.gallery-item__caption p {
  margin: 0 0 .4rem;
  color: var(--text);
  font-size: .95rem;
}

.gallery-item__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1rem;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.gallery-empty {
  border: 1px dashed var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: clamp(2rem, 7vw, 5rem);
  text-align: center;
}

.gallery-empty h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.gallery-empty p:last-child {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--muted);
}

.gallery-empty code {
  color: var(--text);
}

.lightbox {
  width: min(94vw, 1280px);
  max-width: none;
  height: min(92vh, 900px);
  max-height: none;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #0b0d0b;
  color: var(--text);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(8px);
}

.lightbox__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  height: 100%;
}

.lightbox__figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1rem;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 2rem 0 1.25rem;
}

.lightbox__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox__caption {
  min-height: 1.5rem;
  padding-inline: 1rem;
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
}

.lightbox__close,
.lightbox__nav {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(24, 27, 24, .9);
  color: var(--text);
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox__nav {
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 1rem;
  font-size: 1.25rem;
}

.lightbox__close:hover,
.lightbox__nav:hover,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 800px) {
  .gallery-item,
  .gallery-item:nth-child(5n + 1),
  .gallery-item:nth-child(5n + 4) {
    grid-column: span 6;
  }

  .gallery-item .gallery-item__button img,
  .gallery-item:nth-child(5n + 1) .gallery-item__button img,
  .gallery-item:nth-child(5n + 4) .gallery-item__button img {
    aspect-ratio: 4 / 3;
  }

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

  .lightbox__figure {
    padding: 4rem 1rem 1rem;
  }

  .lightbox__nav {
    position: absolute;
    z-index: 2;
    bottom: 1rem;
  }

  .lightbox__nav--prev { left: 1rem; }
  .lightbox__nav--next { right: 1rem; }
}

@media (max-width: 520px) {
  .gallery-grid { gap: .75rem; }
  .gallery-item,
  .gallery-item:nth-child(5n + 1),
  .gallery-item:nth-child(5n + 4) {
    grid-column: 1 / -1;
  }
  .gallery-item__button { border-radius: 16px; }
  .lightbox { width: calc(100vw - 1rem); height: calc(100vh - 1rem); border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item__button img,
  .gallery-item__overlay,
  .gallery-filter {
    transition: none;
  }
}

/* ---------------------------------
   The Van
---------------------------------- */

.van-hero {
  padding-block: clamp(3rem, 7vw, 7rem);
}

.van-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.van-hero__content h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  margin-bottom: 2rem;
}

.van-hero__intro {
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
  margin-bottom: 1.25rem;
  max-width: 34rem;
}

.van-hero__content > p:last-child {
  color: var(--muted);
  max-width: 34rem;
}

.van-hero__image {
  border-radius: 28px;
  margin: 0;
  overflow: hidden;
}

.van-hero__image img {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}


/* Specs */

.spec-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 3rem 0 0;
}

.spec {
  border-right: 1px solid var(--line);
  padding: 1.5rem;
}

.spec:first-child {
  padding-left: 0;
}

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

.spec dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.spec dd {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  margin: 0;
}


/* Two-column editorial sections */

.content-grid {
  display: grid;
  gap: clamp(2rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.content-grid h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  max-width: 9ch;
}

.van-copy {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  max-width: 42rem;
}

.van-copy p + p {
  margin-top: 1.5rem;
}


/* Original photos */

.section-heading--split {
  align-items: end;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

.section-heading--split > p {
  color: var(--muted);
  max-width: 32rem;
}

.van-original__gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.5fr 1fr 1fr;
  margin-top: 3rem;
}

.van-original__gallery img {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.van-original__gallery img:first-child {
  aspect-ratio: auto;
  min-height: 28rem;
}

.section-action {
  margin-top: 1.5rem;
}


/* Jobs */

.job-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.job-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
}

.job-card__number {
  color: var(--accent);
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.job-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.job-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Project goal */

.van-goal__inner {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: 1fr 1fr;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.van-goal h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.van-goal__lead {
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

.goal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.goal-list li {
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  padding: 1rem 0;
}

.goal-list li:first-child {
  border-top: 1px solid var(--line);
}


/* Next */

.van-next__inner {
  align-items: end;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

.van-next h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
  max-width: 15ch;
}

.van-next__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.75rem;
}


/* Responsive */

@media (max-width: 900px) {
  .van-hero__grid,
  .content-grid,
  .van-goal__inner {
    grid-template-columns: 1fr;
  }

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

  .spec {
    border-bottom: 1px solid var(--line);
  }

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

  .van-original__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .van-original__gallery img:first-child {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .spec-grid,
  .job-grid,
  .van-original__gallery {
    grid-template-columns: 1fr;
  }

  .spec {
    border-right: 0;
    padding-inline: 0;
  }

  .section-heading--split,
  .van-next__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .van-original__gallery img:first-child {
    grid-column: auto;
  }

  .van-next__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
}

.conversion-hero {
  padding-block: clamp(4rem, 9vw, 8rem);
}

.conversion-hero__grid {
  align-items: end;
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: 1.1fr .9fr;
}

.conversion-hero h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  max-width: 8ch;
}

.conversion-hero__lead {
  color: var(--muted);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  max-width: 32rem;
}

.conversion-progress {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
}

.conversion-progress__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.conversion-progress__top span {
  color: var(--muted);
}

.conversion-progress__top strong {
  font-size: 2rem;
}

.conversion-progress__bar {
  background: var(--surface-2);
  border-radius: 999px;
  height: 8px;
  margin-block: 1.5rem;
  overflow: hidden;
}

.conversion-progress__bar span {
  background: var(--accent);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.conversion-progress p {
  color: var(--muted);
  margin-bottom: 0;
}


.conversion-intro {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.conversion-intro > p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 38rem;
}


.conversion-stages {
  border-top: 1px solid var(--line);
}

.conversion-stage {
  display: grid;
  gap: 2rem;
  grid-template-columns: 80px 1fr;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}

.conversion-stage__number {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
}

.conversion-stage.is-active .conversion-stage__number,
.conversion-stage.is-complete .conversion-stage__number {
  color: var(--accent);
}

.conversion-stage__heading {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.conversion-stage h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 0;
}

.conversion-stage p {
  color: var(--muted);
  margin-bottom: 0;
  margin-top: 1rem;
  max-width: 50rem;
}

.status {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .4rem .7rem;
  text-transform: uppercase;
}

.status--active {
  border-color: var(--accent);
  color: var(--accent);
}

.status--complete {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-dark);
}


.conversion-cost__inner {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.conversion-cost__figure {
  display: block;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -.06em;
  line-height: 1;
}

.conversion-cost__inner p {
  color: var(--muted);
}


.conversion-next {
  align-items: end;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

.conversion-next h2 {
  max-width: 12ch;
}


@media (max-width: 800px) {
  .conversion-hero__grid,
  .conversion-intro,
  .conversion-cost__inner {
    grid-template-columns: 1fr;
  }

  .conversion-stage {
    grid-template-columns: 48px 1fr;
  }

  .conversion-next {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .conversion-stage {
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .conversion-stage__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
