/* Deer Fight Gear — Manufacturing page (pure: #000 #FFF #E60000 #C9A227) */

.mfg-page {
    overflow-x: hidden;
}

/* ── Hero ───────────────────────────────────────────── */

.mfg-hero {
    position: relative;
    min-height: var(--page-hero-min-height);
    display: flex;
    align-items: flex-end;
    padding: var(--page-hero-padding-top) var(--page-hero-padding-x) var(--page-hero-padding-bottom);
    overflow: hidden;
    background: #000000;
}

.mfg-hero__bg {
    position: absolute;
    inset: 0;
    animation: mfgHeroZoom 18s ease-in-out infinite alternate;
}

.mfg-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.08);
}

@keyframes mfgHeroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.14); }
}

.mfg-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #000000 0%, #000000 42%, transparent 100%);
}

.mfg-hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.mfg-hero__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid #C9A227;
    border-radius: 999px;
    color: #C9A227;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    animation: mfgFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}

.mfg-hero h1 {
    margin: 0 0 16px;
    max-width: 13ch;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    animation: mfgFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.22s backwards;
}

.mfg-hero p {
    margin: 0 0 28px;
    max-width: 50ch;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #B0B0B0;
    animation: mfgFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.36s backwards;
}

.mfg-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 30px;
    border: 2px solid #E60000;
    border-radius: 999px;
    background: #E60000;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.35s ease;
    animation: mfgFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

.mfg-hero__btn:hover {
    transform: translateY(-3px);
    background: #000000;
    color: #FFFFFF;
    box-shadow: 0 12px 32px #330000;
}

.mfg-hero__btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.35s ease;
}

.mfg-hero__btn:hover svg {
    transform: translateX(4px);
}

@keyframes mfgFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Intro ──────────────────────────────────────────── */

.mfg-intro {
    padding: clamp(64px, 8vw, 96px) 5vw;
    background: #FFFFFF;
    color: #000000;
}

.mfg-intro__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: start;
    max-width: 1240px;
    margin: 0 auto;
}

.mfg-intro__copy .cp-kicker {
    color: #E60000;
}

.mfg-intro__copy .cp-title {
    color: #000000;
}

.mfg-intro__copy .cp-lead + .cp-lead {
    margin-top: 16px;
}

.mfg-intro__copy .cp-lead {
    color: #555555;
}

.mfg-intro__cards {
    display: grid;
    gap: 16px;
}

.mfg-intro-card {
    padding: 22px 24px;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    background: #FFFFFF;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.45s ease;
}

.mfg-intro-card:hover {
    transform: translateY(-6px);
    border-color: #E60000;
    box-shadow: 0 20px 40px #EEEEEE;
}

.mfg-intro-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: #E60000;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
}

.mfg-intro-card strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #000000;
}

.mfg-intro-card span {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #666666;
}

/* ── Process timeline + cards ───────────────────────── */

.mfg-process {
    position: relative;
    padding: clamp(64px, 8vw, 96px) 5vw;
    background: #000000;
}

.mfg-process__head {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}

.mfg-process__head .cp-kicker {
    color: #E60000;
}

.mfg-process__head .cp-title {
    color: #C9A227;
}

.mfg-process__head .cp-lead {
    color: #999999;
}

.mfg-process__track {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.mfg-process__track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, #E60000 0%, #333333 40%, #333333 60%, #C9A227 100%);
    transform: translateX(-50%);
    opacity: 0.45;
}

.mfg-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 40px;
    border: 1px solid #222222;
    border-radius: 20px;
    overflow: hidden;
    background: #0A0A0A;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.5s ease;
}

.mfg-card:last-child {
    margin-bottom: 0;
}

.mfg-card:hover {
    transform: translateY(-8px);
    border-color: #E60000;
    box-shadow: 0 28px 56px #1A0000;
}

.mfg-card--right {
    margin-left: auto;
    margin-right: 0;
}

.mfg-card--left {
    margin-right: auto;
    margin-left: 0;
}

.mfg-card--right .mfg-card__visual {
    order: 2;
}

.mfg-card__visual {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    background: #000000;
}

.mfg-card__visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.mfg-card:hover .mfg-card__visual img {
    transform: scale(1.06);
}

.mfg-card__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, #000000 100%);
    pointer-events: none;
}

.mfg-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 2px solid #C9A227;
    border-radius: 50%;
    background: #000000;
    color: #C9A227;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.mfg-card:hover .mfg-card__badge {
    background: #E60000;
    border-color: #E60000;
    color: #FFFFFF;
}

.mfg-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 40px);
}

.mfg-card__body h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
}

.mfg-card__body > p {
    margin: 0 0 18px;
    font-size: 0.92rem;
    line-height: 1.75;
    color: #999999;
}

.mfg-card__points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mfg-card__points li {
    position: relative;
    padding: 10px 14px 10px 32px;
    border-radius: 10px;
    background: #111111;
    font-size: 0.84rem;
    line-height: 1.5;
    color: #BBBBBB;
    transition: background 0.3s ease, color 0.3s ease;
}

.mfg-card:hover .mfg-card__points li {
    background: #150000;
}

.mfg-card__points li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E60000;
    transform: translateY(-50%);
}

/* ── CTA band (white section) ───────────────────────── */

.mfg-cta {
    padding: clamp(56px, 7vw, 88px) 5vw;
    background: #FFFFFF;
}

.mfg-cta__inner {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 52px);
    border: 2px solid #000000;
    border-radius: 24px;
    background: #FFFFFF;
    box-shadow: 0 32px 64px #EEEEEE;
    transition: border-color 0.45s ease, box-shadow 0.45s ease;
}

.mfg-cta.is-in .mfg-cta__inner {
    border-color: #E60000;
}

.mfg-cta__content {
    padding-left: clamp(0px, 2vw, 12px);
    border-left: 4px solid #E60000;
}

.mfg-cta__label {
    display: inline-block;
    margin-bottom: 14px;
    color: #C9A227;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mfg-cta__content h2 {
    margin: 0 0 14px;
    max-width: 22ch;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #000000;
}

.mfg-cta__content > p {
    margin: 0 0 22px;
    max-width: 48ch;
    font-size: 0.94rem;
    line-height: 1.75;
    color: #666666;
}

.mfg-cta__checks {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mfg-cta__checks li {
    position: relative;
    padding-left: 28px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
    color: #333333;
}

.mfg-cta__checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #E60000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%23FFFFFF' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.mfg-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mfg-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.mfg-cta__btn--primary {
    border: 2px solid #E60000;
    background: #E60000;
    color: #FFFFFF;
}

.mfg-cta__btn--primary:hover {
    transform: translateY(-3px);
    background: #000000;
    border-color: #000000;
    color: #FFFFFF;
}

.mfg-cta__btn--ghost {
    border: 2px solid #000000;
    background: #FFFFFF;
    color: #000000;
}

.mfg-cta__btn--ghost:hover {
    transform: translateY(-3px);
    background: #000000;
    color: #FFFFFF;
}

.mfg-cta__visual {
    position: relative;
}

.mfg-cta__frame {
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #000000;
    background: #000000;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.mfg-cta.is-in .mfg-cta__frame {
    animation: mfgCtaFloat 5s ease-in-out infinite;
}

@keyframes mfgCtaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.mfg-cta__frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.mfg-cta__inner:hover .mfg-cta__frame {
    border-color: #E60000;
}

.mfg-cta__inner:hover .mfg-cta__frame img {
    transform: scale(1.04);
}

.mfg-cta__badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    padding: 16px 20px;
    border: 2px solid #C9A227;
    border-radius: 14px;
    background: #000000;
    color: #FFFFFF;
    box-shadow: 0 16px 32px #CCCCCC;
}

.mfg-cta__badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #E60000;
}

.mfg-cta__badge span {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C9A227;
}

/* ── Capabilities (black section) ───────────────────── */

.mfg-capabilities {
    padding: clamp(64px, 8vw, 96px) 5vw;
    background: #000000;
}

.mfg-capabilities__head {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.mfg-capabilities__head .cp-kicker {
    color: #C9A227;
}

.mfg-capabilities__head .cp-title {
    color: #C9A227;
}

.mfg-capabilities__head .cp-lead {
    color: #999999;
}

.mfg-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.mfg-cap-card {
    position: relative;
    padding: 28px 26px;
    border: 1px solid #333333;
    border-radius: 16px;
    background: #0A0A0A;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.45s ease;
}

.mfg-cap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #E60000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mfg-cap-card:hover {
    transform: translateY(-8px);
    border-color: #E60000;
    box-shadow: 0 22px 44px #1A0000;
}

.mfg-cap-card:hover::before {
    transform: scaleX(1);
}

.mfg-cap-card__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #000000;
    color: #C9A227;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    transition: background 0.35s ease, color 0.35s ease;
}

.mfg-cap-card:hover .mfg-cap-card__icon {
    background: #E60000;
    color: #FFFFFF;
}

.mfg-cap-card h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
}

.mfg-cap-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #999999;
}

/* ── Scroll reveal ──────────────────────────────────── */

.mfg-page.js-ready .mfg-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--mfg-delay, 0ms);
}

.mfg-page.js-ready .mfg-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

.mfg-page.js-ready .mfg-reveal--left {
    transform: translateX(-40px);
}

.mfg-page.js-ready .mfg-reveal--right {
    transform: translateX(40px);
}

.mfg-page.js-ready .mfg-reveal--left.is-in,
.mfg-page.js-ready .mfg-reveal--right.is-in {
    transform: translateX(0);
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 991px) {
    .mfg-intro__grid {
        grid-template-columns: 1fr;
    }

    .mfg-cta__inner {
        grid-template-columns: 1fr;
    }

    .mfg-cta__visual {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
    }

    .mfg-cta__badge {
        bottom: -12px;
        left: 12px;
    }

    .mfg-process__track::before {
        display: none;
    }

    .mfg-card,
    .mfg-card--right,
    .mfg-card--left {
        grid-template-columns: 1fr;
        margin-left: auto;
        margin-right: auto;
    }

    .mfg-card--right .mfg-card__visual {
        order: unset;
    }

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

    .mfg-hero__overlay {
        background: linear-gradient(180deg, transparent 20%, #000000 88%);
    }
}

@media (max-width: 640px) {
    .mfg-cap-grid {
        grid-template-columns: 1fr;
    }

    .mfg-card__visual {
        min-height: 220px;
    }

    .mfg-card__visual img {
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mfg-hero__bg,
    .mfg-hero__content > *,
    .mfg-page.js-ready .mfg-reveal {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }

    .mfg-card:hover,
    .mfg-cap-card:hover,
    .mfg-intro-card:hover {
        transform: none;
    }

    .mfg-cta.is-in .mfg-cta__frame {
        animation: none;
    }

    .mfg-card:hover .mfg-card__visual img {
        transform: none;
    }
}
