/* ═══ 08 Race Report — FT + race programme, warm beige + ink + muted red ═══ */

:root {
  --beige: #F0E7D3;
  --paper: #F7EFD9;
  --ink: #1A1512;
  --rust: #9B2D2D;
  --muted: #4D4338;
  --rule: rgba(26,21,18,0.18);
  --rule-light: rgba(26,21,18,0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--beige);
  color: var(--ink);
  font-family: 'Source Sans 3', 'Georgia', serif;
  font-size: 16px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* Preview badge */
.preview-badge {
  position: fixed; bottom: 14px; left: 14px; z-index: 100;
  font-family: 'Roboto Slab', serif; font-weight: 600;
  font-size: 13px;
  background: var(--paper); color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--ink);
}
.preview-badge:hover { background: var(--ink); color: var(--paper); }

/* MASTHEAD */
.masthead { max-width: 1240px; margin: 0 auto; padding: 26px 56px 0; }
.mast-top {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.mast-brand {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  font-size: clamp(52px, 7vw, 92px);
  text-align: center;
  margin: 14px 0 6px;
  line-height: 1; letter-spacing: -0.02em;
}
.mast-tagline {
  text-align: center;
  font-family: 'Roboto Slab', serif; font-style: italic;
  font-size: 14px; color: var(--muted);
  margin-bottom: 10px;
}
.mast-rules { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
.mast-rules > div:first-child { height: 3px; background: var(--ink); }
.mast-rules > div:last-child { height: 1px; background: var(--ink); }
.mast-nav {
  display: flex; justify-content: center; gap: 24px; align-items: center;
  padding: 10px 0 22px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}
.mast-nav a { color: var(--muted); transition: color .15s; }
.mast-nav a:hover { color: var(--rust); }
.mast-signin { color: var(--rust) !important; }

/* BTN */
.btn {
  display: inline-block;
  padding: 12px 22px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-solid:hover { background: var(--rust); border-color: var(--rust); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn.block { display: block; text-align: center; width: 100%; }
.btn-large { padding: 17px 36px; font-size: 14px; }

/* LEAD */
.lead {
  max-width: 1240px; margin: 0 auto;
  padding: 36px 56px 0;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; align-items: start;
}
.headline-col {}
.kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--rust);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rust);
  display: inline-block;
  margin-bottom: 16px;
}
.headline {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.subhead {
  font-family: 'Roboto Slab', serif; font-style: italic; font-weight: 400;
  font-size: 20px; color: var(--muted); line-height: 1.5;
  margin-bottom: 16px;
  max-width: 640px;
}
.byline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

/* Sidebar factbox */
.sidebar {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 18px 20px;
}
.sb-hd {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--rust);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 10px;
}
.factbox { width: 100%; border-collapse: collapse; }
.factbox th, .factbox td {
  padding: 8px 0;
  border-bottom: 1px dotted var(--rule);
  font-size: 14px;
}
.factbox th {
  font-family: 'Source Sans 3', sans-serif; font-weight: 600;
  text-align: left; color: var(--muted);
}
.factbox td {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  text-align: right; color: var(--ink);
}

/* BODY (main article) */
.body {
  max-width: 1000px; margin: 0 auto;
  padding: 36px 56px 60px;
  font-family: 'Roboto Slab', serif;
  font-size: 17.5px; line-height: 1.75;
  color: var(--ink);
  column-count: 2; column-gap: 40px;
}
.body p { margin: 0 0 18px; break-inside: avoid-column; }
.dropcap-p { column-span: all; margin-bottom: 20px; }
.dropcap {
  float: left;
  font-family: 'Roboto Slab', serif; font-weight: 900;
  font-size: 72px; line-height: .85;
  color: var(--rust);
  margin: 6px 10px 0 0;
}
.pullquote {
  column-span: all;
  border-top: 3px double var(--ink);
  border-bottom: 3px double var(--ink);
  margin: 24px 0;
  padding: 20px 28px;
  text-align: center;
}
.pullquote p {
  font-family: 'Roboto Slab', serif; font-weight: 900; font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3; color: var(--ink);
  margin: 0 0 8px;
}
.pullquote cite {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--rust); font-style: normal;
}
.stats-table {
  column-span: all;
  margin: 28px 0;
}
.st-hd {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--rust);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 10px;
}
.stats-table table { width: 100%; border-collapse: collapse; }
.stats-table thead th {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--ink);
}
.stats-table tbody td {
  padding: 10px 12px;
  font-size: 15px;
  border-bottom: 1px solid var(--rule-light);
}
.stats-table tbody td:first-child {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 1.4px;
  color: var(--rust);
  width: 50px;
}
.stats-table .st-total td {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  border-top: 2px solid var(--ink);
  border-bottom: none;
}

/* DEPARTMENTS */
.departments { max-width: 1240px; margin: 0 auto 64px; padding: 0 56px; }
.dp-hd {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 32px;
}
.dp-label {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  font-size: 22px; letter-spacing: .06em;
}
.dp-count {
  font-family: 'Source Sans 3', sans-serif; font-style: italic;
  font-size: 14px; color: var(--muted);
}
.dp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.dp-card {
  padding: 26px 26px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.dp-card-feature { background: var(--ink); color: var(--paper); }
.dp-num {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  font-size: 30px; color: var(--rust);
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
  border-bottom: 2px solid var(--rust);
  padding-bottom: 4px;
}
.dp-card-feature .dp-num { color: var(--beige); border-bottom-color: var(--beige); }
.dp-card h3 {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  font-size: 24px; letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.dp-card p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.dp-card-feature p { color: rgba(247,239,217,0.75); }

/* ABOUT */
.about { max-width: 1240px; margin: 0 auto 72px; padding: 0 56px; }
.ab-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: baseline; border-top: 1px solid var(--ink); padding-top: 28px; }
.h2 {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0;
}
.h2 em { font-style: italic; color: var(--rust); }
.ab-r p { font-size: 17px; line-height: 1.75; color: var(--ink); font-family: 'Roboto Slab', serif; margin: 0 0 12px; }
.ab-cite { font-family: 'Source Sans 3', sans-serif !important; font-size: 12px !important; letter-spacing: 2px; text-transform: uppercase; color: var(--muted) !important; }

/* PRICING */
.pricing { max-width: 1240px; margin: 0 auto 72px; padding: 0 56px; }
.pr-hd {
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 3px double var(--ink);
}
.pr-table-wrap { overflow-x: auto; }
.pr-table {
  width: 100%; border-collapse: collapse;
  font-size: 15px;
}
.pr-table th, .pr-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule-light);
  text-align: left;
  vertical-align: top;
}
.pr-table tbody th {
  font-family: 'Source Sans 3', sans-serif; font-weight: 600;
  color: var(--muted);
  width: 40%;
}
.pr-table tbody td {
  font-family: 'Roboto Slab', serif; font-weight: 400;
  color: var(--ink);
}
.pr-head {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  font-size: 24px; color: var(--ink);
  border-bottom: 2px solid var(--ink) !important;
  padding: 14px 20px !important;
}
.pr-head-prem { background: var(--ink); color: var(--paper); position: relative; }
.pr-trial {
  display: block;
  font-family: 'Source Sans 3', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--rust); margin-top: 2px;
}
.pr-head-prem .pr-trial { color: var(--beige); }
.pr-prices th { border-bottom: 3px double var(--ink) !important; }
.pr-prices td { text-align: left; border-bottom: 3px double var(--ink) !important; }
.pr-prices .price {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  font-size: 40px; letter-spacing: -0.02em;
  line-height: 1; display: inline-block; margin-right: 8px;
}
.pr-prices .per {
  font-family: 'Source Sans 3', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--muted); letter-spacing: .5px;
}
.pr-head-prem + tr td .price, .pr-table tr:nth-child(2) td:last-child .price { color: var(--ink); }
.pr-table tfoot td { padding: 20px; border-bottom: none; }
.pr-table tfoot th { border-bottom: none; }

/* CORRESPONDENCE */
.corr { max-width: 1240px; margin: 0 auto 72px; padding: 0 56px; }
.corr-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 3px double var(--ink);
  border-bottom: 3px double var(--ink);
}
.corr-col {
  padding: 24px 28px 24px 0;
  border-right: 1px solid var(--rule);
}
.corr-col:nth-child(2) { padding-left: 28px; padding-right: 28px; }
.corr-col:last-child { border-right: none; padding-left: 28px; padding-right: 0; }
.corr-col h4 {
  font-family: 'Roboto Slab', serif; font-weight: 900; font-style: italic;
  font-size: 19px; margin: 0 0 10px; color: var(--rust);
}
.corr-col p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.65; font-family: 'Roboto Slab', serif; }

/* END CTA */
.cta-end { max-width: 1240px; margin: 56px auto 48px; padding: 0 56px; }
.cta-inner {
  background: var(--ink); color: var(--paper);
  padding: 64px 48px;
  text-align: center;
}
.cta-title {
  font-family: 'Roboto Slab', serif; font-weight: 900;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02; letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--paper);
}
.cta-title em { font-style: italic; color: var(--beige); }
.cta-inner p {
  font-family: 'Roboto Slab', serif; font-style: italic;
  font-size: 19px; color: rgba(247,239,217,0.75);
  margin: 0 0 28px;
}
.cta-inner .btn-solid { background: var(--beige); color: var(--ink); border-color: var(--beige); }
.cta-inner .btn-solid:hover { background: var(--rust); color: var(--paper); border-color: var(--rust); }

/* FOOTER */
.foot {
  max-width: 1240px; margin: 0 auto;
  padding: 24px 56px 36px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid var(--ink);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 960px) {
  .masthead { padding: 22px 24px 0; }
  .mast-top { flex-direction: column; align-items: center; gap: 4px; text-align: center; }
  .mast-brand { font-size: clamp(40px, 11vw, 68px); }
  .mast-nav { flex-wrap: wrap; gap: 16px; padding: 12px 0 18px; }
  .lead { padding: 28px 24px 0; grid-template-columns: 1fr; gap: 28px; }
  .body { padding: 28px 24px 48px; column-count: 1; }
  .dropcap { font-size: 60px; }
  .departments, .about, .pricing, .corr, .cta-end { padding-left: 24px; padding-right: 24px; }
  .dp-grid { grid-template-columns: 1fr 1fr; }
  .ab-grid { grid-template-columns: 1fr; gap: 20px; }
  .cta-inner { padding: 52px 28px; }
  .corr-grid { grid-template-columns: 1fr; }
  .corr-col { padding: 22px 0 !important; border-right: none !important; border-bottom: 1px solid var(--rule); }
  .corr-col:last-child { border-bottom: none; }
  .foot { padding: 22px 24px 32px; justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
  .masthead { padding: 18px 16px 0; }
  .lead { padding: 24px 16px 0; }
  .body { padding: 24px 16px 40px; }
  .departments, .about, .pricing, .corr, .cta-end, .foot { padding-left: 16px; padding-right: 16px; }
  .dp-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 40px 20px; }
  .cta-title { font-size: clamp(34px, 11vw, 56px); }
  .pr-table th, .pr-table td { padding: 10px 12px; font-size: 13.5px; }
  .pr-prices .price { font-size: 32px; }
  .preview-badge { font-size: 12px; padding: 6px 12px; }
}
