:root {
    --color-black: #050505;
    --color-charcoal: #111214;
    --color-panel: #18191c;
    --color-line: rgba(255, 255, 255, 0.12);
    --color-text: #f5f1ed;
    --color-muted: #a8a19b;
    --color-lucy: #ff6600;
    --color-rose: #bc0937;
    --color-rose-deep: #65051e;
    --carbon-pattern:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 8px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 8px);
    --carbon-overlay:
        linear-gradient(180deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.88)),
        var(--carbon-pattern),
        linear-gradient(135deg, #101113, #030303);
    --font-main: "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        var(--carbon-pattern),
        var(--color-black);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.8;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    top: 12px;
    left: 12px;
    z-index: 999;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: var(--color-text);
    color: var(--color-black);
    clip: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
    background: rgba(5, 5, 5, 0.82);
    border-color: var(--color-line);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    padding: 0 clamp(20px, 4vw, 64px);
}

.brand,
.site-footer__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-size: clamp(1.45rem, 2.8vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.brand img {
    max-height: 52px;
    width: auto;
}

.brand__word--lucy {
    color: var(--color-lucy);
}

.brand__word--rose {
    color: var(--color-rose);
}

.primary-nav__list,
.footer-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a,
.footer-nav a {
    color: rgba(245, 241, 237, 0.84);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.primary-nav a:hover,
.footer-nav a:hover {
    color: var(--color-lucy);
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.28) 52%, rgba(5, 5, 5, 0.78)),
        linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.84)),
        url("../images/lucy-bike-studio.jpg") center / cover no-repeat,
        #050505;
}

.hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    filter: saturate(0.86) contrast(1.08) brightness(0.72) blur(0.4px);
    transform: scale(1.06);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.36) 50%, rgba(5, 5, 5, 0.82)),
        linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.82));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.82) 42%, var(--color-black));
    pointer-events: none;
}

.hero__visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: translateY(var(--hero-shift, 0));
    transition: transform 120ms linear;
}

.hero__road {
    position: absolute;
    right: -12vw;
    bottom: -18vh;
    width: 78vw;
    height: 48vh;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(120deg, rgba(5, 5, 5, 0.22), rgba(255, 122, 24, 0.16) 42%, rgba(215, 22, 47, 0.24) 100%);
    transform: skewY(-12deg) rotate(-3deg);
    filter: blur(0.2px);
}

.hero__glow {
    position: absolute;
    width: 42vmax;
    height: 42vmax;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: pulseGlow 7s ease-in-out infinite alternate;
}

.hero__glow--lucy {
    left: -18vmax;
    top: 18vh;
    background: var(--color-lucy);
}

.hero__glow--rose {
    right: -16vmax;
    top: 8vh;
    background: var(--color-rose);
    animation-delay: 1.2s;
}

.hero__inner {
    position: relative;
    z-index: 2;
    align-self: end;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 12vh;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--color-lucy);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero__title {
    display: flex;
    flex-wrap: wrap;
    gap: 0.18em;
    margin: 0;
    font-size: clamp(4rem, 16vw, 12.5rem);
    line-height: 0.86;
    text-transform: uppercase;
}

.hero__lead {
    max-width: 640px;
    margin: 28px 0 0;
    color: rgba(245, 241, 237, 0.82);
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.hero-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(5, 5, 5, 0.36);
    color: var(--color-text);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.social-link--instagram {
    border-color: rgba(255, 122, 24, 0.58);
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.2), rgba(215, 22, 47, 0.24));
}

.social-link--instagram:hover {
    border-color: var(--color-lucy);
    color: #ffffff;
}

.social-link--x:hover {
    border-color: var(--color-text);
    background: rgba(245, 241, 237, 0.12);
}

.hero__scroll {
    position: absolute;
    right: clamp(20px, 4vw, 64px);
    bottom: 36px;
    z-index: 3;
    color: var(--color-muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero__scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 54px;
    margin: 12px auto 0;
    background: linear-gradient(var(--color-lucy), var(--color-rose));
}

.statement,
.members-band,
.gallery-band,
.news-band,
.contact-band,
.content-band {
    padding: clamp(110px, 13vw, 190px) clamp(20px, 5vw, 72px);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.96)),
        var(--carbon-pattern),
        var(--color-black);
}

.statement__inner,
.section-heading,
.contact-band__inner,
.page-hero__inner,
.single-content__body {
    width: min(1420px, 100%);
    margin: 0 auto;
}

.statement h2,
.section-heading h2,
.contact-band h2,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2.1rem, 6vw, 5.6rem);
    line-height: 1.02;
}

.statement p:not(.eyebrow),
.contact-band p:not(.eyebrow) {
    max-width: 760px;
    margin: 26px 0 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.contact-band h2 {
    font-size: clamp(3rem, 7vw, 6.8rem);
}

.contact-band p:not(.eyebrow) {
    max-width: 920px;
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    line-height: 1.85;
}

.cinema-strip {
    background: var(--color-charcoal);
}

.cinema-panel {
    position: sticky;
    top: 0;
    display: grid;
    min-height: 100svh;
    grid-template-rows: minmax(58svh, 1fr) auto;
    overflow: hidden;
    border-top: 1px solid var(--color-line);
    background: var(--color-charcoal);
}

.cinema-panel--ride {
    margin-bottom: clamp(72px, 8vw, 120px);
}

.cinema-panel__image {
    position: relative;
    min-height: 58svh;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.66)),
        url("../images/lucy-bike-outdoor.jpg") center / cover no-repeat,
        #111214;
    transform: scale(1.06);
    transition: transform 900ms ease;
}

.cinema-panel__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.68)),
        linear-gradient(90deg, rgba(255, 122, 24, 0.12), rgba(215, 22, 47, 0.18));
    pointer-events: none;
}

.cinema-panel__video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.46;
    filter: saturate(0.92) contrast(1.08) brightness(0.78) blur(0.2px);
    mix-blend-mode: screen;
    transform: scale(1.06);
}

.cinema-panel__image--two {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.78)),
        url("../images/lucy-bike-studio.jpg") center / cover no-repeat,
        #111214;
}

.cinema-panel.is-visible .cinema-panel__image {
    transform: scale(1);
}

.cinema-panel__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
    min-height: 42svh;
    padding: clamp(70px, 9vw, 150px) clamp(20px, 5vw, 72px);
    text-align: left;
    background:
        linear-gradient(180deg, rgba(24, 25, 28, 0.88), rgba(5, 5, 5, 0.96)),
        var(--carbon-pattern),
        var(--color-black);
}

.cinema-panel__copy h2 {
    margin: 0;
    width: min(1420px, 100%);
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2rem, 4.5vw, 4.8rem);
    line-height: 1.05;
}

.cinema-panel__copy .eyebrow {
    width: min(1420px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.members-band {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(17, 18, 20, 0.9) 58%, rgba(5, 5, 5, 0.94)),
        var(--carbon-pattern),
        linear-gradient(180deg, var(--color-black), var(--color-charcoal) 58%, var(--color-black));
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(1180px, 100%);
    margin: 48px auto 0;
}

.member-card {
    position: relative;
    display: grid;
    min-height: 580px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    background:
        var(--carbon-overlay),
        var(--color-panel);
}

.member-card__main-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    color: inherit;
}

.member-card__image {
    position: absolute;
    inset: 0;
    margin: 0;
}

.member-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.22) 42%, rgba(5, 5, 5, 0.82)),
        linear-gradient(90deg, rgba(255, 122, 24, 0.18), rgba(215, 22, 47, 0.16));
}

.member-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 700ms ease;
}

.member-card:hover .member-card__image img {
    transform: scale(1);
}

.member-card__body {
    position: relative;
    z-index: 2;
    align-self: end;
    padding: clamp(24px, 4vw, 44px) clamp(24px, 4vw, 44px) calc(clamp(24px, 4vw, 44px) + 72px);
}

.member-card__role {
    margin: 0 0 8px;
    color: var(--color-lucy);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.member-card h3 {
    margin: 0;
    font-size: clamp(2.6rem, 7vw, 6rem);
    line-height: 0.92;
}

.member-card__socials {
    position: absolute;
    left: clamp(24px, 4vw, 44px);
    bottom: clamp(24px, 4vw, 44px);
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.member-card__more {
    position: absolute;
    top: clamp(18px, 3vw, 30px);
    right: clamp(18px, 3vw, 30px);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(5, 5, 5, 0.38);
    color: rgba(245, 241, 237, 0.82);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.member-profile {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.96)),
        var(--carbon-pattern),
        var(--color-black);
}

.member-profile__hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
    min-height: 100svh;
    padding: calc(var(--header-height) + 70px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 92px);
    background:
        radial-gradient(circle at 78% 20%, rgba(215, 22, 47, 0.16), transparent 30%),
        var(--carbon-overlay);
}

.member-profile__hero-copy {
    max-width: 620px;
}

.member-profile__hero-copy h1 {
    margin: 0;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.88;
}

.member-profile__hero-copy p:not(.eyebrow) {
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.member-profile__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.member-profile__hero-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
}

.member-profile__hero-image img {
    width: 100%;
    height: min(68svh, 720px);
    object-fit: cover;
}

.member-profile__section {
    padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.84)),
        var(--carbon-pattern);
}

.member-profile__text {
    width: min(860px, 100%);
    margin: 0 auto;
}

.member-profile__text h2 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    line-height: 1.02;
}

.member-profile__text p:not(.eyebrow) {
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.member-profile__gallery {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 14px;
    padding: 0 clamp(20px, 5vw, 72px) clamp(90px, 12vw, 160px);
}

.member-profile__tile {
    min-height: 300px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
    background:
        var(--carbon-overlay),
        var(--color-panel);
}

.member-profile__tile--wide {
    grid-row: span 3;
    min-height: 760px;
}

.member-profile__tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(5, 5, 5, 0.22));
    opacity: 1;
    pointer-events: none;
}

.member-profile__tile {
    position: relative;
}

.member-profile__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.member-profile__tile:hover img {
    transform: scale(1.04);
}

.gallery-band {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.84), rgba(24, 25, 28, 0.9)),
        var(--carbon-pattern),
        linear-gradient(180deg, var(--color-black), var(--color-panel));
}

.gallery-stack {
    display: grid;
    gap: 14px;
    width: min(1180px, 100%);
    margin: 48px auto 0;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
}

.gallery-row--right-large {
    grid-template-columns: 0.8fr 1.2fr;
}

.gallery-row--right-large .gallery-tile--wide {
    grid-column: 2;
    grid-row: 1;
}

.gallery-row--right-large .gallery-row__small {
    grid-column: 1;
    grid-row: 1;
}

.gallery-row__small {
    display: grid;
    gap: 14px;
}

.gallery-tile {
    min-height: 320px;
    border: 1px solid var(--color-line);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.66)),
        url("../images/lucy-bike-outdoor.jpg") center / cover no-repeat,
        #121316;
    overflow: hidden;
}

.gallery-tile--wide {
    min-height: 654px;
}

.gallery-tile--studio {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.7)),
        url("../images/lucy-bike-studio.jpg") center / cover no-repeat,
        #121316;
}

.gallery-tile--outdoor {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.66)),
        url("../images/lucy-bike-outdoor.jpg") center / cover no-repeat,
        #121316;
}

.gallery-tile--accent {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.42)),
        url("../images/lucy-test-art.png") center / cover no-repeat,
        #121316;
}

.news-band {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.98)),
        var(--carbon-pattern),
        var(--color-black);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(1180px, 100%);
    margin: 48px auto 0;
}

.post-card {
    display: grid;
    min-height: 100%;
    background: var(--color-panel);
    border: 1px solid var(--color-line);
}

.post-card__media {
    display: grid;
    min-height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.28), rgba(215, 22, 47, 0.22)), #121316;
    place-items: center;
}

.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.post-card:hover .post-card__media img {
    transform: scale(1.05);
}

.post-card__placeholder {
    color: rgba(245, 241, 237, 0.42);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.post-card__body {
    padding: 24px;
}

.post-card__date {
    color: var(--color-lucy);
    font-size: 0.76rem;
    font-weight: 800;
}

.post-card__title {
    margin: 10px 0 8px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.post-card__excerpt,
.empty-state {
    color: var(--color-muted);
}

.contact-band {
    background:
        linear-gradient(135deg, rgba(255, 122, 24, 0.16), transparent 34%),
        linear-gradient(180deg, var(--color-panel), var(--color-black));
}

.site-footer {
    border-top: 1px solid var(--color-line);
    background:
        linear-gradient(180deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.98)),
        var(--carbon-pattern),
        #030303;
    padding: 44px clamp(20px, 5vw, 72px);
}

.site-footer__inner {
    display: grid;
    gap: 28px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.site-footer__copy {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.page-hero {
    display: grid;
    min-height: 48svh;
    padding: calc(var(--header-height) + 90px) clamp(20px, 5vw, 72px) 80px;
    background:
        radial-gradient(circle at 80% 20%, rgba(215, 22, 47, 0.26), transparent 30%),
        linear-gradient(145deg, var(--color-charcoal), var(--color-black));
}

.page-hero--compact {
    min-height: 38svh;
}

.single-content__image {
    width: min(1180px, calc(100% - 40px));
    margin: -40px auto 64px;
}

.single-content__image img {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
}

.single-content__body {
    padding: 80px 20px 140px;
    color: rgba(245, 241, 237, 0.88);
}

.single-content__body a {
    color: var(--color-lucy);
    text-decoration: underline;
    text-decoration-color: rgba(255, 122, 24, 0.42);
}

.pagination-wrap {
    width: min(1180px, 100%);
    margin: 40px auto 0;
}

.nav-links {
    display: flex;
    gap: 12px;
}

.page-numbers {
    display: inline-grid;
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--color-line);
    color: var(--color-text);
    place-items: center;
}

.page-numbers.current {
    border-color: var(--color-lucy);
    color: var(--color-lucy);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulseGlow {
    from {
        transform: scale(0.9);
        opacity: 0.22;
    }
    to {
        transform: scale(1.08);
        opacity: 0.38;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 70px;
    }

    .menu-toggle {
        position: relative;
        z-index: 111;
        display: inline-grid;
        grid-template-columns: 24px auto;
        align-items: center;
        gap: 8px;
        min-height: 42px;
        border: 0;
        background: transparent;
        color: var(--color-text);
        font: inherit;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .menu-toggle__line {
        grid-column: 1;
        display: block;
        width: 24px;
        height: 2px;
        background: currentColor;
        transition: transform 180ms ease;
    }

    .menu-toggle__label {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .menu-open .menu-toggle__line:first-child {
        transform: translateY(5px) rotate(35deg);
    }

    .menu-open .menu-toggle__line:nth-child(2) {
        transform: translateY(-5px) rotate(-35deg);
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        z-index: 110;
        display: grid;
        padding: 110px 28px 36px;
        background: rgba(5, 5, 5, 0.96);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
        place-items: start;
    }

    .menu-open .primary-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav__list {
        display: grid;
        gap: 24px;
    }

    .primary-nav a {
        font-size: 2rem;
    }

    .hero__title {
        font-size: clamp(3.4rem, 23vw, 7rem);
    }

    .statement,
    .members-band,
    .gallery-band,
    .news-band,
    .contact-band,
    .content-band {
        padding: clamp(78px, 14vw, 110px) 24px;
    }

    .page-hero h1 {
        font-size: clamp(3.1rem, 15vw, 5.4rem);
    }

    .section-heading h2,
    .contact-band h2,
    .cinema-panel__copy h2 {
        font-size: clamp(2.5rem, 12vw, 4.4rem);
    }

    .statement p:not(.eyebrow),
    .contact-band p:not(.eyebrow) {
        font-size: clamp(1.05rem, 4.8vw, 1.35rem);
        line-height: 1.85;
    }

    .hero {
        background-position: 58% center;
    }

    .hero__video {
        opacity: 0.58;
        filter: saturate(0.92) contrast(1.08) brightness(0.78) blur(0.2px);
        object-position: 58% center;
        transform: scale(1.1);
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.44), rgba(5, 5, 5, 0.84)),
            linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.28) 50%, rgba(5, 5, 5, 0.66));
    }

    .cinema-panel {
        position: relative;
        grid-template-rows: auto auto;
    }

    .cinema-panel--ride {
        margin-bottom: 48px;
    }

    .cinema-panel__image {
        min-height: 54svh;
        background-position: 58% center;
    }

    .cinema-panel__copy {
        min-height: auto;
        padding: 62px 24px;
    }

    .cinema-panel__video {
        opacity: 0.34;
        object-position: 58% center;
        filter: saturate(0.88) contrast(1.04) brightness(0.72) blur(0.3px);
        mix-blend-mode: screen;
    }

    .members-grid,
    .gallery-row,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .gallery-row--right-large .gallery-tile--wide,
    .gallery-row--right-large .gallery-row__small {
        grid-column: auto;
        grid-row: auto;
    }

    .member-card {
        min-height: 470px;
    }

    .member-profile__hero,
    .member-profile__gallery {
        grid-template-columns: 1fr;
    }

    .member-profile__hero {
        min-height: auto;
    }

    .member-profile__hero-image img {
        height: 56svh;
    }

    .member-profile__tile,
    .member-profile__tile--wide {
        min-height: 330px;
    }

    .gallery-tile,
    .gallery-tile--wide {
        min-height: 330px;
    }

    .footer-nav__list {
        flex-wrap: wrap;
    }
}
