:root {
    color-scheme: dark;
    --muted: #aaa;
    --line: #292929;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.gallery-hero {
    padding: clamp(70px, 10vw, 140px) 0 64px;
    max-width: 850px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 20px;
    font-size: clamp(3.4rem, 10vw, 8.5rem);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .9;
}

.gallery-hero > p:last-child {
    max-width: 650px;
    color: #d2d2d2;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.reel-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #101010;
    color: #fff;
    text-decoration: none;
    transition: transform .35s ease, border-color .35s ease;
}

.reel-card:hover {
    transform: translateY(-6px);
    border-color: #666;
}

.reel-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #171717;
}

.reel-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.reel-card:hover .reel-cover img { transform: scale(1.04); }

.play-mark {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    padding-left: 3px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 17px;
    box-shadow: 0 8px 28px #0008;
}

.reel-copy { padding: 24px; }

.reel-copy > span {
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.reel-copy h2 {
    margin: 8px 0 10px;
    font-size: 1.3rem;
    line-height: 1.25;
}

.reel-copy p {
    margin: 0;
    color: #bdbdbd;
    font-size: .86rem;
    line-height: 1.6;
}

footer {
    margin-top: 100px;
    padding: 48px 0 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    border-top: 1px solid var(--line);
}

footer p { margin: 0 auto 0 0; }
footer a { border-bottom: 1px solid #fff; }

@media (max-width: 992px) {
    .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .gallery-hero { padding-top: 64px; }
    .video-grid { grid-template-columns: 1fr; }
    footer { align-items: flex-start; flex-direction: column; }
}
