/* ==========================================================================
   Phantom Bullet — landing page
   Monochrome / cinematic design system
   ========================================================================== */

/* ---------- Fonts
   Lato, subset to Latin + Cyrillic (210 KB -> 32 KB per weight) and served
   from /static so the site never depends on a third-party font CDN. */
@font-face {
    font-family: 'PB Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/pb-sans-400.woff2') format('woff2');
}

@font-face {
    font-family: 'PB Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/pb-sans-700.woff2') format('woff2');
}

/* ---------- Tokens */
:root {
    /* surfaces */
    --bg: #0a0a0a;
    --surface: #111214;
    --surface-2: #17181a;
    --ink: #ffffff;
    /* silver — the only accent in the system */
    --silver-1: #f2f3f5;
    --silver-2: #c9ccd1;

    /* text */
    --text: #ffffff;
    --text-2: #b4b7bc;
    --text-3: #7a7e85;

    /* lines */
    --hairline: rgba(255, 255, 255, .14);
    --hairline-hi: rgba(255, 255, 255, .28);

    /* layout */
    --container: 1440px;
    --gutter: clamp(1.25rem, 4vw, 4rem);
    --section-y: clamp(5rem, 9.5vw, 9.5rem);
    --grid-gap: clamp(1.5rem, 2.6vw, 2.75rem);

    /* type scale */
    --fs-display: clamp(2.75rem, 1.05rem + 6.4vw, 6.25rem);
    --fs-h2: clamp(1.9rem, 1rem + 3.3vw, 3.5rem);
    --fs-h3: clamp(1.25rem, .98rem + 1vw, 1.75rem);
    --fs-lead: clamp(1.05rem, .96rem + .42vw, 1.3rem);
    --fs-body: clamp(1rem, .96rem + .2vw, 1.125rem);
    --fs-small: .875rem;
    --fs-label: .75rem;

    /* motion */
    --ease: cubic-bezier(.16, 1, .3, 1);
    --d-1: 240ms;
    --d-2: 480ms;
    --d-3: 720ms;

    --header-h: 76px;
}

/* ---------- Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'PB Sans', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: var(--fs-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol, figure, blockquote {
    margin: 0;
}

ul, ol {
    padding: 0;
    list-style: none;
}

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

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--silver-1);
    outline-offset: 3px;
    border-radius: 2px;
}

::selection {
    background: var(--silver-1);
    color: #0a0a0a;
}

/* ---------- Layout primitives */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding-block: var(--section-y);
}

.skip-link {
    position: absolute;
    top: .5rem;
    left: .5rem;
    z-index: 200;
    padding: .75rem 1.25rem;
    background: var(--silver-1);
    color: #0a0a0a;
    font-weight: 700;
    border-radius: 999px;
    transform: translateY(-150%);
    transition: transform var(--d-1) var(--ease);
}

.skip-link:focus-visible {
    transform: none;
}

/* ---------- Type components */
.label {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-3);
}

.label::before {
    content: "";
    width: 2.25rem;
    height: 1px;
    background: var(--hairline-hi);
}

.h2 {
    font-size: var(--fs-h2);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.02em;
    text-wrap: balance;
}

.lead {
    max-width: 46ch;
    color: var(--text-2);
    font-size: var(--fs-lead);
    line-height: 1.65;
    text-wrap: pretty;
}

.section-head {
    display: grid;
    gap: 1.5rem;
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-head__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.rule {
    height: 1px;
    background: var(--hairline);
    transform-origin: left;
}

/* ---------- Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1.05rem 2.4rem;
    border-radius: 999px;
    font-size: var(--fs-body);
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
    transition: transform var(--d-1) var(--ease), background-color var(--d-1) var(--ease),
    color var(--d-1) var(--ease), border-color var(--d-1) var(--ease), box-shadow var(--d-1) var(--ease);
}

.btn--primary {
    background: linear-gradient(180deg, var(--silver-1), var(--silver-2));
    color: #0a0a0a;
}

/* download link not configured in the admin panel yet: keep the layout, drop the affordance */
.is-disabled {
    cursor: not-allowed;
    opacity: .38;
    pointer-events: none;
}

.btn.is-disabled:hover,
.btn.is-disabled:active {
    transform: none;
    box-shadow: none;
}

.footer__list .is-disabled {
    display: inline-block;
    padding-block: .4rem;
    color: var(--text-2);
    font-size: var(--fs-small);
    width: fit-content;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 .75rem 2rem rgba(255, 255, 255, .12);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--ghost {
    border: 1px solid var(--hairline-hi);
    color: var(--text);
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(6px);
}

.btn--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .07);
}

.btn--dark {
    background: #0a0a0a;
    color: var(--silver-1);
}

.btn--dark:hover {
    transform: translateY(-2px);
    background: #000;
}

.btn__arrow {
    transition: transform var(--d-1) var(--ease);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    color: var(--text);
    transition: background-color var(--d-2) var(--ease), backdrop-filter var(--d-2) var(--ease),
    border-color var(--d-2) var(--ease);
    border-bottom: 1px solid transparent;
}

.header.is-stuck {
    background: rgba(10, 10, 10, .82);
    backdrop-filter: blur(16px) saturate(140%);
    border-bottom-color: var(--hairline);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    flex-shrink: 0;
}

.brand__mark {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: transform var(--d-2) var(--ease);
}

.brand:hover .brand__mark {
    transform: rotate(-8deg);
}

.brand__name {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    line-height: 1.1;
}

.brand__sub {
    display: block;
    font-size: .58rem;
    font-weight: 400;
    letter-spacing: .3em;
    color: var(--text-3);
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 2.6vw, 2.75rem);
}

.nav__link {
    position: relative;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-2);
    padding-block: .4rem;
    transition: color var(--d-1) var(--ease);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--d-2) var(--ease);
}

.nav__link:hover {
    color: var(--text);
}

.nav__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__cta {
    padding: .7rem 1.5rem;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-right: -10px;
}

.burger__box {
    position: relative;
    width: 22px;
    height: 12px;
}

.burger__box span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--text);
    transition: transform var(--d-2) var(--ease), opacity var(--d-1) var(--ease);
}

.burger__box span:nth-child(1) {
    top: 0;
}

.burger__box span:nth-child(2) {
    bottom: 0;
}

.burger[aria-expanded="true"] .burger__box span:nth-child(1) {
    transform: translateY(5.25px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger__box span:nth-child(2) {
    transform: translateY(-5.25px) rotate(-45deg);
}

/* scroll progress hairline */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    height: 2px;
    width: 100%;
    transform: scaleX(var(--p, 0));
    transform-origin: left;
    background: linear-gradient(90deg, var(--silver-2), var(--silver-1));
    pointer-events: none;
}

/* mobile overlay nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: grid;
    align-content: center;
    gap: .25rem;
    padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
    background: rgba(10, 10, 10, .97);
    backdrop-filter: blur(20px);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--d-2) var(--ease), visibility var(--d-2) var(--ease);
}

/* an author-level `display` would otherwise defeat the `hidden` attribute,
   leaving the overlay permanently in the layout */
.mobile-nav[hidden] {
    display: none;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav > a:not(.btn) {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -.01em;
    padding-block: .5rem;
    border-bottom: 1px solid var(--hairline);
    opacity: 0;
    transform: translateY(12px);
}

.mobile-nav.is-open > a:not(.btn) {
    opacity: 1;
    transform: none;
    transition: opacity var(--d-2) var(--ease), transform var(--d-2) var(--ease);
}

.mobile-nav.is-open > a:nth-child(1) {
    transition-delay: 60ms;
}

.mobile-nav.is-open > a:nth-child(2) {
    transition-delay: 110ms;
}

.mobile-nav.is-open > a:nth-child(3) {
    transition-delay: 160ms;
}

.mobile-nav.is-open > a:nth-child(4) {
    transition-delay: 210ms;
}

.mobile-nav .btn {
    margin-top: 2rem;
    justify-self: start;
}

body.is-locked {
    overflow: hidden;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
    overflow: hidden;
    isolation: isolate;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #0a0a0a url('../media/hero-lqip.jpg') center / cover no-repeat;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    opacity: 0;
    transition: opacity var(--d-3) var(--ease);
}

.hero__img.is-loaded,
html:not(.js) .hero__img {
    opacity: 1;
}

.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to top, rgba(10, 10, 10, .97) 0%, rgba(10, 10, 10, .74) 26%, rgba(10, 10, 10, .22) 58%, rgba(10, 10, 10, .5) 100%),
        linear-gradient(100deg, rgba(10, 10, 10, .82) 0%, rgba(10, 10, 10, .3) 46%, rgba(10, 10, 10, 0) 72%),
        radial-gradient(130% 100% at 50% 0%, rgba(10, 10, 10, .38) 0%, rgba(10, 10, 10, 0) 62%);
}

.hero__title {
    font-size: var(--fs-display);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.03em;
    max-width: 15ch;
}

.hero__title em {
    display: block;
    font-style: normal;
    font-weight: 700;
}

.hero__lead {
    margin-top: clamp(1.5rem, 2.4vw, 2.25rem);
    max-width: 44ch;
    color: var(--text-2);
    font-size: var(--fs-lead);
    line-height: 1.62;
    text-wrap: pretty;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: clamp(2rem, 3.4vw, 3rem);
}

.specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(3rem, 6vw, 5.5rem);
    border-top: 1px solid var(--hairline);
}

.specs__cell {
    padding: 1.4rem 1.25rem 0 0;
    border-right: 1px solid var(--hairline);
}

.specs__cell:not(:first-child) {
    padding-left: 1.25rem;
}

.specs__cell:last-child {
    border-right: 0;
}

.specs__key {
    display: block;
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: .5rem;
}

.specs__val {
    display: block;
    font-size: var(--fs-small);
    color: var(--text);
}

.scroll-cue {
    position: absolute;
    right: var(--gutter);
    bottom: clamp(2rem, 4vw, 3.5rem);
    display: grid;
    justify-items: center;
    gap: .75rem;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-3);
}

.scroll-cue__line {
    position: relative;
    width: 1px;
    height: 54px;
    background: var(--hairline);
    overflow: hidden;
}

.scroll-cue__line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--silver-1);
    animation: cue 2.4s var(--ease) infinite;
}

@keyframes cue {
    0% {
        transform: translateY(-100%);
    }

    60%,
    100% {
        transform: translateY(100%);
    }
}

/* ==========================================================================
   Features
   ========================================================================== */
.feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: var(--grid-gap);
    align-items: center;
    padding-block: clamp(3rem, 6vw, 6rem);
    border-top: 1px solid var(--hairline);
}

.feature:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.feature--flip {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.feature--flip .feature__media {
    order: -1;
}

.feature__media {
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.feature__media::before {
    content: "";
    position: absolute;
    inset: -8% -4%;
    z-index: -1;
    background: radial-gradient(60% 55% at 50% 50%, rgba(255, 255, 255, .07), rgba(255, 255, 255, 0) 70%);
}

.feature__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.rows {
    border-top: 1px solid var(--hairline);
}

.row {
    display: grid;
    grid-template-columns: 3.25rem 1fr;
    gap: 1.25rem;
    padding: 1.4rem 1rem 1.4rem 0;
    border-bottom: 1px solid var(--hairline);
    transition: background-color var(--d-1) var(--ease), padding-left var(--d-1) var(--ease);
}

.row:hover {
    background: var(--surface);
    padding-left: 1rem;
}

.row__num {
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--text-3);
    font-variant-numeric: tabular-nums;
    padding-top: .35rem;
    transition: color var(--d-1) var(--ease);
}

.row:hover .row__num {
    color: var(--text);
}

.row__title {
    font-size: var(--fs-h3);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -.01em;
    text-wrap: pretty;
}

.row__note {
    margin-top: .4rem;
    color: var(--text-3);
    font-size: var(--fs-small);
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    gap: 1px;
    background: var(--hairline);
    border-block: 1px solid var(--hairline);
}

.shot {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--surface);
    min-height: clamp(260px, 46vh, 560px);
    text-align: left;
}

.shot__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--d-3) var(--ease), opacity var(--d-2) var(--ease);
    opacity: 0;
}

.shot__img.is-loaded,
html:not(.js) .shot__img {
    opacity: 1;
}

.shot:hover .shot__img {
    transform: scale(1.045);
}

.shot__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .9) 0%, rgba(10, 10, 10, .1) 45%, rgba(10, 10, 10, .25) 100%);
    opacity: .85;
    transition: opacity var(--d-2) var(--ease);
}

.shot:hover .shot__veil {
    opacity: .55;
}

.shot__cap {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.25rem, 2vw, 2rem);
}

.shot__name {
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.shot__hint {
    font-size: var(--fs-label);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-2);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--d-2) var(--ease), transform var(--d-2) var(--ease);
}

.shot:hover .shot__hint,
.shot:focus-visible .shot__hint {
    opacity: 1;
    transform: none;
}

.shot__zoom {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--hairline-hi);
    border-radius: 50%;
    background: rgba(10, 10, 10, .4);
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: scale(.85);
    transition: opacity var(--d-2) var(--ease), transform var(--d-2) var(--ease);
}

.shot:hover .shot__zoom,
.shot:focus-visible .shot__zoom {
    opacity: 1;
    transform: none;
}

/* lightbox */
.lightbox {
    width: min(1400px, 94vw);
    max-width: none;
    padding: 0;
    border: 0;
    background: #000;
    color: var(--text);
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(6px);
}

.lightbox img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    background: #000;
}

.lightbox__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--hairline);
    font-size: var(--fs-label);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-2);
}

.lightbox__close {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--text);
    transition: color var(--d-1) var(--ease);
}

.lightbox__close:hover {
    color: var(--silver-1);
}

/* ==========================================================================
   Team
   ========================================================================== */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
}

.member {
    display: grid;
    gap: 1.25rem;
    align-content: start;
    padding: clamp(1.5rem, 2.4vw, 2.25rem);
    background: var(--surface);
    transition: background-color var(--d-2) var(--ease), transform var(--d-2) var(--ease);
}

.member:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
}

.member__mono {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid var(--hairline-hi);
    border-radius: 50%;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--text);
    transition: border-color var(--d-2) var(--ease), background-color var(--d-2) var(--ease);
}

.member:hover .member__mono {
    border-color: var(--silver-1);
    background: rgba(255, 255, 255, .05);
}

.member__handle {
    font-size: var(--fs-h3);
    font-weight: 400;
    letter-spacing: -.01em;
}

.member__name {
    color: var(--text-2);
    font-size: var(--fs-small);
    margin-top: .25rem;
}

.member__roles {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--hairline);
}

.chip {
    padding: .3rem .65rem;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-3);
    transition: color var(--d-1) var(--ease), border-color var(--d-1) var(--ease);
}

.member:hover .chip {
    color: var(--text-2);
    border-color: var(--hairline-hi);
}

/* ==========================================================================
   Download band — the one inverted section
   ========================================================================== */
.band {
    background: linear-gradient(180deg, var(--silver-1), #dfe1e5);
    color: #0a0a0a;
    padding-block: clamp(4.5rem, 9vw, 9rem);
    text-align: center;
}

.band .label {
    color: rgba(10, 10, 10, .66);
}

.band .label::before {
    background: rgba(10, 10, 10, .3);
}

.band__title {
    font-size: var(--fs-h2);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin-top: 1.5rem;
    text-wrap: balance;
}

.band__lead {
    max-width: 52ch;
    margin: 1.5rem auto 0;
    color: rgba(10, 10, 10, .68);
    font-size: var(--fs-lead);
    text-wrap: pretty;
}

.band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: clamp(2.25rem, 4vw, 3.25rem);
}

.band__meta {
    margin-top: 1.75rem;
    font-size: var(--fs-label);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, .66);
}

.band__ghost {
    border: 1px solid rgba(10, 10, 10, .3);
    color: #0a0a0a;
}

.band__ghost:hover {
    border-color: #0a0a0a;
    background: rgba(10, 10, 10, .06);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--hairline);
    padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
    background: #08080a;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: var(--grid-gap);
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.footer__blurb {
    margin-top: 1.25rem;
    max-width: 34ch;
    color: var(--text-3);
    font-size: var(--fs-small);
}

.footer__title {
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 1.25rem;
}

.footer__list {
    display: grid;
    gap: .35rem;
}

.footer__list a {
    display: inline-block;
    padding-block: .4rem;
    color: var(--text-2);
    font-size: var(--fs-small);
    transition: color var(--d-1) var(--ease);
    width: fit-content;
    border-bottom: 1px solid transparent;
}

.footer__list a:hover {
    color: var(--text);
    border-bottom-color: var(--hairline-hi);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--hairline);
    font-size: var(--fs-label);
    letter-spacing: .1em;
    color: var(--text-3);
}

.social {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--text-2);
    transition: color var(--d-1) var(--ease);
}

.social:hover {
    color: var(--text);
}

.social svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

/* copyright is text, not a link: no underline, hover, or pointer feedback */
.footer__copyright {
    color: var(--text-3);
    cursor: default;
    user-select: text;
}

/* ==========================================================================
   Reveal — base state is VISIBLE, JS opts in via html.js
   ========================================================================== */
html.js [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--d-3) var(--ease), transform var(--d-3) var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

html.js [data-reveal].is-in {
    opacity: 1;
    transform: none;
}

html.js .rule[data-reveal] {
    transform: scaleX(0);
}

html.js .rule[data-reveal].is-in {
    transform: scaleX(1);
    transition: transform 1.1s var(--ease);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
    :root {
        --header-h: 68px;
    }

    .feature,
    .feature--flip {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature--flip .feature__media {
        order: 0;
    }

    .feature__media {
        max-width: 620px;
        margin-inline: auto;
    }
}

@media (max-width: 980px) {
    .nav,
    .header__cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs__cell:nth-child(2) {
        border-right: 0;
    }

    .specs__cell:nth-child(n + 3) {
        border-top: 1px solid var(--hairline);
        padding-top: 1.4rem;
    }

    .specs__cell:nth-child(3) {
        padding-left: 0;
    }

    .scroll-cue {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .shot {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .hero__title {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: 92svh;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .specs {
        grid-template-columns: 1fr;
    }

    .specs__cell,
    .specs__cell:not(:first-child) {
        border-right: 0;
        border-top: 1px solid var(--hairline);
        padding: 1.1rem 0 0;
    }

    .specs__cell:first-child {
        border-top: 0;
    }

    .row {
        grid-template-columns: 2.5rem 1fr;
        gap: 1rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

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

/* ==========================================================================
   Motion & print
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    html.js [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .hero__img,
    .shot__img {
        opacity: 1;
    }
}

@media print {
    .header, .mobile-nav, .progress, .scroll-cue, .hero__actions {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }
}
