.page-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: flex-end;

    padding:
        160px 0 85px;

    overflow: hidden;

    background:
        #17191d;

    color: white;
}

.page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        var(--page-image, url("/static/uploads/yilmaz3.png"));

    background-size: cover;
    background-position: center;

    opacity: .28;

    transform: scale(1.04);
}

.page-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,11,14,.96),
            rgba(10,11,14,.76) 55%,
            rgba(10,11,14,.38)
        );
}

.page-hero-inner {
    position: relative;
    z-index: 2;

    max-width: 840px;
}

.page-kicker {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: rgba(255,255,255,.6);

    font-size: 11px;
    font-weight: 850;

    letter-spacing: 2.3px;
}

.page-kicker::before {
    content: "";

    width: 34px;
    height: 2px;

    background: #c8102e;
}

.page-title {
    font-size:
        clamp(48px, 6vw, 84px);

    line-height: .98;

    letter-spacing: -4px;
}

.page-title span {
    color: #e31b3d;
}

.page-lead {
    max-width: 690px;

    margin-top: 24px;

    color: rgba(255,255,255,.67);

    font-size: 17px;
    line-height: 1.8;
}


.content-section {
    padding:
        110px 0;
}

.content-section.soft {
    background:
        #f7f7f8;
}

.content-heading {
    max-width: 760px;

    margin-bottom: 55px;
}

.content-heading small {
    color: #c8102e;

    font-size: 11px;
    font-weight: 850;

    letter-spacing: 2px;
}

.content-heading h2 {
    margin-top: 16px;

    font-size:
        clamp(38px, 4vw, 58px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.content-heading h2 span {
    color: #c8102e;
}

.content-heading p {
    margin-top: 20px;

    max-width: 660px;

    color: #676b72;

    line-height: 1.8;
}


.two-column {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.large-photo {
    min-height: 560px;

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    background-size: cover;
    background-position: center;

    box-shadow:
        0 30px 80px rgba(20,20,25,.13);
}

.large-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(15,16,20,.5),
            transparent 60%
        );
}

.story-content h2 {
    font-size:
        clamp(38px, 4vw, 57px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.story-content h2 span {
    color: #c8102e;
}

.story-content p {
    margin-top: 22px;

    color: #676b72;

    line-height: 1.85;
}

.story-content .lead {
    color: #24272c;

    font-size: 19px;
    font-weight: 600;
}


.feature-grid {
    display: grid;

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

    gap: 18px;
}

.feature-card {
    min-height: 270px;

    display: flex;
    flex-direction: column;

    padding: 32px;

    border:
        1px solid #e9e9eb;

    border-radius: 25px;

    background: white;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(20,20,25,.10);
}

.feature-card .number {
    color: #c8102e;

    font-size: 11px;
    font-weight: 850;
}

.feature-card h3 {
    margin-top: auto;

    font-size: 23px;

    letter-spacing: -1px;
}

.feature-card p {
    margin-top: 13px;

    color: #73777e;

    line-height: 1.7;

    font-size: 14px;
}


.timeline {
    position: relative;

    display: grid;

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

    gap: 1px;

    overflow: hidden;

    border-radius: 26px;

    background: #dedee1;
}

.timeline-item {
    min-height: 260px;

    padding: 34px;

    background: #17191d;

    color: white;
}

.timeline-item strong {
    display: block;

    color: #e31b3d;

    font-size: 43px;

    letter-spacing: -2px;
}

.timeline-item h3 {
    margin-top: 40px;

    font-size: 20px;
}

.timeline-item p {
    margin-top: 12px;

    color: rgba(255,255,255,.55);

    line-height: 1.7;

    font-size: 13px;
}


/* SERVICES */

.service-page-grid {
    display: grid;

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

    gap: 20px;
}

.service-page-card {
    min-height: 480px;

    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 28px;

    background: #17191d;

    color: white;

    box-shadow:
        0 25px 70px rgba(20,20,25,.12);
}

.service-page-photo {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transition:
        transform .8s ease;
}

.service-page-card:hover
.service-page-photo {
    transform: scale(1.06);
}

.service-page-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10,11,14,.97),
            rgba(10,11,14,.24) 70%
        );
}

.service-page-card-content {
    position: relative;
    z-index: 2;

    margin-top: auto;

    padding: 34px;
}

.service-page-card-content small {
    color: #e31b3d;

    font-weight: 850;

    letter-spacing: 1.5px;
}

.service-page-card-content h3 {
    margin-top: 12px;

    font-size: 30px;

    letter-spacing: -1.5px;
}

.service-page-card-content p {
    margin-top: 13px;

    color: rgba(255,255,255,.59);

    font-size: 13px;

    line-height: 1.7;
}

.service-page-card-content a {
    display: inline-flex;

    margin-top: 25px;

    padding:
        12px 17px;

    border:
        1px solid rgba(255,255,255,.18);

    border-radius: 999px;

    font-size: 12px;
    font-weight: 750;

    transition:
        background .25s ease;
}

.service-page-card-content a:hover {
    background: #c8102e;

    border-color: #c8102e;
}


/* SERVICE DETAIL */

.detail-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;
}

.detail-sidebar {
    position: sticky;

    top: 120px;

    align-self: start;

    padding: 28px;

    border-radius: 24px;

    background: #17191d;

    color: white;
}

.detail-sidebar small {
    color: rgba(255,255,255,.43);

    letter-spacing: 1.8px;

    font-size: 10px;
}

.detail-sidebar h3 {
    margin-top: 10px;

    font-size: 27px;

    letter-spacing: -1px;
}

.detail-sidebar a {
    display: flex;

    justify-content: space-between;

    margin-top: 22px;

    padding:
        14px 16px;

    background: #c8102e;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 750;
}

.detail-content h2 {
    font-size:
        clamp(35px, 4vw, 53px);

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.detail-content > p {
    margin-top: 22px;

    color: #686c73;

    line-height: 1.85;
}

.detail-points {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin-top: 35px;
}

.detail-point {
    padding: 22px;

    border:
        1px solid #e8e8ea;

    border-radius: 18px;
}

.detail-point strong {
    display: block;

    color: #c8102e;

    margin-bottom: 8px;
}

.detail-point p {
    color: #72767d;

    font-size: 13px;

    line-height: 1.65;
}


/* FLEET */

.full-fleet-grid {
    display: grid;

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

    gap: 20px;
}

.full-vehicle {
    min-height: 530px;

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background: #17191d;
}

.full-vehicle-image {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transition:
        transform .8s ease;
}

.full-vehicle:hover
.full-vehicle-image {
    transform: scale(1.07);
}

.full-vehicle-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10,11,14,.95),
            transparent 70%
        );
}

.full-vehicle-info {
    position: absolute;

    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px;

    color: white;
}

.full-vehicle-info small {
    color: rgba(255,255,255,.48);

    font-size: 10px;

    letter-spacing: 1.8px;
}

.full-vehicle-info h3 {
    margin-top: 8px;

    font-size: 25px;

    letter-spacing: -1px;
}


/* GALLERY */

.gallery-grid {
    display: grid;

    grid-template-columns:
        1.25fr .75fr .75fr;

    grid-auto-rows: 280px;

    gap: 14px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 22px;

    background-size: cover;
    background-position: center;

    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        rgba(10,11,14,.05);

    transition:
        background .3s ease;
}

.gallery-item:hover::after {
    background:
        rgba(200,16,46,.15);
}

.gallery-item::before {
    content: "Yılmaz Turizm";

    position: absolute;

    z-index: 2;

    left: 22px;
    bottom: 20px;

    color: white;

    font-size: 12px;
    font-weight: 750;

    opacity: 0;

    transform:
        translateY(10px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}

.gallery-item:hover::before {
    opacity: 1;

    transform:
        translateY(0);
}


/* BLOG */

.article-grid {
    display: grid;

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

    gap: 20px;
}

.article-card {
    overflow: hidden;

    border:
        1px solid #e8e8ea;

    border-radius: 25px;

    background: white;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.article-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 25px 65px rgba(20,20,25,.1);
}

.article-photo {
    height: 240px;

    background-size: cover;
    background-position: center;
}

.article-body {
    padding: 27px;
}

.article-body small {
    color: #c8102e;

    font-weight: 800;

    font-size: 10px;

    letter-spacing: 1.6px;
}

.article-body h3 {
    margin-top: 11px;

    font-size: 22px;

    line-height: 1.2;

    letter-spacing: -1px;
}

.article-body p {
    margin-top: 13px;

    color: #71757c;

    font-size: 13px;

    line-height: 1.7;
}


/* CONTACT */

.contact-page-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;
}

.contact-intro h2 {
    font-size:
        clamp(38px, 4vw, 56px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.contact-intro h2 span {
    color: #c8102e;
}

.contact-intro p {
    margin-top: 20px;

    color: #6e7279;

    line-height: 1.8;
}

.contact-notice {
    margin-top: 30px;

    padding: 22px;

    border-left:
        3px solid #c8102e;

    background: #f7f7f8;

    color: #5e6269;

    font-size: 13px;

    line-height: 1.7;
}

.contact-form {
    padding: 35px;

    border:
        1px solid #e6e6e8;

    border-radius: 28px;

    background: white;

    box-shadow:
        0 25px 70px rgba(20,20,25,.08);
}

.form-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;
}

.form-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 11px;
    font-weight: 750;

    color: #555960;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;

    border:
        1px solid #dedee1;

    border-radius: 15px;

    background: #fafafa;

    padding:
        15px 16px;

    font: inherit;

    outline: none;

    transition:
        border .2s ease,
        box-shadow .2s ease;
}

.form-field textarea {
    min-height: 140px;

    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #c8102e;

    box-shadow:
        0 0 0 4px rgba(200,16,46,.08);
}

.form-submit {
    margin-top: 18px;

    border: 0;

    border-radius: 999px;

    background: #c8102e;

    color: white;

    padding:
        15px 24px;

    font-weight: 750;

    cursor: pointer;
}


@media (max-width: 900px) {

    .two-column,
    .detail-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .feature-grid,
    .service-page-grid,
    .full-fleet-grid,
    .article-grid {
        grid-template-columns:
            1fr 1fr;
    }

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

    .detail-sidebar {
        position: static;
    }

    .gallery-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 650px) {

    .page-hero {
        min-height: 470px;

        padding:
            130px 0 65px;
    }

    .page-title {
        letter-spacing: -2.5px;
    }

    .content-section {
        padding:
            80px 0;
    }

    .feature-grid,
    .service-page-grid,
    .full-fleet-grid,
    .article-grid,
    .detail-points,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field.full {
        grid-column: auto;
    }

    .gallery-grid {
        display: flex;

        flex-direction: column;
    }

    .gallery-item {
        min-height: 300px;
    }

}


/* CONTACT EMAIL VERIFY */

.email-verify-field {
    display: flex;
    gap: 8px;
}

.email-verify-field input {
    flex: 1;
    min-width: 0;
}

.email-verify-button {
    flex: 0 0 auto;

    padding: 0 17px;

    border: 0;
    border-radius: 14px;

    background: #17191d;
    color: white;

    font-size: 11px;
    font-weight: 750;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.email-verify-button:hover {
    background: #c8102e;
    transform: translateY(-1px);
}

.email-status {
    color: #858991;

    font-size: 10px;
    line-height: 1.5;
}

.form-submit:disabled {
    opacity: .45;
    cursor: not-allowed;
}

@media (max-width: 650px) {

    .email-verify-field {
        flex-direction: column;
    }

    .email-verify-button {
        min-height: 46px;
    }

}


/* PREMIUM GALLERY LIGHTBOX */

.gallery-item {
    border: 0;
    padding: 0;

    appearance: none;
    -webkit-appearance: none;

    font: inherit;

    cursor: zoom-in;
}

.gallery-item::after {
    transition:
        background .35s ease,
        backdrop-filter .35s ease;
}

.gallery-item:hover::after {
    background:
        rgba(10, 11, 14, .18);

    backdrop-filter:
        brightness(.92);
}


.lightbox {
    position: fixed;

    z-index: 5000;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 42px 90px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.lightbox.open {
    visibility: visible;
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(6, 7, 9, .88);

    backdrop-filter:
        blur(18px);

    opacity: 0;

    transition:
        opacity .45s ease;
}

.lightbox.open
.lightbox-backdrop {
    opacity: 1;
}


.lightbox-content {
    position: relative;

    z-index: 2;

    width: min(1180px, 100%);

    max-height: calc(100vh - 90px);

    display: flex;
    flex-direction: column;

    transform:
        translateY(24px)
        scale(.94);

    opacity: 0;

    transition:
        transform .48s
        cubic-bezier(.2,.75,.25,1),
        opacity .4s ease;
}

.lightbox.open
.lightbox-content {
    transform:
        translateY(0)
        scale(1);

    opacity: 1;
}


.lightbox-image-wrap {
    position: relative;

    display: flex;

    justify-content: center;
    align-items: center;

    max-height:
        calc(100vh - 180px);

    overflow: hidden;

    border-radius: 24px;

    background: #101114;

    box-shadow:
        0 40px 120px
        rgba(0,0,0,.48);
}

.lightbox-image-wrap img {
    display: block;

    max-width: 100%;
    max-height:
        calc(100vh - 180px);

    width: auto;
    height: auto;

    object-fit: contain;

    user-select: none;

    transform: scale(1.025);

    transition:
        opacity .22s ease,
        transform .45s ease;
}

.lightbox.open
.lightbox-image-wrap img {
    transform: scale(1);
}

.lightbox-image-wrap img.switching {
    opacity: 0;

    transform:
        scale(.975);
}


.lightbox-meta {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding: 18px 5px 0;

    color: white;
}

.lightbox-meta div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.lightbox-meta small {
    color:
        rgba(255,255,255,.42);

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 2px;
}

.lightbox-meta strong {
    font-size: 14px;

    font-weight: 650;
}

.lightbox-meta > span {
    color:
        rgba(255,255,255,.45);

    font-size: 11px;
    font-weight: 700;
}


.lightbox-close {
    position: absolute;

    z-index: 4;

    top: 27px;
    right: 30px;

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border: 1px solid
        rgba(255,255,255,.14);

    border-radius: 50%;

    background:
        rgba(255,255,255,.07);

    color: white;

    font-size: 30px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    backdrop-filter:
        blur(15px);

    transition:
        background .25s ease,
        transform .25s ease;
}

.lightbox-close:hover {
    background: #c8102e;

    border-color: #c8102e;

    transform:
        rotate(5deg)
        scale(1.05);
}


.lightbox-arrow {
    position: absolute;

    z-index: 4;

    top: 50%;

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    transform:
        translateY(-50%);

    border: 1px solid
        rgba(255,255,255,.14);

    border-radius: 50%;

    background:
        rgba(255,255,255,.07);

    color: white;

    font-size: 36px;
    font-weight: 200;

    cursor: pointer;

    backdrop-filter:
        blur(15px);

    transition:
        background .25s ease,
        transform .25s ease;
}

.lightbox-arrow:hover {
    background: #c8102e;

    border-color: #c8102e;

    transform:
        translateY(-50%)
        scale(1.06);
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}


body.lightbox-open {
    overflow: hidden;
}


@media (max-width: 800px) {

    .lightbox {
        padding:
            70px 18px 90px;
    }

    .lightbox-content {
        width: 100%;
    }

    .lightbox-image-wrap {
        max-height:
            calc(100vh - 190px);

        border-radius: 18px;
    }

    .lightbox-image-wrap img {
        max-height:
            calc(100vh - 190px);
    }

    .lightbox-arrow {
        top: auto;
        bottom: 20px;

        width: 46px;
        height: 46px;
    }

    .lightbox-arrow:hover {
        transform:
            scale(1.05);
    }

    .lightbox-prev {
        left:
            calc(50% - 58px);
    }

    .lightbox-next {
        right:
            calc(50% - 58px);
    }

    .lightbox-close {
        top: 16px;
        right: 16px;

        width: 44px;
        height: 44px;
    }

}


/* GALLERY LIGHTBOX V2 - FORCE */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;

    align-items: center;
    justify-content: center;

    padding: 60px 90px;

    opacity: 0;
    visibility: hidden;
}

.lightbox.open {
    display: flex;
    visibility: visible;
}

.lightbox.open.animate-in {
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(5, 6, 8, .90);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}

.lightbox-content {
    position: relative;
    z-index: 3;

    width: min(1200px, 92vw);

    opacity: 0;

    transform:
        translateY(35px)
        scale(.88);

    filter: blur(4px);

    transition:
        opacity .42s ease,
        transform .55s cubic-bezier(.16,.8,.24,1),
        filter .45s ease;
}

.lightbox.animate-in
.lightbox-content {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    filter: blur(0);
}

.lightbox-image-wrap {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    max-height: 78vh;

    overflow: hidden;

    border-radius: 26px;

    background: #111216;

    box-shadow:
        0 50px 140px
        rgba(0,0,0,.65);
}

.lightbox-image-wrap img {
    display: block;

    max-width: 100%;
    max-height: 78vh;

    width: auto;
    height: auto;

    object-fit: contain;

    opacity: 1;

    transform: scale(1);

    transition:
        opacity .18s ease,
        transform .32s ease;
}

.lightbox-image-wrap img.switching {
    opacity: 0;

    transform: scale(.96);
}

.lightbox-arrow,
.lightbox-close {
    z-index: 10;
}

.lightbox-close {
    position: fixed;

    top: 25px;
    right: 30px;
}

.lightbox-prev {
    position: fixed;
    left: 28px;
}

.lightbox-next {
    position: fixed;
    right: 28px;
}

body.lightbox-open {
    overflow: hidden !important;
}


@media (max-width: 800px) {

    .lightbox {
        padding:
            70px 15px 90px;
    }

    .lightbox-content {
        width: 100%;
    }

    .lightbox-image-wrap {
        max-height: 70vh;
    }

    .lightbox-image-wrap img {
        max-height: 70vh;
    }

}


/* REAL PAGE HERO IMAGE - FINAL */

.page-hero {
    --page-image: url("/static/uploads/yilmaz3.png");
}


/* ========================================
   YILMAZ TURIZM - ABOUT PREMIUM V2
   ======================================== */


/* HERO */

.about-v2-hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 155px 0 100px;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #101115 0%,
            #181a1f 55%,
            #202329 100%
        );

    color: white;
}


.about-v2-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .13;

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

    background-size: 75px 75px;
}


.about-v2-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;
}


.about-v2-glow-left {
    width: 480px;
    height: 480px;

    left: -220px;
    bottom: -170px;

    background:
        rgba(200,16,46,.24);
}


.about-v2-glow-right {
    width: 500px;
    height: 500px;

    right: -240px;
    top: -190px;

    background:
        rgba(255,255,255,.07);
}


.about-v2-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(500px, 1.1fr);

    align-items: center;

    gap: 90px;
}


.about-v2-kicker {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 27px;

    color:
        rgba(255,255,255,.52);

    font-size: 11px;
    font-weight: 850;

    letter-spacing: 2.3px;
}


.about-v2-kicker span {
    width: 36px;
    height: 2px;

    background: #e20e35;
}


.about-v2-hero-copy h1 {
    max-width: 650px;

    font-size:
        clamp(55px, 6vw, 86px);

    line-height: .96;

    letter-spacing: -5px;
}


.about-v2-hero-copy h1 span {
    display: block;

    color: #e20e35;
}


.about-v2-hero-lead {
    max-width: 610px;

    margin-top: 30px;

    color:
        rgba(255,255,255,.63);

    font-size: 17px;

    line-height: 1.8;
}


.about-v2-hero-points {
    display: flex;

    gap: 38px;

    margin-top: 48px;
}


.about-v2-hero-points > div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.about-v2-hero-points strong {
    color: white;

    font-size: 17px;
}


.about-v2-hero-points span {
    color:
        rgba(255,255,255,.38);

    font-size: 10px;
}


/* HERO COLLAGE */

.about-v2-visual {
    position: relative;

    min-height: 550px;
}


.about-v2-main-photo {
    position: absolute;

    top: 0;
    right: 0;

    width: 82%;
    height: 500px;

    overflow: hidden;

    border-radius: 30px;

    border:
        1px solid rgba(255,255,255,.14);

    box-shadow:
        0 45px 120px rgba(0,0,0,.34);
}


.about-v2-main-photo img,
.about-v2-small-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(.2,.65,.3,1);
}


.about-v2-main-photo:hover img,
.about-v2-small-photo:hover img {
    transform: scale(1.055);
}


.about-v2-small-photo {
    position: absolute;

    z-index: 3;

    width: 230px;
    height: 190px;

    left: 0;
    bottom: 0;

    overflow: hidden;

    border:
        8px solid #17191d;

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.40);
}


.about-v2-since-card {
    position: absolute;

    z-index: 4;

    right: -18px;
    bottom: 15px;

    width: 175px;
    height: 175px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d70d31;

    color: white;

    box-shadow:
        0 25px 70px rgba(200,16,46,.32);

    animation:
        aboutFloat 4.5s
        ease-in-out infinite;
}


.about-v2-since-card small {
    font-size: 8px;
    font-weight: 850;

    letter-spacing: 1.5px;

    opacity: .7;
}


.about-v2-since-card strong {
    margin-top: 4px;

    font-size: 37px;

    letter-spacing: -2px;
}


.about-v2-since-card span {
    margin-top: -2px;

    font-size: 10px;

    opacity: .7;
}


/* STORY */

.about-v2-story {
    padding: 125px 0;

    background: white;
}


.about-v2-story-grid {
    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 100px;

    align-items: center;
}


.about-v2-story-photo {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 30px 90px rgba(17,18,22,.12);
}


.about-v2-story-photo > img {
    width: 100%;
    height: 620px;

    display: block;

    object-fit: cover;

    transition:
        transform 1s ease;
}


.about-v2-story-photo:hover > img {
    transform: scale(1.045);
}


.about-v2-story-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(11,12,15,.72),
            transparent 55%
        );
}


.about-v2-photo-label {
    position: absolute;

    z-index: 3;

    left: 32px;
    bottom: 31px;

    display: flex;
    align-items: center;

    gap: 15px;

    color: white;
}


.about-v2-photo-label > span {
    width: 4px;
    height: 43px;

    background: #e20e35;

    border-radius: 5px;
}


.about-v2-photo-label div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.about-v2-photo-label small {
    color:
        rgba(255,255,255,.48);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


.about-v2-photo-label strong {
    font-size: 15px;
}


.about-v2-section-label {
    color: #d70d31;

    font-size: 10px;
    font-weight: 850;

    letter-spacing: 2.2px;
}


.about-v2-story-copy h2 {
    margin-top: 17px;

    font-size:
        clamp(42px, 4vw, 61px);

    line-height: 1.02;

    letter-spacing: -3.5px;
}


.about-v2-story-copy h2 span {
    display: block;

    color: #d70d31;
}


.about-v2-story-copy p {
    margin-top: 20px;

    color: #686c73;

    line-height: 1.85;

    font-size: 15px;
}


.about-v2-story-copy
.about-v2-story-lead {
    margin-top: 30px;

    color: #202329;

    font-size: 19px;
    font-weight: 650;

    line-height: 1.65;
}


.about-v2-text-link {
    display: inline-flex;
    align-items: center;

    gap: 18px;

    margin-top: 34px;

    padding-bottom: 7px;

    border-bottom:
        1px solid rgba(200,16,46,.4);

    color: #c8102e;

    font-size: 13px;
    font-weight: 750;

    transition:
        gap .25s ease;
}


.about-v2-text-link:hover {
    gap: 26px;
}


/* VALUES */

.about-v2-values {
    padding: 120px 0;

    background: #f5f5f6;
}


.about-v2-heading {
    display: grid;

    grid-template-columns:
        1.15fr .65fr;

    align-items: end;

    gap: 90px;

    margin-bottom: 55px;
}


.about-v2-heading h2 {
    margin-top: 15px;

    max-width: 680px;

    font-size:
        clamp(40px, 4vw, 59px);

    line-height: 1.03;

    letter-spacing: -3px;
}


.about-v2-heading h2 span {
    color: #d70d31;
}


.about-v2-heading > p {
    color: #6d7178;

    line-height: 1.8;

    font-size: 14px;
}


.about-v2-value-grid {
    display: grid;

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

    gap: 17px;
}


.about-v2-value-card {
    min-height: 350px;

    display: flex;
    flex-direction: column;

    padding: 31px;

    overflow: hidden;

    border:
        1px solid #e4e4e6;

    border-radius: 26px;

    background: white;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.about-v2-value-card:hover {
    transform: translateY(-9px);

    box-shadow:
        0 30px 70px rgba(17,18,22,.10);
}


.about-v2-value-card.featured {
    background: #181a1f;

    color: white;
}


.about-v2-value-top {
    display: flex;

    align-items: center;
    justify-content: space-between;
}


.about-v2-value-number {
    color: #aaaeb4;

    font-size: 10px;
    font-weight: 800;
}


.about-v2-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    background:
        rgba(200,16,46,.08);

    color: #c8102e;
}


.about-v2-value-card.featured
.about-v2-icon {
    background:
        rgba(255,255,255,.08);

    color: #ef2448;
}


.about-v2-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.about-v2-value-content {
    margin-top: auto;
}


.about-v2-value-content h3 {
    font-size: 26px;

    letter-spacing: -1.3px;
}


.about-v2-value-content p {
    margin-top: 13px;

    color: #73777e;

    font-size: 13px;

    line-height: 1.75;
}


.about-v2-value-card.featured
.about-v2-value-content p {
    color:
        rgba(255,255,255,.52);
}


/* HISTORY */

.about-v2-history {
    padding: 120px 0 135px;

    overflow: hidden;

    background: #15171b;

    color: white;
}


.about-v2-section-label.light {
    color:
        rgba(255,255,255,.38);
}


.about-v2-history-header h2 {
    margin-top: 15px;

    max-width: 720px;

    font-size:
        clamp(42px, 5vw, 67px);

    line-height: 1;

    letter-spacing: -3.8px;
}


.about-v2-history-header h2 span {
    color: #e20e35;
}


.about-v2-timeline {
    position: relative;

    display: grid;

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

    gap: 55px;

    margin-top: 80px;
}


.about-v2-line {
    position: absolute;

    left: 5px;
    right: 5px;
    top: 8px;

    height: 1px;

    background:
        rgba(255,255,255,.13);
}


.about-v2-time-item {
    position: relative;

    padding-top: 43px;
}


.about-v2-time-dot {
    position: absolute;

    z-index: 2;

    left: 0;
    top: 1px;

    width: 15px;
    height: 15px;

    border:
        4px solid #15171b;

    border-radius: 50%;

    background: #666a71;

    box-shadow:
        0 0 0 1px
        rgba(255,255,255,.18);
}


.about-v2-time-item.active
.about-v2-time-dot {
    background: #e20e35;

    box-shadow:
        0 0 0 7px
        rgba(226,14,53,.10);
}


.about-v2-time-item > strong {
    color: #e20e35;

    font-size: 29px;

    letter-spacing: -1.5px;
}


.about-v2-time-item h3 {
    margin-top: 15px;

    font-size: 18px;
}


.about-v2-time-item p {
    max-width: 280px;

    margin-top: 10px;

    color:
        rgba(255,255,255,.43);

    font-size: 12px;

    line-height: 1.7;
}


/* CTA */

.about-v2-cta {
    padding: 90px 0;

    background: white;
}


.about-v2-cta-box {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 55px 60px;

    overflow: hidden;

    border-radius: 30px;

    background: #d70d31;

    color: white;

    box-shadow:
        0 35px 90px rgba(200,16,46,.20);
}


.about-v2-cta-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -100px;
    top: -180px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 50%;
}


.about-v2-cta-box small {
    color:
        rgba(255,255,255,.6);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


.about-v2-cta-box h2 {
    margin-top: 10px;

    max-width: 660px;

    font-size:
        clamp(31px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}


.about-v2-cta-box h2 span {
    color:
        rgba(255,255,255,.65);
}


.about-v2-cta-box > a {
    position: relative;
    z-index: 2;

    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 17px 23px;

    border-radius: 999px;

    background: white;

    color: #17191d;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 15px 40px rgba(0,0,0,.14);

    transition:
        transform .25s ease,
        gap .25s ease;
}


.about-v2-cta-box > a:hover {
    gap: 25px;

    transform:
        translateY(-3px);
}


@keyframes aboutFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .about-v2-hero-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .about-v2-hero-copy {
        max-width: 760px;
    }

    .about-v2-visual {
        width: min(700px, 100%);

        margin: 0 auto;
    }

    .about-v2-story-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .about-v2-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

}


@media (max-width: 760px) {

    .about-v2-hero {
        padding:
            125px 0 75px;

        min-height: auto;
    }

    .about-v2-hero-grid {
        gap: 50px;
    }

    .about-v2-hero-copy h1 {
        letter-spacing: -3px;
    }

    .about-v2-hero-points {
        gap: 20px;

        justify-content:
            space-between;
    }

    .about-v2-hero-points strong {
        font-size: 14px;
    }

    .about-v2-visual {
        min-height: 430px;
    }

    .about-v2-main-photo {
        width: 92%;
        height: 385px;
    }

    .about-v2-small-photo {
        width: 155px;
        height: 125px;
    }

    .about-v2-since-card {
        width: 125px;
        height: 125px;

        right: 0;
    }

    .about-v2-since-card strong {
        font-size: 28px;
    }

    .about-v2-story {
        padding: 80px 0;
    }

    .about-v2-story-photo {
        min-height: 430px;
    }

    .about-v2-story-photo > img {
        height: 430px;
    }

    .about-v2-values,
    .about-v2-history {
        padding:
            80px 0;
    }

    .about-v2-value-grid {
        grid-template-columns: 1fr;
    }

    .about-v2-value-card {
        min-height: 280px;
    }

    .about-v2-timeline {
        grid-template-columns: 1fr;

        gap: 42px;

        margin-top: 55px;
    }

    .about-v2-line {
        width: 1px;

        height: auto;

        top: 4px;
        bottom: 4px;

        left: 7px;
    }

    .about-v2-time-item {
        padding:
            0 0 0 42px;
    }

    .about-v2-time-dot {
        left: 0;
        top: 7px;
    }

    .about-v2-cta {
        padding: 60px 0;
    }

    .about-v2-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 38px 30px;

        gap: 35px;
    }

}


/* ==================================
   ABOUT PHOTO VALUE CARDS
   ================================== */

.about-photo-values {
    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.about-photo-value-card {
    position: relative;

    min-height: 500px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border:
        1px solid #e4e4e6;

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 20px 60px
        rgba(20,20,25,.06);

    transition:
        transform .4s
        cubic-bezier(.2,.65,.3,1),
        box-shadow .4s ease;
}


.about-photo-value-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        0 35px 85px
        rgba(20,20,25,.13);
}


/* IMAGE */

.about-photo-value-image {
    position: relative;

    height: 300px;

    overflow: hidden;

    background: #17191d;
}


.about-photo-value-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(15,16,20,.45),
            transparent 60%
        );

    pointer-events: none;
}


.about-photo-value-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .9s
        cubic-bezier(.2,.65,.3,1);
}


.about-photo-value-card:hover
.about-photo-value-image img {
    transform:
        scale(1.07);
}


/* NUMBER */

.about-photo-value-number {
    position: absolute;

    z-index: 3;

    top: 20px;
    left: 20px;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.22);

    border-radius: 50%;

    background:
        rgba(18,19,23,.56);

    backdrop-filter:
        blur(12px);

    color: white;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* TEXT */

.about-photo-value-content {
    min-height: 200px;

    display: flex;
    flex-direction: column;

    padding:
        27px 30px 31px;
}


.about-photo-value-content small {
    color: #c8102e;

    font-size: 8px;
    font-weight: 850;

    letter-spacing: 1.8px;
}


.about-photo-value-content h3 {
    margin-top: 10px;

    font-size: 28px;

    line-height: 1;

    letter-spacing: -1.5px;
}


.about-photo-value-content p {
    margin-top: 15px;

    color: #73777e;

    font-size: 13px;

    line-height: 1.75;
}


/* FEATURED CENTER CARD */

.about-photo-value-card.featured {
    background: #181a1f;

    border-color: #181a1f;

    color: white;
}


.about-photo-value-card.featured
.about-photo-value-content small {
    color: #ef2448;
}


.about-photo-value-card.featured
.about-photo-value-content p {
    color:
        rgba(255,255,255,.52);
}


/* SMALL RED LINE */

.about-photo-value-content::after {
    content: "";

    width: 34px;
    height: 2px;

    margin-top: auto;

    background: #d70d31;

    transition:
        width .35s ease;
}


.about-photo-value-card:hover
.about-photo-value-content::after {
    width: 65px;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .about-photo-values {
        grid-template-columns:
            1fr 1fr;
    }

    .about-photo-value-card:last-child {
        grid-column:
            1 / -1;
    }

}


@media (max-width: 650px) {

    .about-photo-values {
        grid-template-columns:
            1fr;
    }

    .about-photo-value-card,
    .about-photo-value-card:last-child {
        grid-column: auto;

        min-height: 440px;
    }

    .about-photo-value-image {
        height: 255px;
    }

}
