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

:root {
    --yellow: #ed2b32;
    --yellow-dark: #b91c24;
    --black: #080a0c;
    --black-2: #0d1013;
    --black-3: #14181c;
    --text: #ffffff;
    --muted: #9da3a8;
    --line: rgba(255,255,255,.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--black);
    color: var(--text);
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

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

.container {
    width: min(1380px, 91%);
    margin: auto;
}


/* =========================
NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: 100px;

    background:
        linear-gradient(
            180deg,
            rgba(5,6,7,.99),
            rgba(5,6,7,.96)
        );

    border-bottom: 1px solid rgba(237,43,50,.20);
}

.nav-wrap {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 30px;
}

.brand {
    min-width: 360px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.brand-mark {
    width: 68px;
    height: 68px;

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

    overflow: hidden;

    background: transparent;
}

.brand-mark img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text b {
    color: #fff;

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

    line-height: 1;

    letter-spacing: .4px;
}

.brand-text b span {
    color: var(--yellow);
}

.brand-text small {
    margin-top: 7px;

    color: var(--yellow);

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

    letter-spacing: .8px;
}

nav {
    flex: 1;

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

    gap: 34px;
}

nav a {
    position: relative;

    padding: 39px 0 35px;

    color: #e2e2e2;

    font-size: 14px;
    font-weight: 700;

    transition: .2s;
}

nav a:hover,
nav a.active {
    color: var(--yellow);
}

nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 19px;

    height: 3px;

    background: var(--yellow);
}

.nav-whatsapp {
    min-width: 255px;
    min-height: 62px;

    padding: 0 18px;

    display: flex;
    align-items: center;

    gap: 12px;

    background: var(--yellow);
    color: #111;

    border-radius: 15px;

    font-weight: 800;
}

.nav-whatsapp .wa-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 2px solid #111;
    border-radius: 50%;

    font-size: 18px;
}

.nav-whatsapp small,
.nav-whatsapp strong {
    display: block;
}

.nav-whatsapp small {
    font-size: 10px;
}

.nav-whatsapp strong {
    margin-top: 2px;

    font-size: 16px;
}

.nav-whatsapp > b {
    margin-left: auto;

    font-size: 22px;
}

.menu-btn {
    display: none;

    margin-left: auto;

    background: transparent;

    border: 0;

    color: #fff;

    font-size: 28px;

    cursor: pointer;
}


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

.hero {
    position: relative;

    min-height: 810px;

    padding-top: 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 24% 78%,
            rgba(237,43,50,.12),
            transparent 23%
        ),
        linear-gradient(
            135deg,
            #080a0c,
            #0d1115 60%,
            #07090b
        );
}

.hero-lines {
    position: absolute;

    inset: 100px 0 0;

    pointer-events: none;

    opacity: .20;

    background-image:
        linear-gradient(
            45deg,
            transparent 48%,
            rgba(237,43,50,.11) 49%,
            rgba(237,43,50,.11) 51%,
            transparent 52%
        );

    background-size: 210px 210px;
}

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

    min-height: 710px;

    display: grid;

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

    align-items: center;
}

.hero-content {
    position: relative;

    z-index: 5;

    padding: 58px 0 45px;
}

.eyebrow {
    display: inline-flex;

    padding: 10px 18px;

    border: 2px solid var(--yellow);
    border-radius: 30px;

    color: #efefef;

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

    letter-spacing: 2px;
}

.hero h1 {
    max-width: 790px;

    margin-top: 25px;

    color: #fff;

    font-size: clamp(48px, 5.3vw, 79px);
    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -3px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero-content > p {
    max-width: 700px;

    margin-top: 24px;

    color: #b5b8bb;

    font-size: 18px;

    line-height: 1.75;
}

.hero-actions {
    display: flex;

    gap: 18px;

    margin-top: 30px;
}

.btn {
    min-height: 60px;

    padding: 0 28px;

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

    gap: 14px;

    border-radius: 11px;

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

    transition: .22s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--yellow);
    color: #111;

    box-shadow:
        0 12px 34px rgba(237,43,50,.13);
}

.btn-outline {
    border: 2px solid var(--yellow);

    color: #fff;

    background: rgba(0,0,0,.26);
}

.btn-dark {
    background: #111;
    color: #fff;
}

.play {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    background: var(--yellow);
    color: #111;

    border-radius: 50%;

    font-size: 12px;
}

.hero-features {
    max-width: 860px;

    margin-top: 36px;

    padding: 18px 22px;

    display: grid;

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

    gap: 0;

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

    background: rgba(5,7,8,.62);

    backdrop-filter: blur(10px);
}

.hero-feature {
    min-height: 65px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 0 20px;

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

.hero-feature:last-child {
    border-right: 0;
}

.feature-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    background: var(--yellow);
    color: #111;

    border-radius: 50%;

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

.hero-feature strong,
.hero-feature span {
    display: block;
}

.hero-feature strong {
    font-size: 14px;
}

.hero-feature span {
    margin-top: 4px;

    color: #b9b9b9;

    font-size: 13px;
}

.hero-visual {
    position: absolute;

    top: 100px;
    right: 0;
    bottom: 0;

    width: 54%;
}

.hero-main-photo {
    position: absolute;

    inset: 0;

    overflow: hidden;

    clip-path:
        polygon(
            25% 0,
            100% 0,
            100% 100%,
            29% 100%,
            5% 67%,
            19% 45%,
            7% 36%
        );

    border-left: 4px solid var(--yellow);
}

.hero-main-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,10,12,.72),
            transparent 36%
        );
}

.hero-main-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-small-photo {
    position: absolute;

    left: 2%;
    top: 43%;

    z-index: 5;

    width: 43%;
    height: 32%;

    overflow: hidden;

    border: 4px solid var(--yellow);
    border-radius: 42px 42px 42px 90px;

    transform: rotate(5deg);

    background: #111;
}

.hero-small-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: rotate(-5deg) scale(1.08);
}

.yellow-shape {
    position: absolute;

    z-index: 4;

    background: var(--yellow);
}

.shape-one {
    top: 0;
    left: 14%;

    width: 16px;
    height: 220px;

    transform: skewX(-35deg);
}

.shape-two {
    right: -25px;
    bottom: 35px;

    width: 25px;
    height: 250px;

    transform: rotate(35deg);
}


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

.small-title {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--yellow);

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

    letter-spacing: 1.2px;
}

.small-title > span {
    width: 65px;
    height: 2px;

    background: var(--yellow);
}

.small-title.centered {
    justify-content: center;
}

.dark-small {
    color: #6b161b;
}

.dark-small > span {
    background: #6b161b;
}

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

    margin-bottom: 48px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    margin-top: 18px;

    font-size: clamp(35px, 4vw, 54px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.section-heading p {
    max-width: 650px;

    margin: 17px auto 0;

    color: var(--muted);

    line-height: 1.8;
}


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

.about-section {
    padding: 72px 0;

    background:
        linear-gradient(
            180deg,
            #080a0c,
            #0b0e10
        );

    border-top: 1px solid rgba(237,43,50,.25);
}

.about-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 75px;

    align-items: center;
}

.about-heading h2 {
    margin-top: 20px;

    font-size: clamp(34px, 4vw, 54px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.about-heading h2 span {
    color: var(--yellow);
}

.about-cards {
    display: grid;

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

    gap: 16px;
}

.about-card {
    display: flex;

    gap: 16px;

    padding: 22px;

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

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.02)
        );
}

.about-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #202327;
    color: var(--yellow);

    font-size: 28px;
}

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

.about-card p {
    margin-top: 8px;

    color: #a8abad;

    font-size: 12px;

    line-height: 1.6;
}


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

.services-section {
    padding: 105px 0;

    background: #0d1013;
}

.services-grid {
    display: grid;

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

    gap: 20px;
}

.service-card {
    position: relative;

    min-height: 255px;

    padding: 32px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #13171b,
            #0a0d10
        );

    transition: .25s;
}

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

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: var(--yellow);

    transform: scaleX(0);
    transform-origin: left;

    transition: .25s;
}

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

    border-color: rgba(237,43,50,.40);

    box-shadow:
        0 18px 50px rgba(0,0,0,.25);
}

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

.service-card > span {
    display: block;

    margin-bottom: 52px;

    color: var(--yellow);

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

.service-card h3 {
    font-size: 21px;
}

.service-card p {
    margin-top: 12px;

    color: #9fa4a8;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================
CATALOG CTA
========================= */

.catalog-cta {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #101419,
            #090b0e
        );

    border-top: 1px solid rgba(237,43,50,.10);
}

.catalog-cta-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.catalog-cta h2 {
    margin-top: 20px;

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

    line-height: 1.05;

    letter-spacing: -2px;
}

.catalog-cta p {
    max-width: 650px;

    margin: 20px 0 30px;

    color: #9ea3a7;

    line-height: 1.8;
}

.catalog-preview {
    position: relative;

    min-height: 430px;
}

.catalog-preview img {
    position: absolute;

    width: 68%;
    height: 330px;

    object-fit: cover;

    border-radius: 18px;

    border: 2px solid rgba(237,43,50,.7);
}

.catalog-preview img:first-child {
    left: 0;
    top: 0;
}

.catalog-preview img:last-child {
    right: 0;
    bottom: 0;
}


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

.project-section {
    padding: 105px 0;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(237,43,50,.06),
            transparent 25%
        ),
        #090c0f;
}

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

    margin: 0 auto 45px;

    text-align: center;
}

.project-heading h2 {
    margin-top: 18px;

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

    line-height: 1.05;

    letter-spacing: -2px;
}

.project-heading p {
    margin-top: 15px;

    color: #9da2a6;

    line-height: 1.7;
}

.portfolio-grid {
    display: grid;

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

    gap: 20px;
}

.portfolio-card {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(237,43,50,.22);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #13171a,
            #0b0e10
        );

    cursor: pointer;

    transition: .25s;
}

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

    border-color: rgba(237,43,50,.7);
}

.portfolio-photo {
    height: 250px;

    overflow: hidden;
}

.portfolio-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;
}

.portfolio-card:hover .portfolio-photo img {
    transform: scale(1.05);
}

.photo-count {
    position: absolute;

    right: 16px;
    top: 215px;

    z-index: 3;

    padding: 8px 12px;

    border: 1px solid rgba(237,43,50,.75);
    border-radius: 8px;

    background: rgba(0,0,0,.72);
    color: var(--yellow);

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

.portfolio-info {
    padding: 22px;
}

.portfolio-info h3 {
    font-size: 19px;
}

.portfolio-location {
    margin-top: 10px;

    color: #b3b6b8;

    font-size: 12px;
}

.portfolio-location span {
    margin-right: 6px;

    color: var(--yellow);
}

.portfolio-category {
    display: block;

    margin-top: 18px;

    color: var(--yellow);

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

    letter-spacing: .4px;
}


/* =========================
CTA
========================= */

.cta-section {
    padding: 65px 0;

    background: var(--yellow);
    color: #111;
}

.cta-box {
    display: flex;

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

    gap: 40px;
}

.cta-box h2 {
    margin-top: 15px;

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

    line-height: 1.08;
}

.cta-box p {
    margin-top: 12px;

    color: #6b161b;
}


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

.contact-section {
    padding: 95px 0;

    background: #0c0f12;
}

.contact-grid {
    display: grid;

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

    align-items: center;

    gap: 60px;
}

.contact-grid h2 {
    margin-top: 18px;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;
}

.contact-grid > div > p {
    max-width: 650px;

    margin-top: 18px;

    color: #9da2a6;

    line-height: 1.8;
}

.contact-card {
    padding: 30px;

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

    gap: 20px;

    border: 1px solid rgba(237,43,50,.28);
    border-radius: 18px;

    background: #111519;
}

.contact-card small,
.contact-card strong {
    display: block;
}

.contact-card small {
    color: #8f9497;

    font-size: 11px;
}

.contact-card strong {
    margin-top: 7px;

    color: #fff;

    font-size: 20px;
}


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

footer {
    padding: 35px 0;

    background: #050607;

    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-wrap {
    display: flex;

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

    gap: 30px;

    color: #777d81;

    font-size: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 12px;
}

.footer-brand img {
    width: 46px;
    height: 46px;

    object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: #fff;

    font-size: 15px;
}

.footer-brand span {
    margin-top: 4px;

    color: #8e9396;

    font-size: 10px;
}


/* =========================
FLOAT WHATSAPP
========================= */

.wa-float {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 1500;

    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;
    color: #fff;

    font-weight: 800;

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


/* =========================
MODAL
========================= */

.image-modal {
    position: fixed;

    inset: 0;

    z-index: 3000;

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

    padding: 30px;

    background: rgba(0,0,0,.95);

    opacity: 0;
    visibility: hidden;

    transition: .25s;
}

.image-modal.show {
    opacity: 1;
    visibility: visible;
}

.image-modal > img {
    width: auto;

    max-width: min(1100px, 85vw);
    max-height: 78vh;

    border-radius: 12px;

    box-shadow:
        0 20px 80px rgba(0,0,0,.6);
}

.gallery-modal-info {
    position: absolute;

    top: 25px;
    left: 30px;

    z-index: 3;
}

.gallery-modal-info strong {
    display: block;

    font-size: 18px;
}

.gallery-modal-info span {
    display: block;

    margin-top: 5px;

    color: #9da2a6;

    font-size: 12px;
}

.modal-close {
    position: absolute;

    top: 24px;
    right: 28px;

    z-index: 5;

    width: 48px;
    height: 48px;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.12);
    color: #fff;

    font-size: 30px;

    cursor: pointer;
}

.gallery-arrow {
    position: absolute;

    top: 50%;

    z-index: 5;

    width: 52px;
    height: 52px;

    transform: translateY(-50%);

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.15);
    color: #fff;

    font-size: 30px;

    cursor: pointer;
}

.gallery-arrow:hover {
    background: var(--yellow);
    color: #111;
}

.gallery-prev {
    left: 25px;
}

.gallery-next {
    right: 25px;
}

.gallery-counter {
    position: absolute;

    left: 50%;
    bottom: 28px;

    z-index: 5;

    transform: translateX(-50%);

    padding: 8px 13px;

    border-radius: 18px;

    background: rgba(0,0,0,.66);

    color: #fff;

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

.gallery-thumbs {
    position: absolute;

    right: 30px;
    bottom: 25px;

    z-index: 5;

    display: flex;

    gap: 8px;
}

.gallery-thumb {
    width: 62px;
    height: 46px;

    padding: 0;

    overflow: hidden;

    border: 2px solid transparent;
    border-radius: 7px;

    background: #222;

    cursor: pointer;

    opacity: .6;
}

.gallery-thumb.active {
    opacity: 1;

    border-color: var(--yellow);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

@media (max-width: 1180px) {

    .brand {
        min-width: 280px;
    }

    .brand-text b {
        font-size: 21px;
    }

    .nav-whatsapp {
        display: none;
    }

    nav {
        justify-content: flex-end;
    }

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

    .hero-content {
        max-width: 680px;
    }

    .hero-visual {
        width: 55%;

        opacity: .55;
    }

    .hero h1 {
        font-size: clamp(48px, 6vw, 70px);
    }

}


@media (max-width: 900px) {

    .navbar {
        height: 82px;
    }

    .brand {
        min-width: 0;
    }

    .brand-mark {
        width: 56px;
        height: 56px;
    }

    .brand-text b {
        font-size: 20px;
    }

    nav {
        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 18px 5%;

        background: #090b0d;

        border-top: 1px solid rgba(237,43,50,.18);
    }

    nav.show {
        display: flex;
    }

    nav a {
        width: 100%;

        padding: 13px 0;
    }

    nav a.active::after {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        padding-top: 82px;
    }

    .hero-grid {
        min-height: 720px;
    }

    .hero-content {
        padding: 80px 0 45px;
    }

    .hero-visual {
        top: 82px;

        width: 100%;

        opacity: .28;
    }

    .hero-main-photo {
        clip-path: none;

        border-left: 0;
    }

    .hero-main-photo::after {
        background: rgba(5,7,8,.58);
    }

    .hero-small-photo,
    .yellow-shape {
        display: none;
    }

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

    .hero-feature {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .about-grid,
    .catalog-cta-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .catalog-preview {
        min-height: 390px;
    }

}


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

@media (max-width: 600px) {

    .container {
        width: min(92%, 540px);
    }

    .navbar {
        height: 72px;
    }

    .nav-wrap {
        gap: 10px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .brand-text b {
        font-size: 17px;
    }

    .brand-text small {
        display: none;
    }

    nav {
        top: 72px;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-grid {
        min-height: 680px;
    }

    .hero-content {
        padding: 65px 0 45px;
    }

    .eyebrow {
        padding: 8px 12px;

        font-size: 10px;

        letter-spacing: 1.3px;
    }

    .hero h1 {
        margin-top: 20px;

        font-size: 43px;

        line-height: 1.02;

        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 14px;

        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;

        padding: 10px;
    }

    .hero-feature {
        padding: 12px 8px;

        gap: 9px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;

        font-size: 17px;
    }

    .hero-feature strong {
        font-size: 12px;
    }

    .hero-feature span {
        font-size: 10px;
    }

    .about-section,
    .services-section,
    .catalog-cta,
    .project-section,
    .contact-section {
        padding: 72px 0;
    }

    .about-grid {
        gap: 35px;
    }

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

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

    .catalog-preview {
        min-height: 340px;
    }

    .catalog-preview img {
        width: 78%;
        height: 250px;
    }

    .portfolio-photo {
        height: 230px;
    }

    .photo-count {
        top: 195px;
    }

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

    .contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .image-modal {
        padding: 15px;
    }

    .image-modal > img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .gallery-arrow {
        width: 44px;
        height: 44px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-modal-info {
        left: 15px;
        top: 18px;
    }

    .gallery-thumbs {
        left: 50%;
        right: auto;

        bottom: 65px;

        transform: translateX(-50%);
    }

    .gallery-counter {
        bottom: 18px;
    }

}
/* =========================================
RESPONSIVE INDEX - HP
========================================= */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    /* NAVBAR */
    .navbar {
        height: 72px;
    }

    .nav-wrap {
        gap: 10px;
    }

    .brand {
        min-width: 0;
        gap: 10px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .brand-text b {
        font-size: 17px;
    }

    .brand-text small {
        display: none;
    }

    .nav-whatsapp {
        display: none;
    }

    .menu-btn {
        display: block;
        margin-left: auto;
    }

    nav {
        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 16px 5%;

        background: #080a0c;

        border-top: 1px solid rgba(237, 43, 50, .25);
        border-bottom: 1px solid rgba(237, 43, 50, .25);
    }

    nav.show {
        display: flex;
    }

    nav a {
        width: 100%;

        padding: 13px 0;

        font-size: 14px;
    }

    nav a.active::after {
        display: none;
    }


    /* HERO */
    .hero {
        min-height: auto;
        padding-top: 72px;
    }

    .hero-grid {
        min-height: auto;
        display: block;
    }

    .hero-content {
        padding: 60px 0 45px;
    }

    .hero-visual {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;

        width: 100%;
        height: 340px;

        opacity: 1;
    }

    .hero-main-photo {
        position: relative;

        width: 100%;
        height: 100%;

        clip-path: none;

        border-left: 0;
        border-top: 3px solid #ed2b32;
    }

    .hero-main-photo::after {
        background:
            linear-gradient(
                180deg,
                rgba(8,10,12,.05),
                rgba(8,10,12,.28)
            );
    }

    .hero-small-photo {
        width: 46%;
        height: 145px;

        left: 8%;
        top: auto;
        bottom: 25px;

        border-radius: 20px;

        border-width: 3px;
    }

    .yellow-shape {
        display: none;
    }

    .eyebrow {
        padding: 8px 12px;

        font-size: 10px;

        letter-spacing: 1.2px;
    }

    .hero h1 {
        margin-top: 20px;

        font-size: 42px;

        line-height: 1.04;

        letter-spacing: -2px;
    }

    .hero-content > p {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }


    /* HERO BUTTON */
    .hero-actions {
        flex-direction: column;

        gap: 12px;
    }

    .btn {
        width: 100%;

        min-height: 54px;

        padding: 0 18px;
    }


    /* HERO FEATURES */
    .hero-features {
        grid-template-columns: repeat(2, 1fr);

        padding: 10px;

        margin-top: 28px;
    }

    .hero-feature {
        min-height: 75px;

        padding: 10px;

        gap: 9px;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .feature-icon {
        width: 38px;
        height: 38px;

        font-size: 16px;
    }

    .hero-feature strong {
        font-size: 12px;
    }

    .hero-feature span {
        font-size: 10px;
    }


    /* ABOUT */
    .about-section {
        padding: 65px 0;
    }

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

        gap: 35px;
    }

    .about-heading h2 {
        font-size: 36px;
    }

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

    .about-card {
        padding: 18px;
    }


    /* SERVICES */
    .services-section {
        padding: 70px 0;
    }

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

    .section-heading p {
        font-size: 14px;
    }

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

    .service-card {
        min-height: auto;

        padding: 25px;
    }


    /* CATALOG CTA */
    .catalog-cta {
        padding: 70px 0;
    }

    .catalog-cta-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .catalog-cta h2 {
        font-size: 38px;
    }

    .catalog-preview {
        min-height: 330px;
    }

    .catalog-preview img {
        width: 78%;
        height: 245px;
    }


    /* PORTFOLIO */
    .project-section {
        padding: 70px 0;
    }

    .project-heading h2 {
        font-size: 36px;
    }

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

    .portfolio-photo {
        height: 240px;
    }

    .photo-count {
        top: 205px;
    }


    /* CTA */
    .cta-section {
        padding: 55px 0;
    }

    .cta-box {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta-box h2 {
        font-size: 36px;
    }


    /* CONTACT */
    .contact-section {
        padding: 70px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .contact-grid h2 {
        font-size: 40px;
    }

    .contact-card {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */
    .footer-wrap {
        flex-direction: column;

        align-items: flex-start;
    }


    /* WHATSAPP */
    .wa-float {
        width: 55px;
        height: 55px;

        right: 15px;
        bottom: 15px;
    }


    /* GALLERY MODAL */
    .image-modal {
        padding: 12px;
    }

    .image-modal > img {
        width: 100%;

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

        object-fit: contain;
    }

    .gallery-arrow {
        width: 42px;
        height: 42px;
    }

    .gallery-prev {
        left: 8px;
    }

    .gallery-next {
        right: 8px;
    }

    .gallery-modal-info {
        left: 15px;
        top: 16px;
    }

    .gallery-modal-info strong {
        font-size: 15px;
    }

    .gallery-thumbs {
        left: 50%;
        right: auto;

        bottom: 60px;

        transform: translateX(-50%);
    }

    .gallery-thumb {
        width: 52px;
        height: 40px;
    }

    .gallery-counter {
        bottom: 15px;
    }

}