/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111213;
    color: #f4f2ed;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: calc(100% - 60px);
    max-width: 1500px;
    min-height: calc(100vh - 60px);

    margin: 30px auto;
    padding: 150px 60px 90px;

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

    overflow: hidden;

    border-radius: 55px;
    border: 1px solid rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.20),
            rgba(0, 0, 0, 0.38)
        ),
        url("hero-bg.jpg");

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

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


/* =========================================================
   HEADER
========================================================= */

.header {
    position: absolute;

    top: 42px;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 220px);

    z-index: 20;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    width: 100%;

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

    overflow: hidden;

    border-radius: 100px;

    background: rgba(248, 247, 243, 0.96);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.navigation a {
    height: 58px;

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

    padding: 0 8px;

    color: #161616;

    text-decoration: none;
    text-align: center;

    font-size: 14px;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.navigation a:hover {
    color: #b9161c;
    background: rgba(185, 22, 28, 0.04);
}


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

.hero-content {
    position: relative;
    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.hero-logo {
    width: 190px;
    height: 190px;

    object-fit: contain;

    margin-bottom: 30px;

    filter: brightness(0) invert(1);
}

.hero h1 {
    color: #f5f3ee;

    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;

    line-height: 1;

    letter-spacing: 13px;

    margin-left: 13px;
}

.hero-subtitle {
    margin-top: 20px;
    margin-left: 8px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;

    letter-spacing: 8px;
}

.hero-button {
    min-width: 225px;
    min-height: 60px;

    margin-top: 45px;
    padding: 15px 35px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 100px;

    background: #b9161c;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    background: #d51d24;
}


/* =========================================================
   HERO LOCATION
========================================================= */

.hero-location {
    position: absolute;

    bottom: 45px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    width: 100%;

    text-align: center;

    color: rgba(255, 255, 255, 0.48);

    font-size: 10px;

    letter-spacing: 4px;
}

.hero-location span {
    margin: 0 12px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 120px 7%;
}

.section-heading {
    max-width: 850px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-label {
    margin-bottom: 17px;

    color: #c41b21;

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

    letter-spacing: 3px;
}

.section-heading h2 {
    color: #f3f1ec;

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

    line-height: 1.05;
}

.section-description {
    max-width: 700px;

    margin: 25px auto 0;

    color: #8a8a8a;

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


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

.about {
    background: #111213;
}

.about-grid {
    max-width: 1200px;

    margin: 0 auto;

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

    gap: 22px;
}

.about-card {
    min-height: 300px;

    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    border-radius: 28px;

    background: #1a1b1c;

    border: 1px solid #292a2b;
}

.about-card > span {
    margin-bottom: auto;

    color: #c41b21;

    font-size: 11px;
}

.about-card h3 {
    margin-bottom: 12px;

    font-size: 22px;
    font-weight: 500;
}

.about-card p {
    color: #858585;

    font-size: 14px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #0d0e0f;
}

.services-grid {
    max-width: 1200px;

    margin: 0 auto;

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

    border-top: 1px solid #292a2b;
    border-left: 1px solid #292a2b;
}

.service {
    min-height: 230px;

    padding: 32px;

    border-right: 1px solid #292a2b;
    border-bottom: 1px solid #292a2b;
}

.service span {
    color: #c41b21;

    font-size: 11px;
}

.service h3 {
    margin-top: 50px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 500;
}

.service p {
    margin-top: 12px;

    color: #808080;

    font-size: 14px;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio {
    background: #111213;
    overflow: hidden;

    padding-top: 95px;
    padding-bottom: 105px;
}

.portfolio-heading {
    margin-bottom: 45px;
}

.portfolio-heading .section-label {
    margin-bottom: 0;
}
/* Smaller portfolio heading */

.portfolio .section-heading {
    margin-bottom: 45px;
}

.portfolio .section-heading h2 {
    font-size: clamp(42px, 4.5vw, 62px);
}


/* =========================================================
   SLIDER
========================================================= */

.portfolio-slider {
    position: relative;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 18px;
}


/* Visible window */

.portfolio-viewport {
    width: 100%;

    overflow: hidden;
}


/* Moving row */

.portfolio-track {
    display: flex;

    gap: 16px;

    transition:
        transform 0.65s
        cubic-bezier(0.22, 0.61, 0.36, 1);

    will-change: transform;
}


/* =========================================================
   PHOTOS
========================================================= */

.portfolio-slide {
    flex: 0 0 calc((100% - 32px) / 3);

    height: 285px;

    overflow: hidden;

    border-radius: 22px;

    background: #18191a;

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

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


.portfolio-slide:hover {
    transform: translateY(-4px);

    border-color:
        rgba(185, 22, 28, 0.45);
}


.portfolio-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   ARROWS
========================================================= */

.portfolio-arrow {
    flex-shrink: 0;

    width: 50px;
    height: 50px;

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

    padding: 0;

    border-radius: 50%;

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

    background:
        rgba(20, 21, 22, 0.96);

    color: #f4f2ed;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        color 0.25s ease;
}


.portfolio-arrow:hover {
    background: #b9161c;

    border-color: #b9161c;

    color: #ffffff;

    transform: scale(1.06);
}


/* =========================================================
   COUNTER
========================================================= */

.portfolio-progress {
    margin-top: 24px;

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

    gap: 12px;

    color: #666666;

    font-size: 10px;

    letter-spacing: 2px;
}


#portfolioCurrent {
    color: #c41b21;
}


.portfolio-progress-line {
    width: 45px;
    height: 1px;

    background: #3b3b3b;
}


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

@media (max-width: 1000px) {

    .portfolio-slider {
        max-width: 900px;
    }


    .portfolio-slide {
        flex: 0 0 calc((100% - 16px) / 2);

        height: 300px;
    }

}


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

@media (max-width: 700px) {

    .portfolio {
        padding-top: 75px;
        padding-bottom: 85px;
    }


    .portfolio .section-heading {
        margin-bottom: 35px;
    }


    .portfolio .section-heading h2 {
        font-size: 38px;
    }


    .portfolio-slider {
        gap: 0;
    }


    .portfolio-track {
        gap: 12px;
    }


    .portfolio-slide {
        flex: 0 0 82%;

        height: 285px;

        border-radius: 20px;
    }


    .portfolio-arrow {
        position: absolute;

        z-index: 20;

        width: 42px;
        height: 42px;

        background:
            rgba(15, 16, 17, 0.88);

        backdrop-filter: blur(10px);

        font-size: 17px;
    }


    .portfolio-prev {
        left: 8px;
    }


    .portfolio-next {
        right: 8px;
    }

}


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

@media (max-width: 430px) {

    .portfolio-slide {
        flex: 0 0 86%;

        height: 265px;
    }

}

/* =========================================================
   PORTFOLIO ARROWS
========================================================= */

.portfolio-arrow {
    flex-shrink: 0;

    width: 54px;
    height: 54px;

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

    border-radius: 50%;

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

    background: #191a1b;

    color: #f4f2ed;

    font-size: 21px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.portfolio-arrow:hover {
    background: #b9161c;
    border-color: #b9161c;

    transform: scale(1.07);
}


/* =========================================================
   PORTFOLIO COUNTER
========================================================= */

.portfolio-progress {
    margin-top: 28px;

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

    gap: 14px;

    color: #666666;

    font-size: 10px;

    letter-spacing: 2px;
}

#portfolioCurrent {
    color: #c41b21;
}

.portfolio-progress-line {
    width: 55px;
    height: 1px;

    background: #3b3b3b;
}

/* =========================================================
   CERTIFICATIONS
========================================================= */

.certifications {
    background: #0d0e0f;

    padding-top: 100px;
    padding-bottom: 110px;
}


.certification-heading {
    margin-bottom: 48px;
}


/* ---------- GRID ---------- */

.certification-grid {
    width: 100%;
    max-width: 920px;

    margin: 0 auto;

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

    gap: 22px;
}


/* =========================================================
   CERTIFICATION CARD
========================================================= */

.certification-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            #191a1b,
            #131415
        );

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

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.18);

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


.certification-card:hover {
    transform: translateY(-6px);

    border-color: rgba(190, 24, 31, 0.55);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.30);
}


/* RED DETAIL */

.certification-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;

    width: 48px;
    height: 3px;

    background: #b9161c;
}


/* =========================================================
   TOP
========================================================= */

.certification-top {
    width: 100%;

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


.certification-number {
    color: #666666;

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

    letter-spacing: 2px;
}


.certification-brand {
    color: #c91c23;

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

    letter-spacing: -1px;
}


/* =========================================================
   CERTIFICATION TEXT
========================================================= */

.certification-main {
    margin-top: 60px;
}


.certification-main h3 {
    max-width: 330px;

    margin: 0;

    color: #f4f2ed;

    font-size: 27px;
    font-weight: 500;

    line-height: 1.12;
}


.certification-main p {
    margin-top: 10px;

    color: #848484;

    font-size: 14px;
}


/* =========================================================
   VIEW CERTIFICATE BUTTON
========================================================= */

.certificate-button {
    width: 100%;
    min-height: 52px;

    margin-top: auto;
    padding: 0 18px;

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

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;

    color: #f4f2ed;

    font-family: inherit;
    font-size: 12px;
    font-weight: 500;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


.certificate-arrow {
    width: 30px;
    height: 30px;

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

    border-radius: 50%;

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

    color: #aaaaaa;

    font-size: 14px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.certificate-button:hover {
    background: #b9161c;

    border-color: #b9161c;

    color: #ffffff;
}


.certificate-button:hover .certificate-arrow {
    background: rgba(255, 255, 255, 0.14);

    color: #ffffff;

    transform: translate(2px, -2px);
}


/* =========================================================
   CERTIFICATE POPUP
========================================================= */

.certificate-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

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

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.certificate-modal.is-open {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}


/* DARK BLURRED BACKGROUND */

.certificate-modal-backdrop {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.84);

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


/* POPUP WINDOW */

.certificate-modal-window {
    position: relative;

    z-index: 2;

    width: min(1050px, 92vw);
    max-height: 88vh;

    padding: 16px;

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

    background: #151617;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.65);

    transform: scale(0.96);

    transition:
        transform 0.25s ease;
}


.certificate-modal.is-open
.certificate-modal-window {
    transform: scale(1);
}


/* CERTIFICATE IMAGE */

.certificate-modal-window img {
    display: block;

    width: 100%;
    height: auto;

    max-height: calc(88vh - 32px);

    object-fit: contain;

    border-radius: 18px;
}


/* CLOSE BUTTON */

.certificate-modal-close {
    position: absolute;

    top: -18px;
    right: -18px;

    z-index: 3;

    width: 46px;
    height: 46px;

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

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: #171819;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 29px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.40);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.certificate-modal-close:hover {
    background: #b9161c;

    transform: scale(1.07);
}


/* DISABLE PAGE SCROLL */

body.modal-open {
    overflow: hidden;
}


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

@media (max-width: 700px) {

    .certifications {
        padding-top: 80px;
        padding-bottom: 85px;
    }


    .certification-grid {
        max-width: 390px;

        grid-template-columns: 1fr;

        gap: 16px;
    }


    .certification-card {
        min-height: 280px;

        padding: 25px;

        border-radius: 23px;
    }


    .certification-card::before {
        left: 25px;
    }


    .certification-main {
        margin-top: 48px;
    }


    .certification-main h3 {
        font-size: 23px;
    }


    .certificate-button {
        min-height: 50px;

        margin-top: 35px;
    }


    /* POPUP MOBILE */

    .certificate-modal {
        padding: 12px;
    }


    .certificate-modal-window {
        width: 100%;

        max-height: 90vh;

        padding: 8px;

        border-radius: 20px;
    }


    .certificate-modal-window img {
        max-height: calc(90vh - 16px);

        border-radius: 14px;
    }


    .certificate-modal-close {
        top: 8px;
        right: 8px;

        width: 40px;
        height: 40px;

        background: rgba(15, 16, 17, 0.92);

        font-size: 25px;
    }

} 
/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 65px 20px 40px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.footer img {
    width: 60px;

    margin-bottom: 15px;

    filter: brightness(0) invert(1);
}

.footer strong {
    letter-spacing: 4px;
}

.footer span {
    margin-top: 5px;

    color: #777;

    font-size: 7px;

    letter-spacing: 3px;
}

.footer p {
    margin-top: 22px;

    color: #666;

    font-size: 11px;
}

.footer small {
    margin-top: 7px;

    color: #444;
}


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

@media (max-width: 1000px) {

    .header {
        width: calc(100% - 100px);
    }

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

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

    .portfolio-slide {
        flex: 0 0 calc((100% - 18px) / 2);

        height: 320px;
    }
}


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

@media (max-width: 700px) {

    .hero {
        width: calc(100% - 14px);

        min-height: calc(100svh - 14px);

        margin: 7px auto;

        padding: 110px 18px 80px;

        border-radius: 28px;
    }


    .header {
        top: 18px;

        width: calc(100% - 24px);
    }


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

    .navigation a {
        height: 44px;

        padding: 0 2px;

        font-size: 8px;

        white-space: nowrap;
    }


    .hero-logo {
        width: 125px;
        height: 125px;
    }

    .hero h1 {
        font-size: 30px;

        letter-spacing: 6px;

        margin-left: 6px;
    }

    .hero-subtitle {
        margin-top: 14px;

        font-size: 7px;

        letter-spacing: 3px;
    }

    .hero-button {
        min-width: 180px;
        min-height: 52px;

        margin-top: 32px;

        font-size: 14px;
    }

    .hero-location {
        bottom: 22px;

        font-size: 6px;

        letter-spacing: 1.3px;

        white-space: nowrap;
    }

    .hero-location span {
        margin: 0 5px;
    }


    .section {
        padding: 85px 22px;
    }

    .section-heading h2 {
        font-size: 39px;
    }

    .section-description {
        font-size: 14px;
    }


    .about-grid,
    .services-grid,
    .certification-grid {
        grid-template-columns: 1fr;
    }


    /* PORTFOLIO */

    .portfolio-slider {
        gap: 0;
    }

    .portfolio-track {
        gap: 14px;
    }

    .portfolio-slide {
        flex: 0 0 86%;

        height: 300px;

        border-radius: 20px;
    }

    .portfolio-arrow {
        position: absolute;

        z-index: 20;

        width: 44px;
        height: 44px;

        background: rgba(17, 18, 19, 0.92);
    }

    .portfolio-prev {
        left: 8px;
    }

    .portfolio-next {
        right: 8px;
    }


    .contact-section {
        width: calc(100% - 14px);

        margin: 7px auto;

        padding: 80px 22px;

        border-radius: 28px;
    }

    .contact-content h2 {
        font-size: 42px;
    }
}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 430px) {

    .navigation a {
        font-size: 7px;
    }

    .portfolio-slide {
        flex: 0 0 88%;
        height: 280px;
    }
}

/* ========================================
   HERO — ESTIMATE & SERVICE AREA
======================================== */


/* FREE ESTIMATE — directly under Contact Us */

.hero-estimate {
    max-width: 430px;

    margin: 16px auto 0;

    color: #b9161c;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;

    letter-spacing: 0.2px;

    text-align: center;
}


/* LOCATION / SERVICE AREA */

.hero-location {
    color: rgba(255, 255, 255, 0.52);

    font-size: 10px;
    font-weight: 500;
    line-height: 1.6;

    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.hero-location span {
    margin: 0 14px;

    color: rgba(255, 255, 255, 0.32);
}


/* MOBILE */

@media (max-width: 700px) {

    .hero-estimate {
        max-width: 290px;

        margin-top: 14px;

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

    .hero-location {
        max-width: 340px;

        font-size: 9px;
        line-height: 1.9;

        letter-spacing: 1.8px;
    }

    .hero-location span {
        margin: 0 6px;
    }
}

/* =========================================================
   ABOUT — FINAL
========================================================= */

.about {
    background: #111213;
}


/* ---------- HEADING ---------- */

.about .about-heading {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 65px;

    text-align: center;
}

.about .about-heading h2 {
    max-width: 950px;

    margin-left: auto;
    margin-right: auto;

    color: #f4f2ed;

    font-size: clamp(48px, 5.5vw, 82px);
    font-weight: 400;
    line-height: 1.03;

    letter-spacing: -2.5px;
}

.about .section-description {
    max-width: 850px;

    margin: 32px auto 0;

    color: rgba(244, 242, 237, 0.52);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   ABOUT CARDS
========================================================= */

.about .about-grid {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto;

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

    gap: 24px;
}


.about .about-card {
    position: relative;

    min-height: 330px;

    padding: 34px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            #1a1b1c,
            #171819
        );

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 30px;

    overflow: hidden;

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


/* Red detail */

.about .about-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 34px;

    width: 44px;
    height: 3px;

    background: #b9161c;
}


/* Hover */

.about .about-card:hover {
    transform: translateY(-5px);

    border-color: rgba(185, 22, 28, 0.45);
}


/* Number */

.about .about-number {
    color: #b9161c;

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

    letter-spacing: 1.5px;
}


/* Main content */

.about-card-content {
    margin-top: auto;
}


.about .about-card h3 {
    margin: 0 0 16px;

    color: #f4f2ed;

    font-size: 32px;
    font-weight: 500;

    line-height: 1.08;
    letter-spacing: -0.8px;
}


.about .about-card p {
    margin: 0;

    color: rgba(244, 242, 237, 0.48);

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

    line-height: 1.5;
}


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

@media (max-width: 1000px) {

    .about .about-grid {
        max-width: 650px;

        grid-template-columns: 1fr;
    }

    .about .about-card {
        min-height: 260px;
    }

}


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

@media (max-width: 700px) {

    .about .about-heading {
        margin-bottom: 42px;
    }


    .about .about-heading h2 {
        font-size: 40px;
        line-height: 1.05;

        letter-spacing: -1.5px;
    }


    .about .section-description {
        margin-top: 24px;

        font-size: 14px;
        line-height: 1.7;
    }


    .about .about-grid {
        gap: 15px;
    }


    .about .about-card {
        min-height: 240px;

        padding: 26px;

        border-radius: 24px;
    }


    .about .about-card::before {
        left: 26px;
    }


    .about .about-card h3 {
        font-size: 28px;
    }


    .about .about-card p {
        font-size: 12px;
    }

}

/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: #0d0e0f;
    padding-top: 130px;
    padding-bottom: 130px;
}

.contact-layout {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;

    align-items: start;
}


/* LEFT SIDE */

.contact-heading h2 {
    margin: 0;

    color: #f4f2ed;

    font-size: clamp(54px, 6vw, 88px);
    font-weight: 400;
    line-height: 0.98;

    letter-spacing: -3px;
}

.contact-intro {
    max-width: 500px;

    margin: 30px 0 0;

    color: rgba(244, 242, 237, 0.48);

    font-size: 15px;
    line-height: 1.75;
}


/* FORM */

.contact-form {
    padding: 42px;

    background: #151617;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 30px;
}

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;

    color: rgba(244, 242, 237, 0.70);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.form-field label span {
    color: rgba(244, 242, 237, 0.28);

    font-size: 9px;
    font-weight: 500;
}

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

    box-sizing: border-box;

    padding: 16px 0;

    background: transparent;

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

    border-radius: 0;

    outline: none;

    color: #f4f2ed;

    font-family: inherit;
    font-size: 16px;
    font-weight: 400;

    transition: border-color 0.25s ease;
}

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

    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(244, 242, 237, 0.24);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #b9161c;
}


/* BUTTON */

.contact-submit {
    width: 100%;

    margin-top: 10px;

    padding: 18px 22px;

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

    border: none;
    border-radius: 100px;

    background: #b9161c;

    color: #ffffff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.7px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);

    background: #d01b22;
}

.contact-submit-arrow {
    font-size: 17px;
}


/* TABLET */

@media (max-width: 1000px) {

    .contact-layout {
        max-width: 700px;

        grid-template-columns: 1fr;

        gap: 60px;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .contact {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .contact-layout {
        gap: 40px;
    }

    .contact-heading h2 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .contact-intro {
        margin-top: 22px;

        font-size: 14px;
    }

    .contact-form {
        padding: 28px 22px;

        border-radius: 24px;
    }

    .form-field {
        margin-bottom: 24px;
    }

}
