/* =========================
   GEAR PAGE
========================= */

.gear-page-content {
    background:
        radial-gradient(860px 420px at 12% 0%, rgba(126, 152, 174, 0.14), rgba(126, 152, 174, 0) 62%),
        linear-gradient(180deg, #0c1117 0%, #10161d 42%, #0d1218 100%);
}

.gear-page-content .section-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-hero-gear {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: url("../assets/images/gear/cupo-arctico-gear-drumsticks.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-hero-gear::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 0;
}

.section-hero-gear .section-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.section-hero-gear h1 {
    margin: 0;
    color: #fff;
    font-size: 2em;
    letter-spacing: 0.08em;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.35);
}

.gear-layout {
    padding: clamp(4rem, 7vw, 6rem) 0 clamp(5rem, 8vw, 6.5rem);
}

.gear-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.gear-copy h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.02;
}

.gear-group + .gear-group {
    margin-top: 2rem;
}

.gear-group h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gear-item + .gear-item {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gear-item h4 {
    margin-bottom: 0.45rem;
    font-size: 1.02rem;
    font-weight: 600;
}

.gear-item p {
    margin: 0;
    max-width: 40rem;
}

.gear-visuals {
    display: grid;
    gap: 1.5rem;
}

.gear-figure {
    margin: 0;
}

.gear-figure img {
    width: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

.gear-figure.is-portrait img {
    aspect-ratio: 4 / 5;
}

.gear-figure.is-square img {
    aspect-ratio: 1 / 1;
    filter: grayscale(100%) contrast(1.05);
}

.gear-figure figcaption {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(230, 231, 233, 0.55);
}

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