/* ============================================
   WAIDT Ltd. — Editorial industrial aesthetic
   Palette: warm off-white, ink black, rust accent
   ============================================ */

:root {
  --ink: #1a1815;
  --ink-soft: #3d3a35;
  --paper: #f5f1ea;
  --paper-warm: #ebe4d6;
  --rust: #b8441f;
  --rust-dark: #8f3416;
  --rule: #d4cdbe;
  --shadow: 0 24px 60px -28px rgba(26, 24, 21, 0.25);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================
   Typography
   ============================================ */

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

h1 { font-size: clamp(2.5rem, 6vw, 5.25rem); font-weight: 600; }
h2 { font-size: clamp(1.875rem, 4vw, 3.25rem); }
h3 { font-size: 1.375rem; letter-spacing: -0.01em; }
h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-body); font-weight: 600; }

p { color: var(--ink-soft); }

em { font-style: italic; color: var(--rust); font-weight: 400; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rust);
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rust);
}

/* ============================================
   Header / Nav
   ============================================ */

.site-header {
  position: sticky; top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 42px; height: 42px;
  object-fit: contain;
  background: var(--paper);
  padding: 3px;
}

.logo-sub {
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:hover, .nav a.active { color: var(--ink); }

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--rust);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px; width: 24px;
  background: var(--ink);
  margin: 0 auto;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "1981";
  position: absolute;
  right: -0.5rem;
  bottom: -2rem;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 800;
  color: var(--paper-warm);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.hero-inner { position: relative; z-index: 1; }

.hero-meta { margin-bottom: 2rem; }

.hero-title {
  max-width: 18ch;
  margin-bottom: 1.75rem;
  animation: rise 0.8s cubic-bezier(.2,.8,.2,1) both;
}

.hero-lede {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  margin-bottom: 2.5rem;
  animation: rise 0.8s 0.15s cubic-bezier(.2,.8,.2,1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: rise 0.8s 0.3s cubic-bezier(.2,.8,.2,1) both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  max-width: 720px;
  animation: rise 0.8s 0.45s cubic-bezier(.2,.8,.2,1) both;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

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

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--rust);
  border-color: var(--rust);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  padding-bottom: 3px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 0.8rem; }

/* ============================================
   Story section
   ============================================ */

.story {
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-bottom: 1px solid var(--rule);
}

.story-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.story-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  padding-top: 0.6rem;
  border-top: 2px solid var(--ink);
  font-weight: 600;
}

.story-content h2 { margin-bottom: 1.5rem; max-width: 22ch; }
.story-content p { margin-bottom: 1.25rem; font-size: 1.1rem; max-width: 58ch; }
.story-content p:last-of-type { margin-bottom: 2rem; }

/* ============================================
   Services
   ============================================ */

.services {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
}

.section-head { margin-bottom: 3.5rem; }
.section-head .eyebrow { margin-bottom: 1rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.service-card {
  padding: 2.5rem 2rem 3rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper-warm);
  transition: background 0.25s, color 0.25s;
  position: relative;
}

.service-card:hover { background: var(--ink); }
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-num { color: var(--paper); }
.service-card:hover .service-num { color: var(--rust); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--rust);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  font-weight: 600;
}

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; }

/* ============================================
   CTA
   ============================================ */

.cta {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(184,68,31,0.15), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta h2 { color: var(--paper); margin-bottom: 1rem; }
.cta p { color: rgba(245,241,234,0.7); margin-bottom: 2.5rem; font-size: 1.1rem; }
.cta-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.cta .btn-primary { background: var(--rust); border-color: var(--rust); }
.cta .btn-primary:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta .btn-ghost { color: var(--paper); border-color: var(--paper); }
.cta .btn-ghost:hover { background: var(--paper); color: var(--ink); }

/* ============================================
   Footer
   ============================================ */

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-family: var(--font-display); font-style: italic; color: var(--ink-soft); }

.footer-col h4 { margin-bottom: 1rem; color: var(--ink); }
.footer-col p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.8; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--rust); }

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bbb { color: var(--rust); font-weight: 600; }

/* ============================================
   Projects page
   ============================================ */

.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}

.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1.25rem; max-width: 16ch; }
.page-hero p { font-size: 1.15rem; max-width: 56ch; }

.project-gallery {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.project-category {
  margin-bottom: 4rem;
}

.project-category-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}

.project-category-head h2 { font-size: 1.75rem; }
.project-category-head .count {
  font-family: var(--font-display);
  color: var(--ink-soft);
  font-style: italic;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card {
  overflow: hidden;
  background: var(--paper-warm);
  position: relative;
  aspect-ratio: 4 / 3;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover img { transform: scale(1.05); }

.project-card .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(26,24,21,0.85), transparent);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============================================
   Coach Houses page
   ============================================ */

.coach-feature {
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-bottom: 1px solid var(--rule);
}

.coach-lede {
  max-width: 68ch;
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 3rem;
}

.coach-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  border: 1px solid var(--ink);
  margin-bottom: 3rem;
  max-width: 800px;
}

.spec {
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
  text-align: center;
}
.spec:last-child { border-right: none; }

.spec-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.coach-gallery {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
}

.coach-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.coach-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-warm);
}
.coach-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.coach-image:hover img { transform: scale(1.04); }

.coach-image .label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   Contact page
   ============================================ */

.contact-main {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-info .eyebrow { margin-bottom: 1.25rem; }
.contact-info h1 { margin-bottom: 1.5rem; max-width: 14ch; }
.contact-info p.lede { font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 46ch; }

.contact-block {
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule);
}
.contact-block:last-of-type { border-bottom: 1px solid var(--rule); }

.contact-block-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  display: block;
}

.contact-block-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
a.contact-block-value:hover { color: var(--rust); }

.contact-form-wrap {
  background: var(--paper-warm);
  padding: 2.5rem;
  border: 1px solid var(--ink);
}

.contact-form-wrap h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; font-size: 0.95rem; }

.form-field { margin-bottom: 1.25rem; }

.form-field label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ink);
}

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

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .story-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .coach-specs { grid-template-columns: repeat(2, 1fr); }
  .coach-specs .spec:nth-child(2) { border-right: none; }
  .coach-specs .spec { border-bottom: 1px solid var(--ink); }
  .coach-specs .spec:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============================================
   Hero image / home feature photo
   ============================================ */

.hero-image {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-warm);
  box-shadow: var(--shadow);
  animation: rise 0.8s 0.6s cubic-bezier(.2,.8,.2,1) both;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================
   Capabilities (expanded services)
   ============================================ */

.capabilities {
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-bottom: 1px solid var(--rule);
}

.capability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--rule);
}
.capability:last-child { border-bottom: 1px solid var(--rule); }

.capability-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-warm);
}
.capability-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.capability:hover .capability-image img { transform: scale(1.03); }

.capability.reverse .capability-image { order: 2; }

.capability-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.capability h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.capability p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
  max-width: 52ch;
}

.capability ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.capability li {
  padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
}
.capability li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 600;
}
.capability li:last-child { border-bottom: none; }

/* ============================================
   Accreditations bar
   ============================================ */

.accreditations {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
}

.accred-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.accred-head .eyebrow { margin-bottom: 0.75rem; }
.accred-head p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: 1.1rem;
}

.accred-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 900px;
  margin: 0 auto;
}

.accred-item {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.25s;
  height: 80px;
}
.accred-item:hover { filter: grayscale(0) opacity(1); }
.accred-item img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
}

@media (max-width: 800px) {
  .capability,
  .capability.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .capability.reverse .capability-image { order: 0; }
  .accred-item { height: 60px; }
  .accred-item img { max-height: 60px; max-width: 120px; }
}

/* ============================================
   Project category — add full-width featured card
   ============================================ */

.project-card.wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

@media (max-width: 700px) {
  .project-card.wide { aspect-ratio: 4 / 3; }
}

/* ============================================
   SEO / About reference page
   ============================================ */

.seo-content {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}

.seo-block {
  max-width: 780px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule);
}
.seo-block:last-of-type { border-bottom: none; }

.seo-block h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ink);
}

.seo-block h3 {
  font-size: 1.25rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.seo-block h3:first-of-type { margin-top: 1rem; }

.seo-block p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

.seo-block a {
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  transition: color 0.15s;
}
.seo-block a:hover { color: var(--rust-dark); }

.quick-facts {
  margin: 2rem 0 0;
  padding: 1.5rem;
  background: var(--paper-warm);
  border-left: 3px solid var(--rust);
}

.quick-facts > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
}
.quick-facts > div:last-child { border-bottom: none; }

.quick-facts dt {
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding-top: 2px;
}

.quick-facts dd {
  margin: 0;
  color: var(--ink-soft);
}

.source-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.source-list li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
}
.source-list li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--rust);
}
.source-list li:last-child { border-bottom: none; }

@media (max-width: 600px) {
  .quick-facts > div { grid-template-columns: 1fr; gap: 0.25rem; }
}
