/* ============================================================
   Marsh Strategic Consulting — campaign-print editorial system
   Ink navy on warm paper, vermilion signal accent.
   Type: Fraunces (display) / Libre Franklin (text)
   ============================================================ */

:root {
  --ink: #0f1b33;
  --ink-soft: #3c4a63;
  --paper: #f7f3ea;
  --paper-deep: #efe8d8;
  --vermilion: #c13d6c;
  --vermilion-deep: #9e2f57;
  --gold: #b98a2e;
  --line: rgba(15, 27, 51, 0.18);
  --line-strong: rgba(15, 27, 51, 0.4);
  --paper-line: rgba(247, 243, 234, 0.22);

  --font-display: "Fraunces", "Georgia", serif;
  --font-text: "Libre Franklin", "Helvetica Neue", sans-serif;

  --measure: 62ch;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4rem, 9vw, 7.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  /* faint paper grain */
  background-image:
    radial-gradient(rgba(15, 27, 51, 0.028) 1px, transparent 1px);
  background-size: 3px 3px;
}

::selection { background: var(--vermilion); color: var(--paper); }

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

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--vermilion);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 100;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.wrap {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- masthead ---------- */

.topline {
  border-bottom: 1px solid var(--line);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-block: 0.55rem;
  color: var(--ink-soft);
}
.topline .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.topline span + span { white-space: nowrap; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.masthead .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  min-width: 0;
}
.brand .brand-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--vermilion);
}
.brand .brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand .brand-name em {
  font-style: italic;
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nav a {
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-block: 0.35rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--vermilion); }
.nav a[aria-current="page"] { border-bottom-color: var(--ink); }
.nav .nav-cta {
  border: 2px solid var(--ink);
  padding: 0.55rem 1.1rem;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav .nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-bottom-color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 40rem) {
  .topline .wrap span + span { display: none; }
}

@media (max-width: 30rem) {
  .brand .brand-name { font-size: 0.95rem; }
  .brand .brand-mark { font-size: 1.2rem; }
}

@media (max-width: 46rem) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 1rem var(--gutter);
    border-bottom: 1px solid var(--line);
  }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); color: var(--vermilion); }
  .nav .nav-cta { border: none; text-align: left; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-text);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.75rem;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.15s ease;
}
.btn-solid {
  background: var(--ink);
  color: var(--paper);
}
.btn-solid:hover {
  background: var(--vermilion);
  border-color: var(--vermilion);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(15, 27, 51, 0.18);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(15, 27, 51, 0.18);
}
.btn-paper {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-paper:hover {
  background: var(--vermilion);
  color: var(--paper);
  border-color: var(--vermilion);
  transform: translateY(-2px);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.hero-inner {
  position: relative;
  padding-block: clamp(4.5rem, 11vw, 9rem) clamp(4rem, 9vw, 7rem);
  z-index: 1;
}
.hero-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hero-map svg { width: 100%; height: 100%; }

.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--vermilion);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.kicker::before {
  content: "";
  width: 2.75rem;
  height: 2px;
  background: var(--vermilion);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.9rem, 8.5vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--vermilion);
}

.hero-sub {
  max-width: 46ch;
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-note {
  margin-top: 3.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}
.hero-note .star { color: var(--vermilion); }

/* ---------- marquee divider ---------- */

.marquee {
  border-bottom: 2px solid var(--ink);
  background: var(--vermilion);
  color: var(--paper);
  overflow: hidden;
  padding-block: 0.7rem;
  user-select: none;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- sections ---------- */

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

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 1.1rem;
}
.section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--vermilion);
  white-space: nowrap;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.section-head .head-aside {
  margin-left: auto;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
@media (max-width: 40rem) {
  .section-head { flex-wrap: wrap; }
  .section-head .head-aside { display: none; }
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
  max-width: 52ch;
  font-weight: 300;
}
.lede strong { font-weight: 600; }

/* ---------- story split ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 52rem) {
  .split { grid-template-columns: 1fr; }
}

.split-rail {
  position: sticky;
  top: 7rem;
}
.split-rail h3,
.split-rail .rail-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.split-rail .rail-title em { font-style: italic; font-weight: 400; color: var(--vermilion); }
@media (max-width: 52rem) {
  .split-rail { position: static; }
}

.prose > * + * { margin-top: 1.35rem; }
.prose { max-width: var(--measure); }
.prose .drop::first-letter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.4em;
  float: left;
  line-height: 0.82;
  padding-right: 0.09em;
  color: var(--vermilion);
}
.prose strong { font-weight: 600; }

.pull {
  border-left: 4px solid var(--vermilion);
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  color: var(--ink);
  margin-block: 2rem;
}

/* ---------- service ledger ---------- */

.ledger {
  border-top: 2px solid var(--ink);
}
.ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2rem, 4.5vw, 3.25rem);
  border-bottom: 1px solid var(--line-strong);
}
@media (max-width: 52rem) {
  .ledger-row { grid-template-columns: 1fr; gap: 1.25rem; }
}

.ledger-title {
  display: flex;
  gap: 1.1rem;
  align-items: baseline;
}
.ledger-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--vermilion);
  min-width: 2.4rem;
}
.ledger-title h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.ledger-title p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  max-width: 38ch;
}

.ledger-list {
  list-style: none;
  columns: 1;
}
.ledger-list li {
  padding: 0.7rem 0 0.7rem 1.7rem;
  position: relative;
  border-bottom: 1px dotted var(--line);
  break-inside: avoid;
}
.ledger-list li:last-child { border-bottom: none; }
.ledger-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.72rem;
  font-size: 0.72em;
  color: var(--vermilion);
}
@media (min-width: 64rem) {
  .ledger-list.two-col { columns: 2; column-gap: 2.5rem; }
}

.ledger-foot {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.fine {
  font-size: 0.875rem;
  color: var(--ink-soft);
  max-width: 52ch;
}
.fine strong { font-weight: 600; color: var(--ink); }

/* ---------- included band ---------- */

.included {
  background: var(--paper-deep);
  border-block: 2px solid var(--ink);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  border-left: 1px solid var(--line-strong);
}
.included-cell {
  border-right: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  padding: 1.6rem 1.4rem;
}
.included-cell .tick {
  color: var(--vermilion);
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}
.included-cell h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.included-cell p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- process ---------- */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.step {
  counter-increment: step;
  padding: 2rem 1.6rem 2.2rem;
  border-right: 1px solid var(--line-strong);
  position: relative;
}
.step:last-child { border-right: none; }
@media (max-width: 64rem) {
  .step { border-right: none; border-bottom: 1px solid var(--line-strong); }
  .step:last-child { border-bottom: none; }
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--vermilion);
  display: block;
  line-height: 1;
  margin-bottom: 1.1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- ink band (the question) ---------- */

.ink-band {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.ink-band::after {
  content: "★";
  position: absolute;
  right: -0.6rem;
  bottom: -3.5rem;
  font-size: 16rem;
  color: rgba(247, 243, 234, 0.05);
  pointer-events: none;
  line-height: 1;
}
.ink-band .wrap {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  position: relative;
  z-index: 1;
}
.ink-band .kicker { color: var(--paper); }
.ink-band .kicker::before { background: var(--vermilion); }
.ink-band h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 6.5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.ink-band h2 strong {
  font-style: normal;
  font-weight: 900;
  color: var(--vermilion);
}
.ink-band .band-sub {
  margin-top: 1.75rem;
  max-width: 48ch;
  color: rgba(247, 243, 234, 0.78);
  font-size: 1.05rem;
}
.ink-band .hero-actions { margin-top: 2.5rem; }

/* ---------- values ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 2px solid var(--ink);
}
.value-cell {
  background: var(--paper);
  padding: 2rem 1.6rem;
}
.value-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.value-cell h3 .star { color: var(--vermilion); font-size: 0.8em; }
.value-cell p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */

.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding-block: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "+";
  font-family: var(--font-display);
  font-style: italic;
  color: var(--vermilion);
  font-size: 1.3em;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::before { content: "–"; }
.faq details p {
  padding: 0 0 1.6rem 2.4rem;
  max-width: var(--measure);
  color: var(--ink-soft);
}

/* ---------- contact ---------- */

.contact { background: var(--paper-deep); border-top: 2px solid var(--ink); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
}
@media (max-width: 52rem) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.contact h2 em { font-style: italic; font-weight: 400; color: var(--vermilion); }
.contact .contact-copy {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  max-width: 40ch;
}
.contact .linkedin-line {
  margin-top: 2rem;
  font-size: 0.9375rem;
}
.contact .linkedin-line a {
  font-weight: 700;
  color: var(--ink);
  text-decoration-color: var(--vermilion);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field { margin-bottom: 1.4rem; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid var(--vermilion);
  outline-offset: 0;
  border-color: var(--vermilion);
}
.form-field textarea { min-height: 8.5rem; resize: vertical; }
.form-note {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 44ch;
}

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: 3.25rem 2.5rem;
}
.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .brand-name { color: var(--paper); }
.footer .foot-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
}
.footer .foot-brand em { font-style: italic; font-weight: 400; }
.footer .foot-tag {
  margin-top: 0.6rem;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.6);
}
.footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer nav a {
  color: rgba(247, 243, 234, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer nav a:hover { color: var(--paper); text-decoration: underline; text-decoration-color: var(--vermilion); }
.footer .foot-col h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.5);
  margin-bottom: 0.9rem;
}
.footer .foot-bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--paper-line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(247, 243, 234, 0.55);
}

/* ---------- 404 ---------- */

.notfound {
  min-height: 55vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding-block: var(--section-pad);
}
.notfound .big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 1;
  color: var(--vermilion);
}
.notfound p { margin-block: 1.25rem 2rem; color: var(--ink-soft); }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* HQ platform screenshots on the home page */
.hq-shot { width: 100%; height: auto; display: block; margin: 0.9rem 0 0.35rem; }
.hq-note { font-size: 0.75rem; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.9rem; }

/* Zone pages: platform screen strips */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.shots figure { margin: 0; }
.shots img { width: 100%; height: auto; display: block; }
.shots figcaption { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.5rem; line-height: 1.45; }
.shots figcaption b { color: var(--ink); font-weight: 600; }
@media (max-width: 720px) { .shots { grid-template-columns: 1fr; } }
.door-cta { margin-top: 1.25rem; }

/* Builder credit in the footer */
.foot-credit { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.foot-credit:hover { color: var(--paper); }
