:root {
    --red: #EC1C24;
    --red-light: #FCE6E7;
    --ink: #111111;
    --paper: #F5F2EA;
    --paper-warm: #FBF5E9;
    --grey: #636363;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  .skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    z-index: 100;
    background: var(--ink);
    color: var(--paper);
    padding: 10px 14px;
    text-decoration: none;
  }
  .skip-link:focus { top: 12px; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration-thickness: 2px; text-underline-offset: 3px; }
  a:focus-visible, button:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
  .display {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0;
  }
  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245,242,234,0.96);
    border-bottom: 1px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 24px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
  }
  .brand img { width: 40px; height: 40px; object-fit: contain; }
  .nav {
    display: flex;
    gap: 18px;
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
  }
  .nav a { text-decoration: none; }
  .nav a:hover { color: var(--red); }
  .top-tag {
    color: var(--grey);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .next-run {
    background: var(--red);
    color: var(--paper);
    border-bottom: 1px solid var(--ink);
    display: grid;
    grid-template-columns: 1fr 1.1fr 2fr;
  }
  .next-run > div {
    padding: 22px 28px;
    border-right: 1px solid rgba(245,242,234,0.32);
  }
  .next-run > div:last-child { border-right: 0; }
  .next-run .eyebrow {
    font-size: clamp(18px, 1.25vw, 26px);
    letter-spacing: 0.2em;
    line-height: 1;
  }
  .eyebrow {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .muted { color: var(--grey); }
  .next-run .sub {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 800;
    font-size: clamp(16px, 1.05vw, 22px);
    letter-spacing: 0.12em;
    line-height: 1.05;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 10px;
  }
  .nr-big {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(40px, 6vw, 70px);
    line-height: 0.9;
  }
  .hero {
    position: relative;
    min-height: clamp(590px, 88svh, 860px);
    background: var(--ink);
    overflow: hidden;
  }
  .hero-stack, .hero-slide { position: absolute; inset: 0; }
  .hero-slide { opacity: 0; transition: opacity 900ms ease; }
  .hero-slide.active { opacity: 1; }
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1) brightness(0.82);
  }
  .hero-slide.colour img { filter: contrast(1.02) brightness(0.92); }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.78));
  }
  .hero-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    color: var(--paper);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: end;
    padding: 42px 32px 46px;
  }
  .hero-content .eyebrow {
    font-size: clamp(18px, 1.45vw, 28px);
    line-height: 1.05;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
  }
  .hero h1 {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(76px, 14vw, 205px);
    line-height: 0.84;
    text-transform: uppercase;
  }
  .hero .red { color: var(--red); }
  .hero h1 .red { display: block; }
  .hero-intro {
    max-width: 680px;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.35;
    margin-top: 18px;
  }
  .tinny {
    width: clamp(92px, 13vw, 176px);
    transform: rotate(-8deg);
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.48));
  }
  .hero-dots {
    position: absolute;
    right: 22px;
    bottom: 20px;
    z-index: 3;
    display: flex;
    gap: 8px;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: rgba(245,242,234,0.45);
  }
  .hero-dot.active { background: var(--paper); }
  .strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--ink);
  }
  .strip-item {
    min-height: 230px;
    padding: 28px 24px 32px;
    border-right: 1px solid var(--ink);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .strip-item:last-child { border-right: 0; }
  .strip h2, .strip h3 {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 0.9;
    text-transform: uppercase;
  }
  .strip p { margin-top: auto; }
  .beer-card { background: var(--red); color: var(--paper); }
  .quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }
  .quick-link {
    padding: 18px 28px;
    border-right: 1px solid var(--ink);
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
  }
  .quick-link:last-child { border-right: 0; }
  .quick-link span:first-child {
    color: var(--red);
    font-size: 0.58em;
    font-style: normal;
    letter-spacing: 0.14em;
  }
  .quick-link:hover {
    background: var(--ink);
    color: var(--paper);
  }
  .quick-link:hover span:first-child { color: var(--paper); }
  .insta-preview {
    background: var(--ink);
    color: var(--paper);
    padding: 46px 32px 52px;
  }
  .insta-copy {
    max-width: 1120px;
    padding: 0 0 28px;
  }
  .insta-copy h2 {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(44px, 8vw, 104px);
    line-height: 0.86;
    text-transform: uppercase;
  }
  .insta-handle {
    color: var(--red);
  }
  .insta-copy p {
    max-width: 520px;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.35;
    color: rgba(245,242,234,0.86);
    margin-top: 18px;
  }
  .insta-follow {
    width: fit-content;
    background: var(--red);
    color: var(--paper);
    border: 1px solid var(--paper);
    padding: 12px 16px;
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 22px;
  }
  .insta-follow:hover { background: var(--paper); color: var(--ink); }
  .insta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .insta-card {
    overflow: hidden;
    border: 1px solid rgba(245,242,234,0.28);
    color: var(--ink);
    text-decoration: none;
    background: var(--paper);
    display: flex;
    flex-direction: column;
  }
  .insta-card::before {
    content: none;
  }
  .insta-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    filter: contrast(1.02);
    transition: filter 180ms ease;
  }
  .insta-card:hover img {
    filter: contrast(1.06);
  }
  .insta-caption {
    min-height: 88px;
    padding: 16px 18px 18px;
    background: #f5f2ea;
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.25;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    overflow-wrap: anywhere;
  }
  .section {
    border-bottom: 1px solid var(--ink);
  }
  .crowd-strip,
  .links,
  footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
  .section-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: end;
    padding: 42px 32px 26px;
    border-bottom: 1px solid var(--ink);
  }
  .section-num {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(64px, 10vw, 104px);
    line-height: 0.75;
    color: var(--red);
  }
  .section-head.plain {
    display: block;
    padding: 42px 32px 26px;
  }
  .section-head.plain .section-title {
    max-width: 980px;
  }
  .section-title {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(42px, 8vw, 88px);
    line-height: 0.86;
    text-transform: uppercase;
  }
  .section-title .light { color: var(--grey); }
  .content-copy {
    max-width: 860px;
    padding: 26px 32px 32px;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45;
  }
  .crowd-strip img {
    width: 100%;
    height: clamp(330px, 54vh, 560px);
    object-fit: cover;
  }
  .wall {
    display: flex;
    flex-wrap: wrap;
    background: var(--paper);
  }
  .wall-tile {
    flex: 1 0 25%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ink);
  }
  .wall-feature { flex-basis: 50%; }
  .wall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.12) sepia(0.08) hue-rotate(165deg) saturate(1.2);
  }
  .wall-feature img { filter: grayscale(1) contrast(1.12) sepia(0.08) hue-rotate(165deg) saturate(1.2); }
  .schedule { background: var(--red-light); }
  .schedule-list { padding: 10px 32px 28px; }
  .schedule-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(236,28,36,0.25);
  }
  .schedule-row.next {
    background: var(--red);
    color: var(--paper);
    margin: 10px -18px 18px;
    padding: 22px 18px;
    border-bottom: 0;
  }
  .schedule-date, .schedule-route, .km, .next-badge, .route-num, .link-label, footer h2, footer h5 {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    text-transform: uppercase;
  }
  .schedule-date {
    font-weight: 900;
    font-style: italic;
    font-size: clamp(30px, 4vw, 42px);
    color: var(--red);
    line-height: 1;
  }
  .schedule-day, .shift-note {
    display: block;
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.13em;
    color: var(--ink);
    margin-top: 4px;
  }
  .shift-note {
    color: var(--grey);
    letter-spacing: 0.04em;
    text-transform: none;
  }
  .schedule-route {
    font-weight: 900;
    font-style: italic;
    font-size: clamp(32px, 5vw, 56px);
    color: var(--red);
    text-align: right;
    line-height: 1;
  }
  .schedule-route .km {
    display: inline-block;
    margin-left: 10px;
    vertical-align: 0.08em;
  }
  .schedule-row.afters-row .schedule-route, .schedule-row.afters-row .schedule-date { color: var(--ink); }
  .schedule-row.next .schedule-date,
  .schedule-row.next .schedule-route,
  .schedule-row.next .schedule-day,
  .schedule-row.next .km {
    color: var(--paper);
  }
  .km {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--grey);
    min-width: 76px;
    text-align: right;
  }
  .next-badge {
    display: inline-block;
    background: var(--paper);
    color: var(--red);
    padding: 4px 9px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-left: 10px;
    vertical-align: middle;
  }
  .note {
    padding: 0 32px 34px;
    color: var(--grey);
    max-width: 820px;
  }
  .routes-intro {
    padding: 24px 32px 28px;
    max-width: 860px;
    color: var(--grey);
    font-size: 18px;
  }
  .routes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--ink);
  }
  .route {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 330px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    position: relative;
  }
  .route:nth-child(2n) { border-right: 0; }
  .route-info {
    padding: 28px 26px 30px;
    border-right: 1px solid var(--ink);
    background: var(--paper);
  }
  .route-num {
    display: block;
    color: var(--red);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
  }
  .route-name {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 0.9;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .route-desc { font-size: 14px; line-height: 1.55; }
  .route-map {
    position: relative;
    min-height: 220px;
    background: #ddd;
    overflow: hidden;
  }
  .route-map img { width: 100%; height: 100%; object-fit: cover; }
  .stamp {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--paper);
    border: 1px solid var(--ink);
    padding: 4px 10px;
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .route.skipped { opacity: 0.66; }
  .route.skipped::after {
    content: 'SKIPPED IN WINTER';
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    background: var(--paper);
    border: 2px solid var(--red);
    color: var(--red);
    padding: 6px 16px;
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(28px, 4.6vw, 52px);
    white-space: nowrap;
    text-transform: uppercase;
    z-index: 4;
  }
  .afters-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    background: var(--ink);
    color: var(--paper);
    border-bottom: 1px solid var(--ink);
  }
  .afters-card .route-info {
    background: var(--ink);
    color: var(--paper);
    border-right-color: var(--paper);
  }
  .afters-card .route-name { color: var(--paper); font-size: clamp(58px, 8vw, 98px); }
  .afters-card .route-name .red { color: var(--red); }
  .afters-graphic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-height: 260px;
    padding: 34px;
    background: var(--red);
    text-align: center;
    font-family: 'Barlow Condensed', Impact, sans-serif;
    color: var(--paper);
    text-transform: uppercase;
  }
  .afters-graphic .day {
    font-weight: 900;
    font-style: italic;
    font-size: clamp(58px, 8vw, 100px);
    line-height: 0.85;
  }
  .afters-graphic .of {
    font-weight: 800;
    letter-spacing: 0.13em;
  }
  .afters-graphic .distance {
    font-weight: 900;
    font-style: italic;
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: 0.08em;
  }
  .faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--ink);
  }
  .faq-item {
    padding: 26px 28px 30px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }
  .faq-item:nth-child(2n) { border-right: 0; }
  .faq-item h3 {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 34px;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--ink);
    color: var(--paper);
  }
  .link-cell {
    min-height: 190px;
    padding: 34px 32px;
    border-right: 1px solid #333;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .link-cell:last-child { border-right: 0; }
  .link-cell:nth-child(2) { background: #172c44; }
  .link-cell:nth-child(3) { background: #4d1212; }
  .link-label {
    color: rgba(245,242,234,0.68);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
  }
  .link-name {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(44px, 6vw, 70px);
    line-height: 0.9;
    text-transform: uppercase;
  }
  .arrow { float: right; font-style: normal; }
  footer {
    position: relative;
    overflow: hidden;
    padding: 64px 32px 28px;
  }
  footer h2 {
    font-weight: 900;
    font-style: italic;
    font-size: clamp(72px, 13vw, 180px);
    line-height: 0.84;
  }
  footer .red { color: var(--red); }
  .footer-tinny {
    position: absolute;
    width: clamp(120px, 20vw, 230px);
    right: 32px;
    top: 70px;
    opacity: 0.7;
    filter: grayscale(1);
  }
  .footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    margin-top: 42px;
  }
  footer h5 {
    color: var(--red);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
  }
  footer a { display: block; text-decoration: none; margin-bottom: 7px; }
  .footer-bottom {
    border-top: 1px solid var(--ink);
    margin-top: 42px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--grey);
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  @media (max-width: 980px) {
    .strip { grid-template-columns: repeat(2, 1fr); }
    .strip-item:nth-child(2n) { border-right: 0; }
    .quick-links { grid-template-columns: 1fr; }
    .quick-link { border-right: 0; border-bottom: 1px solid var(--ink); }
    .quick-link:last-child { border-bottom: 0; }
    .wall-tile { flex-basis: 33.333%; }
    .wall-feature { flex-basis: 66.666%; }
    .routes-grid { grid-template-columns: 1fr; }
    .route { border-right: 0; }
    .route:nth-child(2n) { border-right: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    .nav, .top-tag { display: none; }
    .topbar { padding: 8px 14px; }
    .brand { font-size: 16px; }
    .brand img { width: 34px; height: 34px; }
    .next-run { grid-template-columns: 1fr; }
    .next-run > div { border-right: 0; border-bottom: 1px solid rgba(245,242,234,0.32); padding: 16px 20px; }
    .next-run .eyebrow { font-size: 17px; }
    .next-run .sub { font-size: 16px; margin-top: 8px; }
    .hero { min-height: 660px; }
    .hero-content { grid-template-columns: 1fr; padding: 30px 22px 42px; }
    .hero-content .eyebrow { font-size: 17px; }
    .tinny { justify-self: end; }
    .section-head { grid-template-columns: 1fr; padding: 30px 22px 20px; gap: 14px; }
    .content-copy, .routes-intro, .note { padding-left: 22px; padding-right: 22px; }
    .strip { grid-template-columns: 1fr; }
    .strip-item { border-right: 0; border-bottom: 1px solid var(--ink); min-height: 220px; padding: 26px 22px; }
    .quick-link { padding: 16px 22px; }
    .insta-preview { padding: 36px 22px 42px; }
    .insta-copy { padding: 0 0 24px; }
    .insta-grid { grid-template-columns: 1fr; }
    .insta-card { border-bottom: 1px solid rgba(245,242,234,0.28); }
    .wall-tile { flex-basis: 50%; }
    .wall-feature { flex-basis: 100%; aspect-ratio: 16 / 11; }
    .schedule-list { padding: 10px 22px 28px; }
    .schedule-row { grid-template-columns: 1fr; align-items: start; gap: 8px; padding: 18px 0; }
    .schedule-row.next { margin: 8px -22px 16px; padding: 22px; }
    .schedule-route { text-align: left; }
    .schedule-route .km { display: block; margin: 5px 0 0; }
    .route, .afters-card { grid-template-columns: 1fr; }
    .route-info { border-right: 0; border-bottom: 1px solid var(--ink); padding: 24px 22px 26px; }
    .route.skipped::after { top: 18px; right: 16px; left: auto; transform: rotate(-6deg); font-size: 22px; white-space: normal; max-width: 180px; text-align: center; }
    .afters-card .route-info { border-bottom-color: var(--paper); }
    .faq-list, .links { grid-template-columns: 1fr; }
    .faq-item { border-right: 0; padding: 24px 22px 28px; }
    .link-cell { min-height: 160px; padding: 28px 24px; border-right: 0; border-bottom: 1px solid #333; }
    footer { padding: 52px 22px 24px; }
    .footer-tinny { width: 130px; top: 28px; right: -10px; opacity: 0.5; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; }
  }