:root {
  --color-chalk: #f7f5f0;
  --color-white: #fffcf7;
  --color-teal: #5b9a8b;
  --color-teal-dark: #457a6d;
  --color-coral: #c47a6a;
  --color-dune: #e6d5bc;
  --color-navy: #1a2744;
  --color-navy-soft: #2a3a5c;
  --color-ink: #142033;
  --color-muted: #5c6578;
  --color-error: #9b3b2e;
  --color-success: #2f6b55;
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-sans: "Source Sans 3", "Source Sans Pro", "Segoe UI", sans-serif;
  --radius-card: 14px;
  --radius-pill: 999px;
  --shadow-paper: 0 10px 28px rgba(26, 39, 68, 0.08);
  --shadow-lift: 0 16px 36px rgba(26, 39, 68, 0.14);
  --header-h: 4.25rem;
  --space: clamp(1rem, 2.5vw, 2rem);
  --max: 72rem;
  --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-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(91, 154, 139, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(196, 122, 106, 0.1), transparent 45%),
    linear-gradient(180deg, var(--color-chalk) 0%, var(--color-white) 40%, var(--color-dune) 160%);
  min-height: 100vh;
}

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

a {
  color: var(--color-teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--color-navy);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-navy);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--navy:hover {
  background: var(--color-navy-soft);
  color: var(--color-white);
}

.btn--teal {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn--teal:hover {
  background: var(--color-teal-dark);
  color: var(--color-white);
}

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

.btn--ghost:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.text-link {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(var(--color-teal), var(--color-teal));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.35s var(--ease), color 0.25s var(--ease);
}

.text-link:hover {
  background-size: 100% 2px;
  color: var(--color-teal-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 245, 240, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
}

.site-header__inner {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
}

.site-header__list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__list a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-navy);
}

.site-header__list a:not(.site-header__cta):hover {
  color: var(--color-teal-dark);
}

.site-header__cta {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--color-navy);
  color: var(--color-white) !important;
}

.site-header__cta:hover {
  background: var(--color-teal);
}

@media (max-width: 900px) {
  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-chalk);
    border-bottom: 1px solid rgba(26, 39, 68, 0.1);
    padding: 1rem var(--space) 1.5rem;
    display: none;
  }

  .site-header__nav.is-open {
    display: block;
  }

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

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: rgba(247, 245, 240, 0.88);
  margin-top: 4rem;
  padding: 3.5rem 0 0;
}

.site-footer a {
  color: rgba(247, 245, 240, 0.88);
  text-decoration: none;
}

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

.site-footer__inner {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.site-footer__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.site-footer__tagline,
.site-footer__newsletter-text {
  color: rgba(247, 245, 240, 0.7);
  font-size: 0.95rem;
}

.site-footer__address {
  font-style: normal;
  margin: 1rem 0;
  line-height: 1.5;
}

.site-footer__heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dune);
  margin-bottom: 1rem;
}

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

.site-footer__links li {
  margin-bottom: 0.5rem;
}

.site-footer__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.site-footer__form input {
  flex: 1 1 10rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(247, 245, 240, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font: inherit;
}

.site-footer__form input::placeholder {
  color: rgba(247, 245, 240, 0.5);
}

.site-footer__strip {
  border-top: 1px solid rgba(247, 245, 240, 0.12);
  padding: 1.25rem 0 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.55);
}

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

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: 40rem;
  margin-inline: auto;
  background: var(--color-white);
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  padding: 1.25rem 1.4rem;
}

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

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}

.cookie-banner__title {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.cookie-banner__copy p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

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

.cookie-banner__error {
  color: var(--color-error);
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero variants */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.hero--asymmetric {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.75rem;
}

.hero__media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(26, 39, 68, 0.15);
  box-shadow: var(--shadow-paper);
  aspect-ratio: 4 / 5;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero__media-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(26, 39, 68, 0.78);
  color: var(--color-chalk);
  font-size: 0.85rem;
  border-radius: 10px;
}

.hero--band {
  position: relative;
  min-height: clamp(22rem, 55vh, 32rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.hero--band .hero__bg {
  position: absolute;
  inset: 0;
}

.hero--band .hero__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(0);
}

.hero--band .hero__overlay {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(transparent, rgba(20, 32, 51, 0.82));
  color: var(--color-chalk);
}

.hero--band .hero__title,
.hero--band .hero__eyebrow {
  color: var(--color-chalk);
}

.hero--band .hero__lead {
  color: rgba(247, 245, 240, 0.88);
}

.hero--split-text {
  max-width: 40rem;
}

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

  .hero__media {
    aspect-ratio: 16 / 11;
    order: -1;
  }
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--tint {
  background: rgba(230, 213, 188, 0.35);
  border-block: 1px solid rgba(26, 39, 68, 0.06);
}

.section--teal-soft {
  background: rgba(91, 154, 139, 0.1);
}

.section__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section__kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
  margin-bottom: 0.4rem;
}

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

.section__intro {
  color: var(--color-muted);
  max-width: 36rem;
}

.wide-band {
  position: relative;
  min-height: 18rem;
  margin: 2rem 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(26, 39, 68, 0.12);
}

.wide-band img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.wide-band__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(26, 39, 68, 0.75));
  color: var(--color-chalk);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--color-white);
  border: 1px solid rgba(26, 39, 68, 0.18);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-paper);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.card__text {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.card--tint {
  background: rgba(91, 154, 139, 0.08);
}

.card--coral {
  background: rgba(196, 122, 106, 0.08);
}

/* Compact modules */
.compact-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 700px) {
  .compact-row,
  .section__header {
    grid-template-columns: 1fr;
  }
}

.stat-note {
  display: grid;
  gap: 1rem;
}

.stat-note__item {
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--color-teal);
  background: var(--color-white);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  box-shadow: var(--shadow-paper);
}

.stat-note__label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-coral);
  font-weight: 700;
}

/* Reviews */
.review-grid {
  display: grid;
  gap: 1.25rem;
}

.review {
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid rgba(26, 39, 68, 0.15);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-paper);
}

.review--wide {
  grid-column: 1 / -1;
}

.review__quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.45;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.review__meta {
  font-size: 0.9rem;
  color: var(--color-muted);
}

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

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

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.team-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__role {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

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

.form__row--2 {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(26, 39, 68, 0.25);
  border-radius: 10px;
  font: inherit;
  background: var(--color-white);
  color: var(--color-ink);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form__error {
  color: var(--color-error);
  font-size: 0.88rem;
  margin: 0;
}

.form-message {
  margin: 0.5rem 0 0;
  font-weight: 600;
}

.form-message.is-success {
  color: var(--color-success);
}

.form-message.is-error {
  color: var(--color-error);
}

.contact-aside {
  padding: 1.5rem;
  background: rgba(26, 39, 68, 0.04);
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: var(--radius-card);
}

.contact-aside address {
  font-style: normal;
  margin-bottom: 1rem;
}

/* Page chrome */
.page-hero {
  padding: clamp(2rem, 4vw, 3rem) 0 1rem;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero__lead {
  max-width: 40rem;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.prose {
  max-width: 44rem;
}

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

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

.prose th,
.prose td {
  border: 1px solid rgba(26, 39, 68, 0.15);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.prose th {
  background: rgba(91, 154, 139, 0.12);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.detail-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.35rem;
  background: var(--color-white);
  border: 1px solid rgba(26, 39, 68, 0.18);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-paper);
}

.detail-aside dl {
  margin: 0;
}

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

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

.detail-hero-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(26, 39, 68, 0.12);
  margin-bottom: 1.5rem;
  aspect-ratio: 16 / 9;
}

.detail-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

  .detail-aside {
    position: static;
  }
}

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

.steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 0.75rem;
  background: var(--color-white);
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: var(--radius-card);
}

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

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(26, 39, 68, 0.1);
  text-align: left;
}

.pricing-table th {
  background: var(--color-navy);
  color: var(--color-chalk);
  font-weight: 600;
}

.note-box {
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-card);
  background: rgba(196, 122, 106, 0.1);
  border: 1px solid rgba(196, 122, 106, 0.35);
  margin: 1.5rem 0;
}

.approach-timeline {
  display: grid;
  gap: 0;
}

.approach-timeline__item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26, 39, 68, 0.12);
}

.approach-timeline__phase {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-teal-dark);
}

.post-meta {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.post-cover {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 21 / 9;
  border: 1px solid rgba(26, 39, 68, 0.12);
}

.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(91, 154, 139, 0.15);
  color: var(--color-navy);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.error-page {
  text-align: center;
  padding: 5rem 0 4rem;
}

.error-page__code {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--color-coral);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-teal);
}
