/* Chorlton Bikes homepage preview.
   Brand colours are unchanged. This file is only used by the preview homepage. */

:root {
    --cream: #fffde7;
    --lime: #b3d41f;
    --green: #008037;
    --green-deep: #07331c;
    --orange: #ff8210;
    --brown: #624a37;
    --ink: #1c1612;
    --muted: #5c5348;
    --line: rgba(28, 22, 18, 0.12);
    --shadow: 0 16px 40px rgba(7, 51, 28, 0.12);
    --nav-h: 4.75rem;
    --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: hidden;
    font-family: Outfit, "Segoe UI", sans-serif;
    font-size: 1.0625rem;
    line-height: 1.55;
    color: var(--ink);
    background: var(--cream);
}

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

button, input, textarea { font: inherit; color: inherit; }

a { color: var(--green); }

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

.wrap {
    width: min(var(--wrap), calc(100% - 2rem));
    margin-inline: auto;
}

.skip {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--lime);
    color: var(--green);
    padding: 0.6rem 1rem;
    z-index: 80;
}

.skip:focus { top: 0.5rem; }

/* Preview flag */
.preview-flag {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    justify-content: space-between;
    align-items: center;
    background: var(--lime);
    color: var(--green);
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.theme-note-deep { display: none; }

.theme-deep .theme-note-brand { display: none; }

.theme-deep .theme-note-deep { display: inline; }

.preview-flag a { color: inherit; font-weight: 800; }

.preview-flag button {
    border: 0;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

/* Nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--green);
    color: var(--cream);
}

.nav-inner {
    width: min(var(--wrap), calc(100% - 2rem));
    margin-inline: auto;
    min-height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 58px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: 0 0 0 auto;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
}

.nav-links a:hover { color: var(--lime); }

.nav-join {
    background: var(--lime);
    color: var(--green) !important;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
}

.nav-join:hover { color: var(--green) !important; filter: brightness(1.05); }

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    background: transparent;
    color: var(--cream);
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    height: 2px;
    width: 1.4rem;
    background: currentColor;
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
    position: relative;
    min-height: calc(100svh - var(--nav-h));
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    color: var(--cream);
    overflow: hidden;
    background: var(--green);
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroShow 60s infinite;
    animation-delay: calc(var(--i) * -6s);
}

@keyframes heroShow {
    0% { opacity: 0; transform: scale(1.08); }
    4% { opacity: 1; }
    14% { opacity: 1; transform: scale(1); }
    18% { opacity: 0; }
    100% { opacity: 0; transform: scale(1.02); }
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 51, 28, 0.18) 0%, rgba(7, 51, 28, 0.12) 38%, rgba(7, 51, 28, 0.88) 100%);
}

.hero-copy {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2.5rem;
    width: min(var(--wrap), calc(100% - 2rem));
    max-width: 100%;
    min-width: 0;
    margin-inline: auto;
}

.hero-name {
    margin: 0 0 0.45rem;
    font-family: "Lilita One", Outfit, sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    line-height: 1;
    color: var(--cream);
}

.kicker {
    margin: 0 0 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
}

h1, h2, .path strong {
    font-family: "Lilita One", Outfit, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

h1 {
    margin: 0;
    font-size: clamp(3.4rem, 10vw, 7.4rem);
    line-height: 0.9;
    max-width: 11ch;
}

.lede {
    max-width: 38rem;
    font-size: 1.2rem;
    margin: 1.1rem 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.85rem 1.25rem;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    background: transparent;
}

.btn-lime { background: var(--lime); color: var(--green); }
.btn-orange { background: var(--orange); color: white; }
.btn-green { background: var(--green); color: white; }
.btn-line { border-color: currentColor; color: inherit; background: transparent; }
.hero .btn-line { color: var(--cream); border-color: rgba(255, 253, 231, 0.7); }

.btn:hover { transform: translateY(-2px); }

.blind {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-width: 0;
    background: var(--lime);
    color: var(--green);
    overflow: hidden;
    padding: 0.7rem 0;
}

.blind-label {
    flex: 0 0 auto;
    margin-left: max(1rem, calc((100% - var(--wrap)) / 2));
    font-weight: 800;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
}

.blind-window { overflow: hidden; flex: 1; min-width: 0; }

.blind-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker 46s linear infinite;
    font-weight: 650;
}

.blind-track span { padding-right: 0.35rem; }

.blind-track span::before {
    content: "·";
    margin: 0 0.7rem;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

/* Route rail */
.route {
    display: none;
}

/* Sections */
.section { padding: 4.5rem 0; }

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.75rem;
}

.section-head h2,
.about h2,
.join h2,
.voice h2 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 0.95;
    color: var(--green);
}

.section-head p,
.intro {
    max-width: 36rem;
    margin: 0.6rem 0 0;
    color: var(--muted);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter {
    border: 2px solid var(--line);
    background: transparent;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.filter.is-on {
    background: var(--green);
    color: var(--cream);
    border-color: var(--green);
}

.jobs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.9rem;
}

.job[hidden] { display: none; }

.job-open {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 0.6rem;
    overflow: hidden;
    background: white;
    cursor: pointer;
}

.job-open img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s ease;
}

.job-open:hover img { transform: scale(1.05); }

.job-meta { padding: 0.9rem 1rem 1.05rem; }

.job-lane {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
}

.job-name {
    display: block;
    font-family: "Lilita One", Outfit, sans-serif;
    font-size: 1.45rem;
    line-height: 1.05;
    margin-top: 0.2rem;
}

.job-tease {
    display: block;
    color: var(--muted);
    margin-top: 0.35rem;
    font-size: 0.95rem;
}

.ask-bar {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    color: var(--muted);
}

.ask-bar a { font-weight: 700; }

/* Proof */
.proof {
    background: white;
    border-block: 1px solid var(--line);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
}

.stat-mark {
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 0.65rem;
    color: var(--green);
}

.stat-num {
    font-family: "Lilita One", Outfit, sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--green);
    line-height: 1;
    margin: 0;
}

.stat-label {
    margin: 0.35rem 0 0;
    color: var(--muted);
    max-width: 16ch;
}

/* Stories */
.road-nav { display: flex; gap: 0.4rem; }

.road-nav button,
.voice-nav button {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 2px solid var(--green);
    background: transparent;
    color: var(--green);
    cursor: pointer;
    font-size: 1.1rem;
}

.road {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.story {
    flex: 0 0 min(78vw, 320px);
    scroll-snap-align: start;
    background: white;
    border-radius: 0.6rem;
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.story img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: white;
}

.story img.is-fit { object-fit: contain; }

.story-body { padding: 1rem 1rem 1.15rem; }

.story-tag {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
}

.story h3 {
    font-family: "Lilita One", Outfit, sans-serif;
    font-size: 1.55rem;
    line-height: 1.05;
    margin: 0.3rem 0 0.45rem;
    font-weight: 400;
}

.story p { margin: 0; color: var(--muted); }

.story a { font-weight: 700; }

.newsletter-link { margin: 1.1rem 0 0; }

/* Films */
.films { background: var(--green); color: var(--cream); }

.films h2 { color: var(--cream); }

.films .section-head p { color: rgba(255, 253, 231, 0.78); }

.film-grid {
    display: grid;
    gap: 0.9rem;
}

.film {
    position: relative;
    display: block;
    color: var(--cream);
    text-decoration: none;
    border-radius: 0.6rem;
    overflow: hidden;
    min-height: 220px;
}

.film img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transition: transform 0.6s ease;
}

.film:hover img { transform: scale(1.04); }

.film figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(7, 51, 28, 0.92));
}

.film h3 {
    margin: 0.2rem 0 0.3rem;
    font-family: "Lilita One", Outfit, sans-serif;
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 1;
}

.film p { margin: 0; color: rgba(255, 253, 231, 0.86); }

.play {
    display: inline-block;
    margin-bottom: 0.35rem;
    background: var(--lime);
    color: var(--green);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.25rem 0.55rem;
}

/* Voices */
.voice { background: white; }

.voice-quote {
    margin: 0;
    max-width: 48rem;
}

.voice-quote p {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.35;
    margin: 0;
}

.voice-quote footer {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--green);
}

.js .voice-quote { display: none; }
.js .voice-quote.is-active { display: block; }

.voice-nav { display: flex; gap: 0.4rem; margin-top: 1.5rem; }

/* Join */
.join {
    background:
        radial-gradient(circle at 90% 10%, rgba(179, 212, 31, 0.18), transparent 28%),
        var(--green);
    color: var(--cream);
}

.join h2 { color: var(--cream); }

.join .intro { color: rgba(255, 253, 231, 0.8); }

.join-layout {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.paths { display: grid; gap: 0.55rem; }

.path {
    display: block;
    text-decoration: none;
    color: var(--cream);
    border: 2px solid rgba(255, 253, 231, 0.28);
    border-radius: 0.7rem;
    padding: 0.85rem 1rem;
}

.path strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1;
}

.path span {
    display: block;
    margin-top: 0.3rem;
    color: rgba(255, 253, 231, 0.78);
}

.path.is-active {
    background: var(--lime);
    color: var(--green);
    border-color: var(--lime);
}

.path.is-active span { color: var(--green); }

.path.is-active[data-path="friend"] {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

.path.is-active[data-path="friend"] span { color: white; }

.panel { display: block; }

.js .panel { display: none; }
.js .panel.is-active { display: block; }

.panel-card,
.signup-form {
    background: white;
    color: var(--ink);
    border-radius: 0.8rem;
    padding: 1.25rem;
}

.panel-card h3,
.signup-form + h3 { color: var(--green); }

.panel-card h3,
.signup-form h3 {
    font-family: "Lilita One", Outfit, sans-serif;
    font-weight: 400;
    font-size: 2rem;
    margin: 0 0 0.6rem;
    color: var(--green);
}

.panel-card p { color: var(--muted); }

.panel-card ul { color: var(--muted); padding-left: 1.1rem; }

.signup-form p { color: var(--muted); margin: 0 0 1rem; }

.form-group { margin-bottom: 1rem; }

.form-group label,
.signup-fieldset legend {
    display: block;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.8rem;
    border: 2px solid var(--line);
    border-radius: 0.45rem;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
}

.form-group small,
.signup-note {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.required { color: var(--orange); }

.signup-fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 1rem;
}

.signup-check {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin: 0 0 0.5rem;
    font-weight: 550;
}

.signup-check input {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.2rem;
    accent-color: var(--green);
}

.signup-form .btn { margin-top: 0.4rem; }

.form-message { display: none; margin-top: 0.8rem; padding: 0.8rem; border-radius: 0.4rem; }
.form-message.error { display: block; background: #fde8e6; color: #7a1f16; }

/* About */
.beats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.beats li {
    background: white;
    border-radius: 0.6rem;
    padding: 1.1rem 1.15rem 1.2rem;
    border-top: 4px solid var(--lime);
}

.beats span {
    font-weight: 800;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--orange);
}

.beats h3 {
    font-family: "Lilita One", Outfit, sans-serif;
    font-weight: 400;
    font-size: 1.7rem;
    margin: 0.25rem 0 0.4rem;
}

.beats p { margin: 0; color: var(--muted); }

.people-label {
    margin: 2rem 0 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--green);
}

.people {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.7rem;
}

.person-open {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.person-open img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.5rem;
    background: #e7e2d4;
}

.person-name {
    display: block;
    font-weight: 800;
    margin-top: 0.4rem;
}

.person-role {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
}

/* Partners */
.partners { padding-bottom: 3rem; overflow: hidden; }

.marquee { overflow: hidden; max-width: 100%; }

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: ticker 70s linear infinite;
}

.partner-logo {
    height: 64px;
    width: 120px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
}

.marquee:hover .marquee-track,
.blind:hover .blind-track { animation-play-state: paused; }

/* Footer */
.footer {
    background: var(--green);
    color: rgba(255, 253, 231, 0.86);
    padding: 2.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.footer h2 {
    font-family: Outfit, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 0.55rem;
    color: var(--lime);
}

.footer a { color: var(--cream); font-weight: 650; }
.footer p { margin: 0.25rem 0; }

.footer-logo { height: 72px; width: auto; background: white; border-radius: 0.4rem; padding: 0.4rem; }

.footer-base {
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 253, 231, 0.15);
    font-size: 0.9rem;
}

/* Dialog */
.sheet {
    width: min(640px, calc(100% - 1.5rem));
    border: 0;
    border-radius: 0.8rem;
    padding: 1.3rem 1.3rem 1.4rem;
    background: var(--cream);
    color: var(--ink);
}

.sheet::backdrop { background: rgba(7, 51, 28, 0.62); }

.sheet-top {
    display: flex;
    justify-content: flex-end;
}

.sheet-close {
    border: 0;
    background: transparent;
    font-weight: 800;
    cursor: pointer;
}

.sheet-body h3 {
    font-family: "Lilita One", Outfit, sans-serif;
    font-weight: 400;
    font-size: 2rem;
    color: var(--green);
    margin: 0 0 0.6rem;
}

.sheet-body p { color: var(--muted); }

.sheet-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.sheet-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 0.4rem;
    background: black;
}

.sheet-frame.is-portrait {
    display: block;
    width: min(100%, 380px);
    height: min(70vh, 680px);
    aspect-ratio: auto;
    margin-inline: auto;
}

.sheet:has(.sheet-video) {
    width: min(960px, calc(100% - 1.5rem));
}

.sheet-video {
    display: block;
    width: 100%;
    max-height: min(70vh, 540px);
    background: #000;
    border-radius: 0.4rem;
}

.voice-mix {
    margin: 0.7rem 0 1.5rem;
    max-width: 36rem;
    color: var(--muted);
}

.reveal { }

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: rise 0.8s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
}

@supports not (animation-timeline: view()) {
    .js .reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

@keyframes rise {
    to { opacity: 1; transform: none; }
}

@media (min-width: 800px) {
    .proof-grid { grid-template-columns: repeat(4, 1fr); }
    .beats { grid-template-columns: repeat(3, 1fr); }
    .join-layout { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
    .film-grid { grid-template-columns: 1.4fr 1fr; }
    .film-feature { grid-row: span 4; min-height: 0; }
    .film-feature img { height: 100%; aspect-ratio: auto; position: absolute; inset: 0; }
    .film-feature { position: relative; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr auto; }
}

@media (min-width: 1360px) {
    .route {
        display: block;
        position: fixed;
        top: calc(var(--nav-h) + 1.5rem);
        bottom: 1.5rem;
        left: 1.1rem;
        width: 5.5rem;
        z-index: 25;
        pointer-events: none;
    }

    .route-line {
        position: absolute;
        left: 0.45rem;
        top: 0;
        bottom: 0;
        border-left: 2px dashed rgba(0, 128, 55, 0.45);
    }

    .route-bike {
        position: absolute;
        left: 0;
        top: calc(var(--ride, 0) * (100% - 2.4rem));
        width: 2.4rem;
        color: var(--green);
        transition: top 0.08s linear;
    }

    .wheel {
        transform-box: fill-box;
        transform-origin: center;
        transform: rotate(calc(var(--spin, 0) * 1deg));
    }

    .route-stop {
        pointer-events: auto;
        position: absolute;
        left: 1.6rem;
        top: calc(var(--at) * (100% - 1rem));
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--green);
        background: var(--cream);
    }
}

@media (max-width: 799px) {
    .nav-toggle { display: grid; place-items: center; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        background: var(--green);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 1.25rem 1.2rem;
        gap: 0.2rem;
    }

    .nav-open .nav-links { display: flex; }

    .hero {
        /* 4.5rem lifted the block; 6.125rem is twice the Through strip, so it sits back down. */
        min-height: calc(100svh - var(--nav-h) - 4.5rem + 6.125rem);
    }

    .hero-copy {
        width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
        padding: 1.25rem 0 0.85rem;
    }

    .hero-name { font-size: 1.45rem; margin-bottom: 0.2rem; }

    .hero .kicker { margin-bottom: 0.4rem; }

    .hero h1 { font-size: clamp(2.7rem, 12vw, 3.3rem); }

    .hero .lede {
        font-size: 1.02rem;
        line-height: 1.4;
        margin-top: 0.65rem;
    }

    .hero-actions { margin-top: 0.85rem; gap: 0.45rem; }

    .hero .btn { padding: 0.65rem 1rem; }

    .kicker,
    .lede {
        max-width: 100%;
    }

    .nav-links a { display: block; padding: 0.7rem 0; }

    .section-head { flex-direction: column; align-items: start; }

    .hero-actions .btn { flex: 1 1 100%; }

    .paths {
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
    }

    .path { padding: 0.65rem 0.7rem; }

    .path strong { font-size: 1.15rem; }

    .path span { font-size: 0.82rem; line-height: 1.3; }

    .blind-label { margin-left: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-slide { animation: none; opacity: 0; transform: none; }
    .hero-slide:first-child { opacity: 1; }
    .blind-track, .marquee-track { animation: none; }
    .js .reveal { animation: none; opacity: 1; transform: none; }
    .btn:hover, .job-open:hover img, .film:hover img { transform: none; }
    .route-bike { transition: none; }
}

/* Darker green. Not a brand colour. Nav, films, get involved, and the footer. */
.theme-deep .nav,
.theme-deep .footer,
.theme-deep .films,
.theme-deep .nav-links {
    background: var(--green-deep);
}

.theme-deep .hero { background: var(--green-deep); }

.theme-deep .join {
    background:
        radial-gradient(circle at 90% 10%, rgba(179, 212, 31, 0.22), transparent 28%),
        var(--green-deep);
}

.theme-deep .filter.is-on {
    background: var(--green-deep);
    border-color: var(--green-deep);
}
