/*
  Cargo Link Lebanon — new design system (Phase 3 foundation)
  See STRATEGY.md Section 3 for the full spec this implements.

  Migration note: css/style.css is the OLD stylesheet, still used by
  pages not yet migrated to page_fragments/site_header.php /
  site_footer.php. Keep both until every real page has migrated
  (see CLAUDE.md "Migration convention"), then retire the old one.
*/

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --color-primary: #0b2545;
  --color-primary-dark: #071a33;
  --color-secondary: #135d8c;
  --color-accent: #e8a33d;
  --color-background: #ffffff;
  --color-surface: #f5f7fa;
  --color-surface-alt: #eef2f6;
  --color-text: #101828;
  --color-text-muted: #5a6472;
  --color-border: #e1e5ea;
  --color-success: #1f9254;
  --color-warning: #b7791f;
  --color-error: #c0362c;
  --color-on-primary: #ffffff;

  /* Typography */
  --font-heading: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Misc */
  --radius-sm: 6px;
  --radius-md: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.1);
  --container-max: 1280px;
  --header-height: 76px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-secondary);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0 0 var(--space-4);
  font-weight: 700;
  /* Phase 10 fix: a single long word in a heading (e.g. "Deconsolidation",
     "Transportation") is wider than a 320-390px viewport at the --text-4xl
     size and has nowhere to break by default, causing real horizontal
     page overflow — confirmed on service_land.php and
     service_consolidation.php during this phase's breakpoint QA pass.
     Letting long words break instead of overflowing fixes it sitewide. */
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); font-weight: 600; }

p { margin: 0 0 var(--space-4); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button {
  font-family: inherit;
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-5xl); }
}

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  position: absolute !important;
  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: var(--space-4);
  top: -100px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.15s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-4);
}

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

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

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-6); }
}

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

@media (min-width: 1024px) {
  .section { padding-block: var(--space-10); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.btn--primary:hover {
  background: #d8912c;
  text-decoration: none;
}

.btn--secondary {
  background: transparent;
  border-color: var(--color-on-primary);
  color: inherit;
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--color-primary);
  color: var(--color-on-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
  transition: box-shadow 0.15s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: var(--header-height);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-on-primary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.site-logo__mark {
  color: var(--color-accent);
  display: inline-flex;
}

.site-logo__text-accent {
  font-weight: 500;
  opacity: 0.85;
}

.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.site-nav a {
  color: var(--color-on-primary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--color-accent);
}

.site-nav .has-dropdown {
  position: relative;
}

.site-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-on-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-2);
  min-width: 200px;
  margin-top: var(--space-2);
}

.site-nav .has-dropdown:hover .dropdown,
.site-nav .has-dropdown:focus-within .dropdown {
  display: block;
}

.site-nav .dropdown a {
  display: block;
  color: var(--color-text);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  border-bottom: none;
}

.site-nav .dropdown a:hover {
  background: var(--color-surface);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.site-header__cta {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--color-on-primary);
  display: block;
}

.mobile-nav {
  background: var(--color-primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-5);
  gap: var(--space-1);
}

.mobile-nav a {
  display: block;
  color: var(--color-on-primary);
  text-decoration: none;
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-base);
  border-radius: var(--radius-sm);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav .btn {
  margin-top: var(--space-3);
  width: 100%;
}

@media (min-width: 1024px) {
  .site-nav { display: block; }
  .site-header__cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding-block: var(--space-4);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--color-border);
}

.breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.breadcrumbs li[aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-on-primary);
  padding-block: var(--space-9);
}

.hero__inner {
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.hero h1 {
  color: var(--color-on-primary);
  margin-bottom: var(--space-5);
}

.hero__lead {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.section__note {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  border-left: 3px solid var(--color-border);
  padding-left: var(--space-4);
}

/* ---------- Cards (base) ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

/* ---------- Section helpers (Phase 4 — homepage) ---------- */
.section--alt {
  background: var(--color-surface);
}

.section__intro {
  max-width: 640px;
  margin-bottom: var(--space-7);
}

.section__intro h2 {
  margin-bottom: var(--space-3);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-background);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  padding-block: var(--space-6);
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.trust-bar__stat {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-primary);
}

.trust-bar__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.trust-bar__item--logo img {
  filter: grayscale(15%);
  opacity: 0.9;
}

.trust-bar__item--logo:hover img {
  opacity: 1;
}

/* ---------- Card grids (services / why-us) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4up { grid-template-columns: repeat(4, 1fr); }
}

.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.service-card a {
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
}

.service-card a:hover {
  text-decoration: underline;
}

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

.why-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.why-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: 0;
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 760px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  background: var(--color-background);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  font-size: var(--text-base);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

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

.faq-item summary::after {
  content: "+";
  font-size: var(--text-xl);
  color: var(--color-secondary);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212"; /* minus sign */
}

.faq-item p {
  margin-top: var(--space-3);
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ---------- Interior page layout (Phase 5 — About/Services/detail pages) ---------- */
.page-intro {
  padding-block: var(--space-7) var(--space-3);
}

.page-intro h1 {
  margin-bottom: 0;
}

.direct-answer {
  background: var(--color-surface);
  border-left: 4px solid var(--color-secondary);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-sm);
  font-size: var(--text-lg);
  margin-bottom: var(--space-7);
}

.direct-answer p {
  margin: 0;
}

.direct-answer strong {
  color: var(--color-primary);
}

.content-section {
  max-width: 760px;
}

.content-section + .content-section {
  margin-top: var(--space-7);
}

.definition-list dt {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--space-4);
}

.definition-list dd {
  margin: var(--space-1) 0 0;
  color: var(--color-text-muted);
}

.related-services {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.related-services h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.related-services ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
}

.related-services a {
  font-weight: 600;
  text-decoration: none;
}

.related-services a:hover {
  text-decoration: underline;
}

.additional-service-teaser {
  margin-top: var(--space-7);
}

.additional-service {
  padding-block: var(--space-6);
}

.additional-service:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.additional-service h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

/* ---------- Forms (Phase 6 — Contact & Request a Quote) ---------- */
.form--quote {
  max-width: 720px;
}

.form-grid {
  display: grid;
  /* minmax(0, 1fr) rather than a bare 1fr: a bare fr track's automatic
     minimum size is its content's min-content width, and a fixed-size
     <img> (Phase 8's 400px map image) doesn't shrink for that purpose —
     it was forcing this column (and the whole page) to overflow on
     narrow viewports. minmax(0, ...) removes that floor so the existing
     `img { max-width: 100% }` rule can actually take effect. */
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-8);
}

@media (min-width: 900px) {
  .form-grid {
    grid-template-columns: minmax(0, 340px) 1fr;
  }
}

.contact-info address {
  font-style: normal;
  margin-bottom: var(--space-4);
}

.contact-info p {
  margin-bottom: var(--space-3);
}

.contact-info img {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-top: var(--space-4);
}

.alert {
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

.alert--success {
  background: #e9f7ef;
  border: 1px solid var(--color-success);
  color: #145c34;
}

.alert--error {
  background: #fbeceb;
  border: 1px solid var(--color-error);
  color: #7a231c;
}

.alert p:last-child,
.alert ul:last-child {
  margin-bottom: 0;
}

.alert ul {
  list-style: disc;
  padding-left: var(--space-5);
  margin-top: var(--space-2);
}

fieldset.form-fieldset {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-5) var(--space-2);
  margin: 0 0 var(--space-6);
}

.form-fieldset legend {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  padding: 0 var(--space-2);
  font-size: var(--text-base);
}

.form-field {
  margin-bottom: var(--space-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .form-row--unit {
    grid-template-columns: 2fr 1fr;
  }
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: var(--space-1);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-background);
  color: var(--color-text);
}

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

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--color-error);
}

.form-error {
  color: var(--color-error);
  font-size: var(--text-xs);
  margin: var(--space-1) 0 0;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.captcha-row img {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

/* .btn--secondary's default border color (--color-on-primary, i.e. white)
   assumes the dark hero/CTA-band context it was designed for. Used on a
   light background — form-actions' Reset button, and the "Reload image"/
   "Play audio instead" controls in .captcha-row — that white border was
   invisible against the white page background. Phase 8 fix: scope a
   light-background override to any .btn--secondary inside a form,
   covering both spots with one rule. Uses --color-text-muted rather than
   --color-border for the border: --color-border (#E1E5EA) is only
   ~1.27:1 against white, well under the 3:1 WCAG 2.2 SC 1.4.11 needs for
   a UI component's boundary; --color-text-muted is 6:1. */
.form .btn--secondary {
  background: transparent;
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

.form .btn--secondary:hover {
  background: var(--color-surface);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding-block: var(--space-8);
  text-align: center;
}

.cta-band__inner {
  max-width: 640px;
  margin-inline: auto;
}

.cta-band h2 {
  color: var(--color-on-primary);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  padding-block: var(--space-8) var(--space-6);
  margin-top: var(--space-9);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-on-primary);
  font-size: var(--text-lg);
}

.site-footer address {
  font-style: normal;
  margin-bottom: var(--space-3);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

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

.site-footer__heading {
  color: var(--color-on-primary);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.site-footer__heading--spaced {
  margin-top: var(--space-5);
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-footer__bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: var(--text-sm);
}

/* --- Error pages (Phase 10) ---
   Shared by 400/401/403/404/413/500.shtml via cp_errordocument.shtml.
   Centered, generous vertical rhythm so the page reads calmly rather
   than like a dead end — the whole point is to get a lost visitor back
   into the real site. */
.error-page {
  max-width: 640px;
  padding-block: var(--space-9) var(--space-8);
  text-align: center;
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.error-page__reason {
  margin-bottom: var(--space-4);
}

.error-page__msg {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.error-page__msg code {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  font-size: var(--text-sm);
  word-break: break-all;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.error-page__links {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.error-page__links-heading {
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.error-page__links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-5);
  list-style: none;
}

.error-page__contact {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
