/* =========================================================
   TOTALLY CAIRO — Design System
   Palette drawn from the brand mark: Nile navy, mosque teal,
   desert gold, pyramid terracotta, papyrus cream.
   ========================================================= */

:root {
  --navy:        #0B4C7C;
  --navy-dark:   #073452;
  --teal:        #0E5A7A;
  --teal-dark:   #0A3F57;
  --gold:        #C9A25C;
  --gold-light:  #E7CC80;
  --gold-dark:   #A9803E;
  --terracotta:  #BD4E37;
  --terracotta-dark: #A6402C;
  --cream:       #FAF5EA;
  --cream-deep:  #F2EAD9;
  --sand:        #EFE2C4;
  --ink:         #2B2419;
  --ink-soft:    #55493A;
  --white:       #FFFFFF;

  --font-display: "Cinzel", "Georgia", serif;
  --font-serif:   "Lora", "Georgia", serif;
  --font-sans:    "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-card: 0 10px 30px -14px rgba(11, 76, 124, 0.35);
  --shadow-soft: 0 4px 14px -6px rgba(43, 36, 25, 0.18);

  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.2em; }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy-dark); line-height: 1.2; margin: 0 0 0.5em; font-weight: 600; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 2px; }

.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  display: inline-block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
}

/* ---------- Nile wave divider (signature element) ---------- */
.wave-divider {
  display: block;
  width: 100%;
  height: 46px;
  line-height: 0;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(11,76,124,0.10);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--navy-dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand img { height: 40px; width: auto; }
.brand strong { color: var(--terracotta); }

.main-nav { display: flex; gap: 2px; align-items: center; }
.main-nav a {
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { background: var(--sand); color: var(--navy-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 18px;
    border-bottom: 1px solid rgba(11,76,124,0.12);
    box-shadow: var(--shadow-soft);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 6px; border-bottom: 1px solid rgba(11,76,124,0.08); border-radius: 0; }
  .nav-toggle { display: inline-block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero__inner {
  padding: 84px 0 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 0.4em;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero p.lead {
  font-size: 1.12rem;
  color: rgba(250,245,234,0.86);
  max-width: 46ch;
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero-sun {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold) 60%, transparent 72%);
  opacity: 0.55;
  z-index: 1;
}
.hero-art { position: relative; z-index: 2; }

/* Small page hero (interior pages) */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 52px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.page-hero p.lead { color: rgba(250,245,234,0.86); max-width: 62ch; font-size: 1.05rem; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::before { background: var(--gold-light); }

.breadcrumbs {
  font-size: 0.82rem;
  color: rgba(250,245,234,0.75);
  margin-bottom: 18px;
}
.breadcrumbs a { color: rgba(250,245,234,0.92); border-bottom: 1px dotted rgba(250,245,234,0.4); }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.6; }

/* Quick facts strip (cartouche-style inscription band) */
.quickfacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  background: var(--navy-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(231,204,128,0.25);
}
.quickfacts div {
  padding: 16px 18px;
  border-right: 1px solid rgba(231,204,128,0.18);
}
.quickfacts div:last-child { border-right: none; }
.quickfacts .k {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.quickfacts .v { font-weight: 600; color: var(--white); font-size: 0.95rem; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
section.tight { padding: 40px 0; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

.alt-bg { background: var(--cream-deep); }
.navy-bg { background: var(--navy); color: var(--cream); }
.navy-bg h2, .navy-bg h3 { color: var(--white); }
.navy-bg p { color: rgba(250,245,234,0.85); }

/* ---------- Card grid ---------- */
.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid, .grid.cols-2, .grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11,76,124,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -16px rgba(11,76,124,0.4); }
.card-media {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-media svg { width: 56px; height: 56px; }
.card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.14rem; margin-bottom: 8px; }
.card-body p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  width: fit-content;
}
.card-link { margin-top: 12px; font-weight: 700; color: var(--navy); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.card-link::after { content: "→"; transition: transform 0.15s ease; }
.card:hover .card-link::after { transform: translateX(4px); }

/* media color variants */
.mv-navy   { background: linear-gradient(150deg, var(--navy), var(--navy-dark)); }
.mv-teal   { background: linear-gradient(150deg, var(--teal), var(--teal-dark)); }
.mv-gold   { background: linear-gradient(150deg, var(--gold-light), var(--gold)); }
.mv-terra  { background: linear-gradient(150deg, #D9754F, var(--terracotta-dark)); }

/* ---------- Article layout ---------- */
.article-layout {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 52px;
  align-items: start;
}
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
}
.prose h2 {
  font-size: 1.5rem;
  margin-top: 1.7em;
  padding-top: 0.2em;
  position: relative;
}
.prose h2::before {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 14px;
  border-radius: 2px;
}
.prose h3 { font-size: 1.18rem; margin-top: 1.4em; color: var(--terracotta-dark); }
.prose p { color: var(--ink-soft); font-size: 1.02rem; }
.prose ul li, .prose ol li { color: var(--ink-soft); margin-bottom: 0.4em; }
.prose blockquote {
  margin: 1.6em 0;
  padding: 18px 24px;
  border-left: 4px solid var(--gold);
  background: var(--cream-deep);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy-dark);
}
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 0.94rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--sand); }
.prose th { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); }

/* sidebar */
.sidebar-box {
  background: var(--white);
  border: 1px solid rgba(11,76,124,0.09);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.sidebar-box h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.sidebar-box ul { list-style: none; padding: 0; margin: 0; }
.sidebar-box li { margin-bottom: 10px; }
.sidebar-box a { font-weight: 600; color: var(--navy-dark); font-size: 0.92rem; }
.sidebar-box a:hover { color: var(--terracotta); }
.sidebar-box.cta { background: var(--navy); color: var(--cream); }
.sidebar-box.cta h4 { color: var(--gold-light); }
.sidebar-box.cta p { color: rgba(250,245,234,0.85); font-size: 0.92rem; }

/* TOC */
.toc-list { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc-list li { counter-increment: toc; margin-bottom: 8px; }
.toc-list a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
}
.toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  color: var(--gold-dark);
  font-size: 0.78rem;
}
.toc-list a:hover { color: var(--terracotta); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--navy-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform .15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--ink-soft); }

/* ---------- Stats strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-strip .num { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-light); display: block; }
.stat-strip .lbl { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(250,245,234,0.8); }

/* ---------- Newsletter / CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.88); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(250,245,234,0.78);
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 36px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: var(--white); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 34px; }
.footer-brand span { font-family: var(--font-display); color: var(--white); font-size: 1.05rem; }
.footer-bottom {
  border-top: 1px solid rgba(250,245,234,0.14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
.lang-note {
  font-size: 0.8rem;
  color: rgba(250,245,234,0.55);
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0; }
.tag-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy-dark);
}

/* skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Facts ticker ---------- */
.ticker {
  background: var(--navy-dark);
  color: rgba(250,245,234,0.88);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(231,204,128,0.16);
}
.ticker__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.ticker__inner::-webkit-scrollbar { display: none; }
.ticker__item { display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0; }
.ticker__item .dot { color: var(--gold-light); }
.ticker__item strong { color: var(--gold-light); font-weight: 700; }
.ticker__item a { color: rgba(250,245,234,0.88); }
.ticker__item a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Header utilities (search) ---------- */
.header-utils { display: flex; align-items: center; gap: 6px; }
.search-toggle {
  background: none;
  border: 1px solid rgba(11,76,124,0.25);
  color: var(--navy);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.search-toggle:hover { background: var(--sand); }
.search-toggle svg { width: 17px; height: 17px; }

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,20,30,0.55);
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 20px;
}
.search-overlay.is-open { display: flex; }
.search-panel {
  background: var(--cream);
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  overflow: hidden;
}
.search-panel__input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(11,76,124,0.12);
}
.search-panel__input-row svg { width: 20px; height: 20px; color: var(--navy); flex-shrink: 0; }
.search-panel input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
}
.search-panel__close {
  border: none;
  background: var(--sand);
  color: var(--navy-dark);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.search-results { max-height: 50vh; overflow-y: auto; padding: 10px; }
.search-result {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}
.search-result:hover, .search-result.is-active { background: var(--sand); }
.search-result .sr-title { font-weight: 700; color: var(--navy-dark); font-size: 0.96rem; }
.search-result .sr-desc { font-size: 0.84rem; color: var(--ink-soft); margin-top: 2px; }
.search-empty { padding: 26px 20px; color: var(--ink-soft); font-size: 0.92rem; text-align: center; }
.search-hint { padding: 10px 22px 16px; font-size: 0.76rem; color: var(--ink-soft); }
.search-hint kbd {
  background: var(--sand);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
}

/* ---------- Growth stat band ---------- */
.growth-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid rgba(11,76,124,0.10);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-soft);
}
.growth-band__count { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy-dark); line-height: 1; }
.growth-band__count span { color: var(--terracotta); }
.growth-band__label { font-size: 0.82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.growth-band__bar {
  flex: 1;
  min-width: 180px;
  height: 10px;
  background: var(--sand);
  border-radius: 999px;
  overflow: hidden;
}
.growth-band__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  border-radius: 999px;
}
.growth-band__goal { font-size: 0.86rem; color: var(--ink-soft); white-space: nowrap; }

.hub-count-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- Updates log ---------- */
.update-list { display: flex; flex-direction: column; gap: 0; }
.update-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--sand);
}
.update-item:first-child { padding-top: 0; }
.update-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.update-meta time { font-size: 0.8rem; color: var(--ink-soft); }
.update-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
}
.update-tag--launch { background: var(--terracotta); }
.update-tag--guide { background: var(--teal); }
.update-tag--data { background: var(--gold-dark); }
.update-item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.update-item h3 a { color: var(--navy-dark); }
.update-item h3 a:hover { color: var(--terracotta); }
.update-item p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }


/* 404 */
.error-page { text-align: center; padding: 110px 0; }
.error-page .code { font-family: var(--font-display); font-size: 5rem; color: var(--gold); }
