:root {
  --ink: #14241f;
  --ink-soft: #3a4f47;
  --paper: #eef3ef;
  --paper-deep: #d9e4dc;
  --surface: #f7faf7;
  --forest: #1a3d34;
  --forest-mid: #2f5c4f;
  --moss: #4f7a66;
  --clay: #c4783a;
  --clay-deep: #9a5a28;
  --sand: #e8d5a3;
  --line: rgba(20, 36, 31, 0.14);
  --shadow: 0 18px 50px rgba(20, 36, 31, 0.12);
  --radius: 4px;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;
  --max: 72rem;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 120, 58, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(79, 122, 102, 0.22), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--forest-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--clay-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--forest);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  background: var(--forest);
  color: var(--sand);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.main {
  overflow: clip;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn--primary {
  background: var(--forest);
  color: var(--sand);
  border-color: var(--forest);
}

.btn--primary:hover {
  background: var(--forest-mid);
  color: #fff;
  border-color: var(--forest-mid);
}

.btn--secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn--secondary:hover {
  background: var(--forest);
  color: var(--sand);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
}

.site-header__layers {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(238, 243, 239, 0.92), rgba(217, 228, 220, 0.88)),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 11px,
      rgba(26, 61, 52, 0.03) 11px,
      rgba(26, 61, 52, 0.03) 12px
    );
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.site-header__bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--forest);
}

.site-header__mark {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--sand);
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 3px;
  box-shadow: 4px 4px 0 var(--clay);
}

.site-header__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.site-header__toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--forest);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}

.site-header__toggle-lines,
.site-header__toggle-lines::before,
.site-header__toggle-lines::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--forest);
  margin: 0 auto;
  position: relative;
}

.site-header__toggle-lines::before,
.site-header__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-header__toggle-lines::before { top: -6px; }
.site-header__toggle-lines::after { top: 6px; }

.site-nav__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--forest);
}

.site-nav__cta {
  background: var(--clay);
  color: #fff !important;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
}

.site-nav__cta:hover {
  background: var(--clay-deep);
  color: #fff !important;
}

@media (max-width: 960px) {
  .site-header__toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
    animation: navDrop 0.35s var(--ease);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: var(--space-6);
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}

.site-footer__layers {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #12302a 0%, var(--forest) 45%, #0f2822 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 16px,
      rgba(232, 213, 163, 0.04) 16px,
      rgba(232, 213, 163, 0.04) 17px
    );
  z-index: -1;
}

.site-footer__layers::after {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: -8rem;
  bottom: -10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 120, 58, 0.35), transparent 65%);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-5) 1.25rem var(--space-4);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sand);
  margin-bottom: 0.5rem;
}

.site-footer__tagline,
.site-footer__address {
  color: rgba(238, 243, 239, 0.82);
}

.site-footer__heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sand);
  margin: 0 0 0.75rem;
}

.site-footer a {
  color: rgba(238, 243, 239, 0.9);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--sand);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer__copy {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 1.75rem;
  border-top: 1px solid rgba(232, 213, 163, 0.18);
  padding-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(238, 243, 239, 0.65);
}

@media (max-width: 860px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__panel {
  pointer-events: auto;
  max-width: 42rem;
  width: 100%;
  background: var(--surface);
  border: 2px solid var(--forest);
  box-shadow: var(--shadow), 8px 8px 0 var(--clay);
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  animation: riseIn 0.45s var(--ease);
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Layout helpers */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding: var(--space-5) 0;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
}

.section__lead {
  max-width: 38rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}

.section--layered {
  position: relative;
  isolation: isolate;
}

.section--layered::before {
  content: "";
  position: absolute;
  inset: 8% 4% auto;
  height: 84%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(232, 213, 163, 0.18)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 24px,
      rgba(26, 61, 52, 0.035) 24px,
      rgba(26, 61, 52, 0.035) 25px
    );
  border: 1px solid var(--line);
  z-index: -1;
  transform: rotate(-0.4deg);
}

/* Home hero — split composition, not H1+subtitle+two CTA default shape */
.home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  isolation: isolate;
}

.home-hero__visual {
  position: relative;
  min-height: 28rem;
  background-image:
    linear-gradient(160deg, rgba(20, 36, 31, 0.35), rgba(26, 61, 52, 0.55)),
    var(--home-hero-image);
  background-size: cover;
  background-position: center;
  order: 2;
}

.home-hero__visual::after {
  content: "";
  position: absolute;
  inset: auto 8% 10% auto;
  width: min(70%, 18rem);
  height: 5.5rem;
  border: 2px solid var(--sand);
  mix-blend-mode: soft-light;
  animation: framePulse 4.5s var(--ease) infinite;
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background:
    linear-gradient(200deg, rgba(247, 250, 247, 0.95), rgba(217, 228, 220, 0.75)),
    radial-gradient(circle at 0% 100%, rgba(196, 120, 58, 0.16), transparent 45%);
  position: relative;
  order: 1;
}

.home-hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: -0.04em;
  color: var(--forest);
  margin: 0 0 1rem;
  line-height: 0.95;
}

.home-hero__brand span {
  display: block;
  color: var(--clay);
  font-size: 0.42em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.home-hero__statement {
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  max-width: 28rem;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.home-hero__meta {
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--clay);
  padding-left: 0.85rem;
  margin-bottom: 1.75rem;
  max-width: 26rem;
}

@keyframes framePulse {
  0%, 100% { opacity: 0.45; transform: translate(0, 0); }
  50% { opacity: 0.9; transform: translate(-6px, -4px); }
}

@media (max-width: 860px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero__visual {
    order: 1;
    min-height: 42vw;
    min-height: 16rem;
  }

  .home-hero__copy {
    order: 2;
  }
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Offer band */
.offer-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-4);
  align-items: stretch;
}

.offer-band__panel {
  background: var(--forest);
  color: var(--paper);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
}

.offer-band__panel::before {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  top: -4rem;
  right: -3rem;
  border: 18px solid rgba(232, 213, 163, 0.12);
  border-radius: 50%;
}

.offer-band__panel h2 {
  color: var(--sand);
  margin-top: 0;
}

.offer-band__panel p {
  color: rgba(238, 243, 239, 0.88);
}

.offer-band__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-band__note {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.25rem 1.35rem;
  box-shadow: 6px 6px 0 rgba(26, 61, 52, 0.08);
}

.offer-band__note h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

@media (max-width: 800px) {
  .offer-band {
    grid-template-columns: 1fr;
  }
}

/* Service tiles — interaction containers */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
}

.service-tile__image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.92);
  transition: transform 0.5s var(--ease);
}

.service-tile:hover .service-tile__image {
  transform: scale(1.04);
}

.service-tile__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.service-tile__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.service-tile__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

@media (max-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* Quotes */
.quote-stack {
  display: grid;
  gap: 1.25rem;
}

.quote-item {
  background: transparent;
  border-left: 3px solid var(--clay);
  padding: 0.25rem 0 0.25rem 1.25rem;
}

.quote-item blockquote {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
}

.quote-item cite {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Page heroes */
.page-hero {
  position: relative;
  padding: var(--space-5) 0 var(--space-4);
  margin-bottom: var(--space-3);
}

.page-hero--image {
  min-height: 18rem;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(20, 36, 31, 0.25), rgba(20, 36, 31, 0.78)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-hero--image .page-hero__title,
.page-hero--image .page-hero__eyebrow,
.page-hero--image .page-hero__lead {
  color: #fff;
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

.page-hero__eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clay-deep);
  margin: 0 0 0.65rem;
}

.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0 0 0.75rem;
  max-width: 18ch;
}

.page-hero__lead {
  max-width: 36rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.content-page__body,
.prose-wrap {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.25rem var(--space-5);
}

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

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.25rem 0;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: rgba(26, 61, 52, 0.06);
  font-family: var(--font-display);
}

/* Detail / pricing / contact */
.detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: var(--space-4);
  align-items: start;
}

.detail-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.35rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  box-shadow: 6px 6px 0 rgba(196, 120, 58, 0.18);
}

.detail-aside dl {
  margin: 0;
}

.detail-aside dt {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--moss);
  margin-top: 0.85rem;
}

.detail-aside dd {
  margin: 0.2rem 0 0;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.steps li {
  position: relative;
  padding: 0 0 1.5rem 3.25rem;
  border-left: 2px solid var(--line);
  margin-left: 0.85rem;
}

.steps li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -0.95rem;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--sand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--surface);
}

.rate-table th,
.rate-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.rate-table th {
  font-family: var(--font-display);
  background: rgba(26, 61, 52, 0.07);
}

.story-block {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.story-block h3 {
  margin-top: 0;
}

.guide-list {
  display: grid;
  gap: 1.5rem;
}

.guide-item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  align-items: stretch;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.25s var(--ease);
}

.guide-item:hover {
  opacity: 0.85;
  text-decoration: none;
  color: inherit;
}

.guide-item img {
  width: 100%;
  height: 100%;
  min-height: 7rem;
  object-fit: cover;
}

.guide-item h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.guide-item time {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--moss);
}

@media (max-width: 720px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
  }

  .guide-item {
    grid-template-columns: 1fr;
  }
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.form__field {
  display: grid;
  gap: 0.35rem;
}

.form__field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--forest-mid);
}

.form__field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form__error {
  color: #8a2f1f;
  font-size: 0.88rem;
  min-height: 1.1em;
}

.form__status {
  padding: 0.85rem 1rem;
  border: 2px solid var(--forest);
  background: rgba(79, 122, 102, 0.12);
  display: none;
}

.form__status.is-visible {
  display: block;
}

.form__status.is-error {
  border-color: #8a2f1f;
  background: rgba(138, 47, 31, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4);
}

.contact-card {
  background: var(--forest);
  color: var(--paper);
  padding: 1.5rem;
}

.contact-card h2 {
  color: var(--sand);
  margin-top: 0;
}

.contact-card a {
  color: var(--sand);
}

.contact-card p {
  word-break: break-word;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Path page */
.path-timeline {
  display: grid;
  gap: 0;
  margin: 2rem 0;
}

.path-step {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.path-step__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--clay);
}

.path-step h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-5) 1.25rem;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin: 0;
  color: var(--clay);
}

.error-page p {
  max-width: 28rem;
  margin: 1rem auto 1.75rem;
}
