.aluminum-page {
    color: #172028;
    background: #f4f6f7;
}

.aluminum-page .navbar {
    position: fixed;
}

.ingot-hero {
    position: relative;
    min-height: min(780px, 88vh);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: #26333d;
}

.ingot-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 27, 0.58);
}

.ingot-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
}

.ingot-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 180px;
    padding-bottom: 72px;
}

.ingot-kicker {
    margin: 0 0 18px;
    color: #f6a623;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ingot-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.ingot-hero-copy {
    max-width: 710px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.75;
}

.ingot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ingot-action {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
}

.ingot-action-primary {
    border-color: #f6a623;
    color: #172028;
    background: #f6a623;
}

.ingot-section {
    padding: 88px 0;
}

.ingot-section-white {
    background: #fff;
}

.ingot-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 42px;
}

.ingot-section-heading h2 {
    margin: 0;
    color: #172028;
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.ingot-section-heading p {
    margin: 0;
    color: #52616c;
    line-height: 1.8;
}

.ingot-requirements {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid #cad2d8;
    border-bottom: 1px solid #cad2d8;
}

.ingot-requirement {
    min-height: 170px;
    padding: 24px 20px;
    border-right: 1px solid #cad2d8;
}

.ingot-requirement:last-child {
    border-right: 0;
}

.ingot-requirement span {
    display: block;
    margin-bottom: 26px;
    color: #0876bd;
    font-size: 0.75rem;
    font-weight: 800;
}

.ingot-requirement h3 {
    margin: 0 0 8px;
    color: #172028;
    font-size: 1rem;
}

.ingot-requirement p {
    margin: 0;
    color: #65727c;
    font-size: 0.86rem;
    line-height: 1.62;
}

.ingot-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.ingot-gallery figure {
    grid-column: span 4;
    margin: 0;
    overflow: hidden;
    border: 1px solid #d4dade;
    border-radius: 6px;
    background: #fff;
}

.ingot-gallery figure:nth-child(1),
.ingot-gallery figure:nth-child(6),
.ingot-gallery figure:nth-child(10) {
    grid-column: span 8;
}

.ingot-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    background: #e5e8ea;
}

.ingot-gallery .portrait img {
    object-position: center 40%;
}

.ingot-gallery figcaption {
    min-height: 72px;
    padding: 16px 18px;
    color: #45535e;
    font-size: 0.88rem;
    line-height: 1.55;
}

.ingot-note {
    max-width: 920px;
    margin: 28px 0 0;
    padding-left: 18px;
    border-left: 3px solid #f6a623;
    color: #65727c;
    font-size: 0.88rem;
    line-height: 1.7;
}

.ingot-cta {
    color: #fff;
    background: #17303d;
}

.ingot-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
}

.ingot-cta h2 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.ingot-cta p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.ingot-back {
    display: inline-block;
    margin-top: 24px;
    color: #0876bd;
    font-weight: 700;
}

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

    .ingot-requirement:nth-child(2n) {
        border-right: 0;
    }

    .ingot-requirement:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid #cad2d8;
    }

    .ingot-gallery figure,
    .ingot-gallery figure:nth-child(1),
    .ingot-gallery figure:nth-child(6),
    .ingot-gallery figure:nth-child(10) {
        grid-column: span 6;
    }
}

@media (max-width: 700px) {
    .ingot-hero {
        min-height: 720px;
    }

    .ingot-hero .container {
        padding-top: 150px;
        padding-bottom: 48px;
    }

    .ingot-hero h1 {
        font-size: 2.65rem;
    }

    .ingot-section {
        padding: 64px 0;
    }

    .ingot-section-heading,
    .ingot-cta-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ingot-requirements {
        grid-template-columns: 1fr;
    }

    .ingot-requirement,
    .ingot-requirement:nth-child(2n),
    .ingot-requirement:last-child {
        min-height: 0;
        grid-column: auto;
        border-right: 0;
        border-top: 1px solid #cad2d8;
    }

    .ingot-requirement:first-child {
        border-top: 0;
    }

    .ingot-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ingot-gallery figure,
    .ingot-gallery figure:nth-child(1),
    .ingot-gallery figure:nth-child(6),
    .ingot-gallery figure:nth-child(10) {
        grid-column: auto;
    }

    .ingot-gallery figcaption {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ingot-action {
        transition: none;
    }
}
