/* ---------------------------------------------------------
   Deer Fight Gear — Company Profile & Inner Pages
   Pure palette: #000000 · #FFFFFF · #E60000 · #C9A227
   --------------------------------------------------------- */

body.has-editorial-header .page-hero {
    min-height: var(--page-hero-min-height);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--page-hero-padding-top) var(--page-hero-padding-x) var(--page-hero-padding-bottom);
    background: #000000;
    border-bottom: 3px solid #E60000;
    color: #FFFFFF;
}

body.has-editorial-header .page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 16ch;
    color: #FFFFFF;
}

body.has-editorial-header .page-hero .eyebrow {
    color: #C9A227;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

body.has-editorial-header .page-hero p {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    line-height: 1.7;
    color: #B0B0B0;
    max-width: 58ch;
}

/* Company sub-navigation */
.company-subnav {
    position: sticky;
    top: var(--site-header-height);
    z-index: 40;
    background: #000000;
    border-bottom: 1px solid #333333;
}

.company-subnav-inner {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 10px 5vw;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.company-subnav-inner::-webkit-scrollbar {
    display: none;
}

.company-subnav-link {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    color: #888888;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.company-subnav-link:hover {
    color: #FFFFFF;
    background: #1A1A1A;
}

.company-subnav-link.is-active {
    color: #FFFFFF;
    background: #1A0000;
    border-color: #E60000;
}

/* Page content blocks */
.cp-section {
    padding: clamp(56px, 7vw, 88px) 5vw;
}

.cp-section--dark {
    color: #FFFFFF;
    background: #000000;
}

.cp-section--light {
    color: #000000;
    background: #FFFFFF;
}

.cp-section--muted {
    background: #111111;
}

.cp-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.cp-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--red);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.cp-section--dark .cp-kicker {
    color: var(--light-gold);
}

.cp-title {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #000000;
}

.cp-section--dark .cp-title,
.cp-section--muted .cp-title {
    color: #E60000;
}

.cp-lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #63636b;
}

.cp-section--dark .cp-lead {
    color: #B0B0B0;
}

.cp-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.cp-stat-card {
    padding: 22px 20px;
    border-radius: 14px;
    background: #111111;
    border: 1px solid #333333;
}

.cp-stat-card strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #C9A227;
}

.cp-stat-card span {
    font-size: 0.82rem;
    color: #888888;
    line-height: 1.5;
}

.cp-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cp-feature-card {
    padding: 24px 20px;
    border-radius: 14px;
    background: #111111;
    border: 1px solid #333333;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.cp-feature-card:hover {
    transform: translateY(-4px);
    border-color: #E60000;
}

.cp-feature-card span {
    display: block;
    margin-bottom: 10px;
    color: #E60000;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
}

.cp-feature-card h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.cp-feature-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #888888;
}

.cp-feature-grid--light .cp-feature-card--light {
    background: #FFFFFF;
    border: 1px solid #000000;
}

.cp-feature-grid--light .cp-feature-card--light:hover {
    border-color: #E60000;
}

.cp-feature-grid--light .cp-feature-card--light h3 {
    color: #000000;
}

.cp-feature-grid--light .cp-feature-card--light p {
    color: #555555;
}

.cp-media-frame {
    border: 2px solid #E60000;
    border-radius: 14px;
    overflow: hidden;
    background: #000000;
}

.cp-media-frame img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.cp-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.cp-page-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 22px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e8e8ec;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cp-page-card:hover {
    transform: translateY(-4px);
    border-color: #E60000;
    box-shadow: 0 12px 32px #E0E0E0;
    color: inherit;
}

.cp-page-card strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
}

.cp-page-card span {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #63636b;
}

.cp-page-card em {
    margin-top: auto;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    font-style: normal;
}

/* Process timeline */
.cp-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cp-timeline-step {
    padding: 24px 22px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1px solid #000000;
    box-shadow: 0 8px 24px #EEEEEE;
}

.cp-timeline-step span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    background: var(--red);
}

.cp-timeline-step h2 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
}

.cp-timeline-step p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #63636b;
}

/* FAQ */
.cp-faq-list details {
    margin-bottom: 12px;
    border: 1px solid #e8e8ec;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.cp-faq-list summary {
    padding: 18px 22px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.cp-faq-list summary::-webkit-details-marker {
    display: none;
}

.cp-faq-list details[open] summary {
    color: var(--red);
    border-bottom: 1px solid #eee;
}

.cp-faq-list details p {
    margin: 0;
    padding: 16px 22px 20px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #63636b;
}

/* Contact */
.cp-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}

.cp-contact-info {
    padding: 28px;
    border-radius: 14px;
    background: #000000;
    color: #FFFFFF;
    border: 2px solid #E60000;
}

.cp-contact-info h2 {
    margin: 0 0 20px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.cp-contact-info p {
    margin: 0 0 12px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #B0B0B0;
}

.cp-contact-info strong {
    color: #C9A227;
}

/* Legal */
.cp-legal {
    max-width: 780px;
}

.cp-legal h2 {
    margin: 28px 0 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.cp-legal p {
    margin: 0 0 14px;
    line-height: 1.75;
    color: #63636b;
}

/* CTA strip */
.cp-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: clamp(32px, 4vw, 48px);
    border-radius: 18px;
    background: #000000;
    border: 2px solid #E60000;
    color: #FFFFFF;
}

.cp-cta-strip--light {
    background: #FFFFFF;
    border: 2px solid #000000;
    color: #000000;
}

.cp-cta-strip--light p {
    color: #555555;
}

.cp-cta-strip h2 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
}

.cp-cta-strip p {
    margin: 0;
    font-size: 0.92rem;
    color: #B0B0B0;
}

.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border-radius: 999px;
    background: #E60000;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #E60000;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cp-btn:hover {
    transform: translateY(-2px);
    background: #000000;
    color: #FFFFFF;
}

.cp-btn--gold {
    background: #C9A227;
    border-color: #C9A227;
    color: #000000;
}

.cp-btn--gold:hover {
    background: #000000;
    color: #C9A227;
    border-color: #C9A227;
}

/* Drawer company group — legacy label hidden */
.drawer-menu-label {
    display: none;
}

@media (max-width: 991px) {
    .cp-split,
    .cp-contact-grid {
        grid-template-columns: 1fr;
    }

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

    .cp-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cp-feature-grid,
    .cp-page-grid,
    .cp-stat-grid {
        grid-template-columns: 1fr;
    }

    .cp-cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .gl-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gl-card--tall {
        grid-row: span 1;
    }

    .gl-filters {
        width: 100%;
    }
}

/* ---------------------------------------------------------
   GALLERY PAGE
   --------------------------------------------------------- */

.gl-section {
    padding: clamp(40px, 6vw, 72px) 5vw clamp(56px, 7vw, 88px);
    background: #ffffff;
    color: #18181b;
}

.gl-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.gl-toolbar__meta p {
    margin: 6px 0 0;
    font-size: 0.9rem;
    color: #63636b;
}

.gl-count {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red, #E60000);
}

.gl-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.gl-filter {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid #e4e4e7;
    background: #fafafa;
    color: #52525b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gl-filter:hover {
    color: #000000;
    border-color: #E60000;
    background: #FFFFFF;
}

.gl-filter.is-active {
    color: #fff;
    background: var(--red, #E60000);
    border-color: var(--red-dark);
}

.gl-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    grid-auto-flow: dense;
}

.gl-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 0;
    border: 1px solid #000000;
    border-radius: 14px;
    background: #EEEEEE;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 8px 24px #EEEEEE;
}

.gl-card--tall {
    grid-row: span 2;
    min-height: 100%;
}

.gl-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.55s ease, opacity 0.35s ease;
}

.gl-card--tall img {
    min-height: 100%;
}

.gl-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 18px;
    background: linear-gradient(180deg, transparent 35%, #000000 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gl-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.gl-card__cat {
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid #C9A227;
    background: #000000;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C9A227;
}

.gl-card__zoom {
    color: var(--gold, #C9A227);
}

.gl-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.gl-card:hover img,
.gl-card:focus-visible img {
    transform: scale(1.06);
}

.gl-card:hover .gl-card__overlay,
.gl-card:focus-visible .gl-card__overlay {
    opacity: 1;
}

.gl-empty {
    padding: clamp(40px, 6vw, 64px);
    border: 1px dashed #d4d4d8;
    border-radius: 16px;
    text-align: center;
    background: #fafafa;
}

.gl-empty strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #18181b;
}

.gl-empty p {
    margin: 0 0 18px;
    color: #71717a;
}

.gl-empty__btn {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 6px;
    background: var(--red, #E60000);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

.gl-cta {
    padding-top: 0;
}

@media (max-width: 1024px) {
    .gl-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .gl-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* ---------------------------------------------------------
   ABOUT PAGE REDESIGN
   --------------------------------------------------------- */

.about-page {
    background: #050505;
    color: #ffffff;
}

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

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

.about-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-color: #050505;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.36) 100%),
        var(--about-hero-image),
        linear-gradient(135deg, #080808 0%, #240202 100%);
    background-position: center;
    background-size: cover;
}

.about-hero::after,
.about-media::after,
.about-section--stats::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.24;
}

.about-hero__shade {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, #050505 100%);
    pointer-events: none;
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    animation: aboutHeroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #ff3434;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: #e60000;
}

.about-hero h1,
.about-copy h2,
.about-section-head h2,
.about-process-sticky h2,
.about-final-cta h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: 0;
}

.about-hero h1 {
    max-width: 10ch;
    font-size: 4.4rem;
    color: #ffffff;
}

.about-hero__subtitle {
    margin: 18px 0 0;
    max-width: 760px;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 750;
    line-height: 1.35;
}

.about-hero__text {
    max-width: 660px;
    margin: 18px 0 0;
    color: #d3d3d3;
    font-size: 1.03rem;
    line-height: 1.75;
}

.about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 6px;
    border: 1px solid #e60000;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about-btn--primary {
    background: #e60000;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(230, 0, 0, 0.28);
}

.about-btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
}

.about-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.about-btn--primary:hover {
    background: #b90000;
    border-color: #b90000;
}

.about-btn--ghost:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.about-section {
    position: relative;
    padding: 84px 5vw;
}

.about-section--intro,
.about-section--quality {
    background: #ffffff;
    color: #090909;
}

.about-section--dark,
.about-section--process,
.about-section--final {
    background:
        linear-gradient(180deg, rgba(230, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0) 34%),
        #050505;
    color: #ffffff;
}

.about-section--features {
    background: #0d0d0d;
    color: #ffffff;
}

.about-section--custom {
    background:
        linear-gradient(135deg, rgba(230, 0, 0, 0.12), rgba(0, 0, 0, 0) 46%),
        #050505;
    color: #ffffff;
}

.about-split,
.about-custom-panel,
.about-process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 54px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.about-split--reverse {
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.about-copy h2,
.about-section-head h2,
.about-process-sticky h2 {
    max-width: 760px;
    font-size: 2.45rem;
}

.about-section--dark .about-section-head h2,
.about-section--features .about-section-head h2,
.about-section--process .about-process-sticky h2,
.about-custom-panel .about-copy h2,
.about-section--final .about-final-cta h2 {
    color: #ffffff;
}

.about-section--intro .about-copy h2,
.about-section--quality .about-copy h2,
.about-section--custom > .about-copy h2 {
    color: #090909;
}

.about-copy p,
.about-section-head p,
.about-process-sticky p,
.about-final-cta p {
    margin: 18px 0 0;
    color: #5f6368;
    font-size: 1rem;
    line-height: 1.78;
}

.about-section--dark .about-section-head p,
.about-section--features .about-section-head p,
.about-section--process .about-process-sticky p,
.about-section--final .about-final-cta p {
    color: #bababa;
}

.about-checklist {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.about-checklist li,
.about-option-grid span,
.about-mini-grid span {
    position: relative;
    padding: 13px 14px 13px 42px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #202124;
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.4;
}

.about-checklist li::before,
.about-option-grid span::before,
.about-mini-grid span::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e60000;
    transform: translateY(-50%);
    box-shadow: 0 0 0 5px rgba(230, 0, 0, 0.12);
}

.about-media {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: #141414;
    background-image:
        linear-gradient(135deg, rgba(230, 0, 0, 0.28), rgba(0, 0, 0, 0.88)),
        var(--about-image);
    background-position: center;
    background-size: cover;
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.22);
}

.about-section--intro .about-media,
.about-section--quality .about-media,
.about-section--custom .about-media {
    border-color: rgba(0, 0, 0, 0.12);
}

.about-media--tall {
    min-height: 520px;
}

.about-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.about-media:hover img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.04);
}

.about-section-head {
    max-width: 1180px;
    margin: 0 auto 34px;
}

.about-card-grid {
    display: grid;
    max-width: 1180px;
    margin: 0 auto;
    gap: 18px;
}

.about-card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-statement-card,
.about-feature-card,
.about-process-step,
.about-stat-card {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.about-statement-card {
    padding: 34px;
}

.about-statement-card span,
.about-feature-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 34px;
    margin-bottom: 20px;
    padding: 0 12px;
    border-radius: 6px;
    background: #e60000;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-statement-card h3,
.about-feature-card h3,
.about-process-step h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0;
}

.about-statement-card p,
.about-feature-card p,
.about-process-step p {
    margin: 12px 0 0;
    color: #bdbdbd;
    font-size: 0.92rem;
    line-height: 1.68;
}

.about-feature-card {
    padding: 28px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.about-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 0, 0, 0.84);
    background: linear-gradient(180deg, rgba(230, 0, 0, 0.16), rgba(255, 255, 255, 0.03));
}

.about-process-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
    align-items: start;
}

.about-process-sticky {
    position: sticky;
    top: calc(var(--site-header-height) + 74px);
}

.about-process-sticky .about-media {
    min-height: 320px;
    margin-top: 28px;
}

.about-process-list {
    display: grid;
    gap: 14px;
}

.about-process-step {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px;
}

.about-process-step > span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #e60000;
    color: #ffffff;
    font-weight: 850;
}

.about-mini-grid,
.about-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.about-custom-panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
}

.about-custom-panel .about-copy p {
    color: #c7c7c7;
}

.about-custom-panel .about-option-grid span {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.about-custom-panel .about-media {
    min-height: 460px;
}

.about-section--stats {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    overflow: hidden;
    background-color: #070707;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(24, 0, 0, 0.82)),
        var(--about-image),
        linear-gradient(135deg, #080808, #230202);
    background-position: center;
    background-size: cover;
}

.about-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1180px;
    margin: 0 auto;
    gap: 14px;
}

.about-stat-card {
    padding: 26px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 0, 0, 0.82);
    background: linear-gradient(180deg, rgba(230, 0, 0, 0.16), rgba(255, 255, 255, 0.04));
}

.about-stat-card strong {
    display: block;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 850;
    line-height: 1;
}

.about-stat-card span {
    display: block;
    margin-top: 10px;
    color: #cfcfcf;
    font-size: 0.83rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-section--final {
    padding-top: 96px;
    padding-bottom: 96px;
}

.about-final-cta {
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 0 44px 32px;
    border-left: 4px solid #e60000;
    background:
        linear-gradient(135deg, rgba(230, 0, 0, 0.2), rgba(0, 0, 0, 0) 48%),
        transparent;
    box-shadow: none;
}

.about-final-cta h2 {
    max-width: 760px;
    font-size: 2.65rem;
}

.about-final-cta p {
    max-width: 680px;
}

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

@keyframes aboutPulseGlow {
    0%,
    100% {
        box-shadow: 0 14px 28px rgba(230, 0, 0, 0.24);
    }
    50% {
        box-shadow: 0 18px 40px rgba(230, 0, 0, 0.42);
    }
}

.about-hero .about-btn--primary,
.about-final-cta .about-btn--primary {
    animation: aboutPulseGlow 2.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .about-page.js-reveal-ready .about-reveal,
    .about-media img,
    .about-feature-card,
    .about-stat-card,
    .about-btn,
    .about-hero__inner,
    .about-hero .about-btn--primary,
    .about-final-cta .about-btn--primary {
        animation: none;
        transition: none;
        transform: none;
    }

    .about-page.js-reveal-ready .about-reveal {
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .about-hero h1 {
        font-size: 3.7rem;
    }

    .about-split,
    .about-split--reverse,
    .about-custom-panel,
    .about-process-layout {
        grid-template-columns: 1fr;
    }

    .about-process-sticky {
        position: static;
    }

    .about-card-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-hero {
        padding: var(--page-hero-padding-top) 22px var(--page-hero-padding-bottom);
    }

    .about-hero h1 {
        font-size: 2.9rem;
    }

    .about-hero__subtitle {
        font-size: 1.08rem;
    }

    .about-hero__text,
    .about-copy p,
    .about-section-head p,
    .about-process-sticky p,
    .about-final-cta p {
        font-size: 0.95rem;
    }

    .about-section {
        padding: 58px 22px;
    }

    .about-copy h2,
    .about-section-head h2,
    .about-process-sticky h2,
    .about-final-cta h2 {
        font-size: 2rem;
    }

    .about-card-grid--two,
    .about-card-grid--three,
    .about-stats-grid,
    .about-mini-grid,
    .about-option-grid {
        grid-template-columns: 1fr;
    }

    .about-media,
    .about-media--tall,
    .about-custom-panel .about-media {
        min-height: 320px;
    }

    .about-custom-panel,
    .about-final-cta,
    .about-statement-card,
    .about-feature-card {
        padding: 24px;
    }

    .about-custom-panel {
        padding: 0;
    }

    .about-final-cta {
        padding: 28px 0 28px 22px;
    }

    .about-process-step {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .about-process-step > span {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 430px) {
    .about-hero h1 {
        font-size: 2.45rem;
    }

    .about-actions,
    .about-btn {
        width: 100%;
    }
}
