/* =========================================================
   RABIE RIDGE INK HOUSE
   ABOUT SECTION
   FUTURISTIC DARK THEME
   ========================================================= */


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about {

    position: relative;

    min-height: 100vh;

    padding: 140px 0 100px;

    background:
        linear-gradient(
            180deg,
            #070707 0%,
            #0b0b0b 50%,
            #060606 100%
        );

    overflow: hidden;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.about-bg {

    position: absolute;

    inset: 0;

    z-index: -3;

    pointer-events: none;

}


/* =========================================================
   GRID
   ========================================================= */

.about-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );

    opacity: 0.35;

}


/* =========================================================
   RED GLOWS
   ========================================================= */

.about-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;

}


.about-glow-one {

    width: 400px;

    height: 400px;

    top: 15%;

    left: -180px;

    background:
        rgba(225, 6, 19, 0.10);

}


.about-glow-two {

    width: 350px;

    height: 350px;

    right: -160px;

    bottom: 5%;

    background:
        rgba(225, 6, 19, 0.08);

}


/* =========================================================
   CONTAINER
   ========================================================= */

.about-container {

    width:
        min(
            1440px,
            calc(100% - 80px)
        );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(400px, 0.9fr)
        minmax(500px, 1.1fr);

    gap: 100px;

    align-items: center;

}


/* =========================================================
   IMAGE AREA
   ========================================================= */

.about-visual {

    position: relative;

    width: 100%;

    max-width: 600px;

}


/* =========================================================
   IMAGE FRAME
   ========================================================= */

.about-image-frame {

    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #101010;

    border:
        1px solid
        rgba(255,255,255,0.12);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.55);

}


/* =========================================================
   IMAGE
   ========================================================= */

.about-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    filter:
        grayscale(18%)
        contrast(1.08)
        brightness(0.72);

    transform: scale(1.02);

    transition:
        transform 0.8s cubic-bezier(.16,1,.3,1),
        filter 0.6s ease;

}


/* =========================================================
   IMAGE HOVER
   ========================================================= */

.about-image-frame:hover .about-image {

    transform: scale(1.08);

    filter:
        grayscale(0%)
        contrast(1.08)
        brightness(0.82);

}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.about-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.05) 0%,
            rgba(0,0,0,0.08) 40%,
            rgba(0,0,0,0.78) 100%
        );

    pointer-events: none;

}


/* =========================================================
   IMAGE RED SCAN
   ========================================================= */

.about-image-scan {

    position: absolute;

    left: 0;

    top: -20%;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--rr-red-bright),
            transparent
        );

    box-shadow:
        0 0 15px
        rgba(255,23,36,0.8);

    opacity: 0.7;

    animation:
        aboutScan 5s linear infinite;

    pointer-events: none;

}


@keyframes aboutScan {

    0% {
        top: -5%;
    }

    100% {
        top: 105%;
    }

}


/* =========================================================
   IMAGE CORNERS
   ========================================================= */

.about-image-corner {

    position: absolute;

    width: 30px;

    height: 30px;

    z-index: 5;

    pointer-events: none;

}


.about-image-corner-tl {

    top: 14px;

    left: 14px;

    border-top:
        2px solid
        var(--rr-red-bright);

    border-left:
        2px solid
        var(--rr-red-bright);

}


.about-image-corner-tr {

    top: 14px;

    right: 14px;

    border-top:
        2px solid
        var(--rr-red-bright);

    border-right:
        2px solid
        var(--rr-red-bright);

}


.about-image-corner-bl {

    bottom: 14px;

    left: 14px;

    border-bottom:
        2px solid
        var(--rr-red-bright);

    border-left:
        2px solid
        var(--rr-red-bright);

}


.about-image-corner-br {

    right: 14px;

    bottom: 14px;

    border-bottom:
        2px solid
        var(--rr-red-bright);

    border-right:
        2px solid
        var(--rr-red-bright);

}


/* =========================================================
   IMAGE LABEL
   ========================================================= */

.about-image-label {

    position: absolute;

    left: 24px;

    bottom: 22px;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    font-family:
        var(--rr-display-font);

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 0.14em;

}


.about-image-label-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        var(--rr-red-bright);

    box-shadow:
        0 0 10px
        var(--rr-red-bright);

}


/* =========================================================
   IMAGE CAPTION
   ========================================================= */

.about-image-caption {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 15px;

    color: #666;

    font-family:
        var(--rr-display-font);

    font-size: 0.55rem;

    font-weight: 700;

    letter-spacing: 0.14em;

}


.about-caption-line {

    width: 45px;

    height: 1px;

    background:
        var(--rr-red);

}


/* =========================================================
   CONTENT
   ========================================================= */

.about-content {

    max-width: 700px;

}


/* =========================================================
   EYEBROW
   ========================================================= */

.about-eyebrow {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 25px;

    color: #888;

    font-family:
        var(--rr-display-font);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 0.18em;

}


.about-eyebrow-number {

    color:
        var(--rr-red-bright);

}


.about-eyebrow-line {

    width: 45px;

    height: 1px;

    background:
        var(--rr-red);

    box-shadow:
        0 0 8px
        rgba(225,6,19,0.5);

}


/* =========================================================
   TITLE
   ========================================================= */

.about-title {

    display: flex;

    flex-direction: column;

    margin: 0 0 30px;

    color: #fff;

    font-family:
        var(--rr-display-font);

    font-size:
        clamp(2.7rem, 5.5vw, 5rem);

    font-weight: 900;

    line-height: 0.94;

    letter-spacing: -0.025em;

}


.about-title-red {

    color:
        var(--rr-red-bright);

    text-shadow:
        0 0 20px
        rgba(225,6,19,0.25);

}


.about-title-outline {

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.45);

}


/* =========================================================
   INTRO
   ========================================================= */

.about-intro {

    max-width: 650px;

    margin: 0 0 18px;

    color: #e7e7e7;

    font-family:
        var(--rr-body-font);

    font-size:
        clamp(1.1rem, 1.5vw, 1.35rem);

    font-weight: 600;

    line-height: 1.55;

}


/* =========================================================
   BODY TEXT
   ========================================================= */

.about-text {

    max-width: 650px;

    margin: 0;

    color: #858585;

    font-family:
        var(--rr-body-font);

    font-size: 1rem;

    font-weight: 500;

    line-height: 1.75;

}


/* =========================================================
   FEATURES
   ========================================================= */

.about-features {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 35px;

}


.about-feature {

    display: flex;

    gap: 15px;

    padding: 17px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        rgba(255,255,255,0.07);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;

}


.about-feature:hover {

    transform:
        translateY(-4px);

    background:
        rgba(225,6,19,0.05);

    border-color:
        rgba(225,6,19,0.3);

}


/* =========================================================
   FEATURE NUMBER
   ========================================================= */

.about-feature-icon {

    flex: 0 0 34px;

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    color:
        var(--rr-red-bright);

    border:
        1px solid
        rgba(225,6,19,0.45);

    font-family:
        var(--rr-display-font);

    font-size: 0.55rem;

    font-weight: 800;

}


/* =========================================================
   FEATURE CONTENT
   ========================================================= */

.about-feature-content h3 {

    margin: 0 0 5px;

    color: #eee;

    font-family:
        var(--rr-display-font);

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 0.08em;

}


.about-feature-content p {

    margin: 0;

    color: #777;

    font-family:
        var(--rr-body-font);

    font-size: 0.82rem;

    line-height: 1.45;

}


/* =========================================================
   ACTIONS
   ========================================================= */

.about-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;

}


.about-btn {

    min-height: 48px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    text-decoration: none;

    font-family:
        var(--rr-display-font);

    font-size: 0.58rem;

    font-weight: 900;

    letter-spacing: 0.1em;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


.about-btn-primary {

    color: #fff;

    background:
        var(--rr-red);

    border:
        1px solid
        var(--rr-red-bright);

    box-shadow:
        0 0 18px
        rgba(225,6,19,0.2);

}


.about-btn-primary:hover {

    transform:
        translateY(-3px);

    background:
        var(--rr-red-bright);

    box-shadow:
        0 0 30px
        rgba(225,6,19,0.4);

}


.about-btn-outline {

    color: #aaa;

    background:
        transparent;

    border:
        1px solid
        rgba(255,255,255,0.16);

}


.about-btn-outline:hover {

    transform:
        translateY(-3px);

    color: #fff;

    border-color:
        var(--rr-red);

}


/* =========================================================
   STATS
   ========================================================= */

.about-stats {

    width:
        min(
            1440px,
            calc(100% - 80px)
        );

    margin:
        90px auto 0;

    padding-top:
        30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:
        1px solid
        rgba(255,255,255,0.08);

}


.about-stat {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.about-stat-number {

    color: #eee;

    font-family:
        var(--rr-display-font);

    font-size: 1.1rem;

    font-weight: 900;

}


.about-stat-label {

    color: #666;

    font-family:
        var(--rr-display-font);

    font-size: 0.5rem;

    font-weight: 700;

    letter-spacing: 0.14em;

}


.about-stat-divider {

    width: 1px;

    height: 30px;

    background:
        rgba(255,255,255,0.1);

}


/* =========================================================
   SECTION CORNER
   ========================================================= */

.about-section-corner {

    position: absolute;

    right: 35px;

    bottom: 35px;

    width: 35px;

    height: 35px;

    border-right:
        1px solid
        rgba(225,6,19,0.5);

    border-bottom:
        1px solid
        rgba(225,6,19,0.5);

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .about {

        padding:
            120px 0 80px;

    }

    .about-container {

        grid-template-columns:
            minmax(330px, 0.85fr)
            minmax(400px, 1.15fr);

        gap: 55px;

    }

    .about-title {

        font-size:
            clamp(2.5rem, 5vw, 4rem);

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .about {

        padding:
            100px 0 70px;

    }

    .about-container {

        width:
            calc(100% - 32px);

        grid-template-columns:
            1fr;

        gap: 55px;

    }

    .about-visual {

        max-width:
            600px;

        margin:
            0 auto;

    }

    .about-content {

        max-width:
            none;

    }

    .about-title {

        font-size:
            clamp(2.7rem, 11vw, 4.5rem);

    }

    .about-stats {

        width:
            calc(100% - 32px);

        margin-top:
            65px;

        display:
            grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;

    }

    .about-stat-divider {

        display: none;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .about {

        padding:
            85px 0 60px;

    }

    .about-container {

        width:
            calc(100% - 24px);

    }

    .about-image-frame {

        aspect-ratio:
            4 / 5;

    }

    .about-title {

        font-size:
            clamp(2.25rem, 12vw, 3.5rem);

    }

    .about-intro {

        font-size:
            1.05rem;

    }

    .about-text {

        font-size:
            0.94rem;

    }

    .about-features {

        grid-template-columns:
            1fr;

    }

    .about-actions {

        flex-direction:
            column;

    }

    .about-btn {

        width:
            100%;

    }

    .about-stats {

        width:
            calc(100% - 24px);

    }

}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-image-scan {

        animation: none;

    }

    .about-image,
    .about-feature,
    .about-btn {

        transition: none !important;

    }

}