
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
/* ========== ANTRA — Interior Design & Architecture ========== */
:root {
    --ink: #111111;
    --ink-2: #171717;
    --bone: #F5F5F3;
    --white: #FFFFFF;
    --line: #E8E8E6;
    --gold: #C9973E;
    --muted: #6d6d68;
    --maxw: 1240px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --font: "Plus Jakarta Sans", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: clip;
    font-family: var(--font), sans-serif;
}

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

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.6rem, 6.4vw, 5.2rem);
    font-weight: 500;
}

h2 {
    font-size: clamp(1.85rem, 3.6vw, 3.1rem);
    font-weight: 500;
}

h3 {
    font-size: 1.12rem;
}

p {
    margin: 0 0 1rem;
}

em {
    font-style: normal;
    color: var(--gold);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.container {
    width: min(100%, var(--maxw));
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(70px, 9vw, 130px) 0;
}

.section-tight {
    padding: clamp(48px, 6vw, 80px) 0;
}

.label {
    font-size: .92rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px
}

.label-light {
    color: rgba(255, 255, 255, .72)
}

.light {
    color: var(--white);
}

.muted {
    color: var(--muted);
}

.lead {
    color: var(--muted);
    max-width: 46ch;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: 0 26px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    background: var(--gold);
    border-radius: 8px;
}

.btn-gold {
    background: var(--gold);
    color: #1a1206;
}

.btn-gold:hover {
    background: #b3842f;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gold);
    color: #1a1206;
}

.circle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--line);
    font-size: 1.1rem;
    margin-top: 26px;
    background: var(--gold);
}

.circle-btn:hover {
    background: var(--gold);
    color: #ffffff;
    transform: rotate(45deg);
}

.arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    color: inherit;
    background: var(--gold);
}

.arrow:hover {
    background: var(--ink);
    color: #fff;
}

.slider-nav {
    display: flex;
    gap: 10px;
}

/* image hover */
.image-wrap {
    overflow: hidden;
    position: relative;
}

.image-wrap img {
    transition: transform 1s var(--ease);
    width: 100%;
    border-radius: 12px;
}

.image-wrap:hover img {
    transform: scale(1.05);
}

/* ===== reveal ===== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
    opacity: 0;
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal {
    transform: translateY(40px);
}

.reveal-up {
    transform: translateY(56px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(.94);
}

.reveal.show,
.reveal-up.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left.show,
.reveal-right.show {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale.show {
    opacity: 1;
    transform: scale(1);
}

/* =========================================================
   INTERIOR DESIGN CAROUSEL
   All classes are prefixed with idc-
   ========================================================= */

.idc-hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 680px;
    overflow: hidden;
    background: var(--ink);
    isolation: isolate;
    color: var(--white);
    font-family: var(--font-family), sans-serif;
}


/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */

.idc-container {
    position: relative;
    width: min(
            calc(100% - 80px),
            var(--maxw)
    );
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* ---------------------------------------------------------
   SLIDES
   --------------------------------------------------------- */

.idc-slides {
    position: absolute;
    inset: 0;
}

.idc-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
            opacity 0.9s var(--ease),
            visibility 0.9s var(--ease);
}

.idc-slide.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}


/* ---------------------------------------------------------
   BACKGROUND IMAGE
   --------------------------------------------------------- */

.idc-slide-bg {
    position: absolute;
    inset: -3%;
    background-image:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.66) 0%,
                    rgba(0, 0, 0, 0.40) 42%,
                    rgba(0, 0, 0, 0.18) 100%
            ),
            var(--idc-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition:
            transform 1.5s var(--ease),
            filter 1s var(--ease);
    cursor: ew-resize;
}

.idc-slide:not(.is-active) .idc-slide-bg {
    transform: scale(1.14);
    filter: brightness(0.75);
}

.idc-slide.is-active .idc-slide-bg {
    transform: scale(1.08);
    filter: brightness(1);
}


/* ---------------------------------------------------------
   SUBTLE IMAGE OVERLAY
   --------------------------------------------------------- */

.idc-slide::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.20) 0%,
                    transparent 35%,
                    rgba(0, 0, 0, 0.35) 100%
            );

    pointer-events: none;
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.idc-content {
    position: relative;
    z-index: 5;
    width: min(820px, 67%);
    padding-top: 0;
    transform: translateY(35px);
    opacity: 0;
    transition:
            opacity 0.8s var(--ease) 0.15s,
            transform 0.9s var(--ease) 0.15s;
}

.idc-slide.is-active .idc-content {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------------------------------------
   EYEBROW
   --------------------------------------------------------- */

.idc-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 22px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.idc-eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    background: var(--gold);

    flex-shrink: 0;
}


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

.idc-heading {
    margin: 0;

    max-width: 850px;

    color: var(--white);

    font-size: clamp(
            48px,
            6.2vw,
            88px
    );

    font-weight: 500;

    line-height: 0.98;
    letter-spacing: -0.055em;
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.idc-description {
    max-width: 540px;

    margin: 30px 0 34px;

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

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

    line-height: 1.8;

    letter-spacing: -0.01em;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.idc-cta {
    display: inline-flex;
    align-items: center;
    gap: 28px;

    min-height: 54px;

    padding: 0 8px 0 22px;

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

    color: var(--white);

    text-decoration: none;

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

    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
            background 0.35s var(--ease),
            border-color 0.35s var(--ease),
            color 0.35s var(--ease),
            transform 0.35s var(--ease);
}

.idc-cta-arrow {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    background: var(--gold);

    color: var(--ink);

    font-size: 18px;

    transition:
            transform 0.35s var(--ease),
            background 0.35s var(--ease);
}

.idc-cta:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-2px);
}

.idc-cta:hover .idc-cta-arrow {
    transform: rotate(45deg);
    background: var(--white);
}


/* ---------------------------------------------------------
   BOTTOM CONTROLS
   --------------------------------------------------------- */

.idc-bottom {
    position: absolute;
    z-index: 20;

    left: 50%;
    bottom: 42px;

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

    transform: translateX(-50%);

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 40px;
}


/* ---------------------------------------------------------
   COUNTER
   --------------------------------------------------------- */

.idc-counter {
    display: flex;
    align-items: center;
    gap: 12px;

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

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

    letter-spacing: 0.12em;
}

.idc-current {
    color: var(--white);
}

.idc-counter-line {
    display: block;

    width: 42px;
    height: 1px;

    background: rgba(255, 255, 255, 0.3);
}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.idc-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;
}

.idc-nav {
    position: relative;

    width: 34px;
    height: 2px;

    padding: 0;

    border: 0;

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

    cursor: pointer;

    transition:
            width 0.45s var(--ease),
            background 0.35s var(--ease);
}

.idc-nav::before {
    content: "";

    position: absolute;

    top: -14px;
    bottom: -14px;

    left: 0;
    right: 0;
}

.idc-nav.is-active {
    width: 68px;
    background: var(--gold);
}


/* ---------------------------------------------------------
   ARROWS
   --------------------------------------------------------- */

.idc-arrows {
    display: flex;
    justify-content: flex-end;

    gap: 8px;
}

.idc-arrow {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    padding: 0;

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

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

    color: var(--white);

    font-family: inherit;
    font-size: 19px;

    cursor: pointer;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
            background 0.3s var(--ease),
            border-color 0.3s var(--ease),
            color 0.3s var(--ease),
            transform 0.3s var(--ease);
}

.idc-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);

    transform: translateY(-2px);
}

.idc-arrow:active {
    transform: scale(0.94);
}


/* ---------------------------------------------------------
   SCROLL INDICATOR
   --------------------------------------------------------- */

.idc-scroll-indicator {
    position: absolute;

    z-index: 20;

    right: 28px;
    top: 50%;

    display: flex;
    align-items: center;
    gap: 12px;

    transform:
            translateY(-50%)
            rotate(90deg);

    transform-origin: center;

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

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

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.idc-scroll-line {
    display: block;

    width: 38px;
    height: 1px;

    background: rgba(255, 255, 255, 0.45);
}


/* ---------------------------------------------------------
   ACCESSIBILITY
   --------------------------------------------------------- */

.idc-arrow:focus-visible,
.idc-nav:focus-visible,
.idc-cta:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .idc-hero {
        min-height: 620px;
    }

    .idc-container {
        width: min(
                calc(100% - 48px),
                var(--maxw)
        );
    }

    .idc-content {
        width: 75%;
    }

    .idc-heading {
        font-size: clamp(
                46px,
                8vw,
                72px
        );
    }

    .idc-bottom {
        width: calc(100% - 48px);
        bottom: 30px;
    }

    .idc-scroll-indicator {
        display: none;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .idc-hero {
        height: 72svh;
        min-height: 620px;
    }

    .idc-container {
        width: calc(100% - 36px);
    }

    .idc-slide {
        align-items: center;
    }

    .idc-slide-bg {
        background-position: 60% center;

        background-image:
                linear-gradient(
                        90deg,
                        rgba(0, 0, 0, 0.70) 0%,
                        rgba(0, 0, 0, 0.42) 100%
                ),
                var(--idc-bg);
    }

    .idc-content {
        width: 100%;
        padding-top: 0;
    }


    .idc-eyebrow {
        margin-bottom: 18px;

        font-size: 10px;

        letter-spacing: 0.15em;
    }

    .idc-eyebrow::before {
        width: 24px;
    }

    .idc-heading {
        font-size: clamp(
                42px,
                12vw,
                58px
        );

        line-height: 1;
        letter-spacing: -0.05em;
    }

    .idc-description {
        max-width: 100%;

        margin: 22px 0 28px;

        font-size: 13px;

        line-height: 1.7;
    }

    .idc-cta {
        min-height: 50px;

        padding-left: 18px;

        gap: 20px;

        font-size: 10px;
    }

    .idc-cta-arrow {
        width: 34px;
        height: 34px;
    }

    .idc-bottom {
        bottom: 24px;

        width: calc(100% - 36px);

        grid-template-columns: auto 1fr auto;

        gap: 18px;
    }

    .idc-counter {
        font-size: 9px;
        gap: 7px;
    }

    .idc-counter-line {
        width: 22px;
    }

    .idc-navigation {
        gap: 5px;
    }

    .idc-nav {
        width: 18px;
    }

    .idc-nav.is-active {
        width: 40px;
    }

    .idc-arrows {
        gap: 5px;
    }

    .idc-arrow {
        width: 40px;
        height: 40px;

        font-size: 16px;
    }

    /** Contact**/
    @media (max-width: 600px) {
        .contact {
            background-position: center;
        }
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 380px) {

    .idc-heading {
        font-size: 39px;
    }

    .idc-description {
        font-size: 12px;
    }

    .idc-counter {
        display: none;
    }

    .idc-bottom {
        grid-template-columns: 1fr auto;
    }

    .idc-navigation {
        justify-content: flex-start;
    }

}
/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-media {
    position: relative;
    padding-bottom: 60px;
}

.about-img-a {
    width: 78%;
}

.about-img-b {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    border: 8px solid #fff;
}

.about-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--ink);
    color: #fff;
    padding: 16px 22px;
}

.about-badge strong {
    display: block;
    font-size: 1.6rem;
    color: var(--gold);
}

.about-badge span {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
}

.about-stats {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.about-stats strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 600;
}

.about-stats span {
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

/* =========================================
   VISION / MISSION / CORE VALUES
   ========================================= */

.vmc-section {
    position: relative;
    padding: 140px 0;
    background: var(--bone);
    overflow: hidden;
}

.vmc-container {
    width: min(100% - 80px, var(--maxw));
    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
   ========================================= */

.vmc-heading {
    max-width: 760px;
    margin-bottom: 85px;
}

.vmc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 22px;

    font-family: var(--font),sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.vmc-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.vmc-heading h2,
.values-intro h2 {
    margin: 0;
    font-family: var(--font),sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    font-weight: 500;
    letter-spacing: -3px;
    color: var(--ink);
}

.vmc-heading h2 span,
.values-intro h2 span {
    color: var(--gold);
}

.vmc-heading p {
    max-width: 560px;
    margin: 28px 0 0;

    font-family: var(--font),sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
}


/* =========================================
   VISION + MISSION
   ========================================= */

.vmc-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;

    background: var(--line);
    border: 1px solid var(--line);
}


/* Card */

.vmc-card {
    position: relative;
    min-height: 490px;
    padding: 38px;

    display: flex;
    flex-direction: column;

    background: var(--white);

    overflow: hidden;
    transition:
            transform .6s var(--ease),
            background .6s var(--ease);
}

.vmc-card:hover {
    background: var(--ink);
    transform: translateY(-8px);
}


/* Card top */

.vmc-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vmc-number {
    font-family: var(--font),sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--gold);
}

.vmc-line {
    width: 45px;
    height: 1px;
    background: var(--gold);
}

.vmc-label {
    font-family: var(--font),sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--muted);
}


/* Card content */

.vmc-card-content {
    margin: auto 0;
    max-width: 500px;
}

.vmc-card-content h3 {
    margin: 0 0 25px;

    font-family: var(--font);
    font-size: clamp(32px, 3.4vw, 50px);
    line-height: 1.03;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--ink);
    transition: color .5s var(--ease);
}

.vmc-card-content h3 strong {
    color: var(--gold);
    font-weight: 500;
}

.vmc-card-content p {
    max-width: 440px;
    margin: 0;

    font-family: var(--font);
    font-size: 13px;
    line-height: 1.9;
    color: var(--muted);

    transition: color .5s var(--ease);
}


/* Hover typography */

.vmc-card:hover .vmc-card-content h3 {
    color: var(--white);
}

.vmc-card:hover .vmc-card-content p {
    color: #bdbdb8;
}

.vmc-card:hover .vmc-label {
    color: #bdbdb8;
}


/* Card footer */

.vmc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 24px;
    border-top: 1px solid var(--line);

    font-family: var(--font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--muted);

    transition: border-color .5s var(--ease);
}

.vmc-card:hover .vmc-card-footer {
    border-color: rgba(255,255,255,.15);
}

.vmc-arrow {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 1px solid var(--line);
    border-radius: 50%;

    font-size: 15px;
    color: var(--gold);

    transition:
            transform .5s var(--ease),
            border-color .5s var(--ease);
}

.vmc-card:hover .vmc-arrow {
    transform: rotate(45deg);
    border-color: var(--gold);
}


/* =========================================
   CORE VALUES
   ========================================= */

.values-wrapper {
    display: grid;
    grid-template-columns: 32% 68%;
    margin-top: 100px;

    background: var(--ink);
}


/* Left */

.values-intro {
    padding: 65px 45px;
    color: var(--white);
}

.values-intro .vmc-eyebrow {
    margin-bottom: 25px;
}

.values-intro h2 {
    color: var(--white);
}

.values-intro p {
    max-width: 310px;
    margin: 28px 0 40px;

    font-family: var(--font);
    font-size: 13px;
    line-height: 1.9;
    color: #a9a9a4;
}


/* Link */

.values-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 10px;

    border-bottom: 1px solid var(--gold);

    font-family: var(--font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    text-decoration: none;

    transition: gap .4s var(--ease);
}

.values-link span {
    color: var(--gold);
    font-size: 15px;
}

.values-link:hover {
    gap: 22px;
}


/* Values grid */

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-left: 1px solid rgba(255,255,255,.12);
}


/* Value item */

.value-item {
    position: relative;

    min-height: 230px;
    padding: 35px;

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

    overflow: hidden;

    transition: background .5s var(--ease);
}

.value-item:nth-child(5),
.value-item:nth-child(6) {
    border-bottom: 0;
}

.value-item:hover {
    background: var(--ink-2);
}


/* Gold hover line */

.value-item::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width .6s var(--ease);
}

.value-item:hover::before {
    width: 100%;
}


/* Value top */

.value-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 38px;

    font-family: var(--font),sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;

    color: var(--gold);
}

.value-icon {
    font-size: 16px;

    transition: transform .5s var(--ease);
}

.value-item:hover .value-icon {
    transform: rotate(45deg);
}


/* Value title */

.value-item h3 {
    margin: 0 0 13px;

    font-family: var(--font);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -.6px;

    color: var(--white);
}


/* Value description */

.value-item p {
    max-width: 330px;

    margin: 0;

    font-family: var(--font);
    font-size: 11px;
    line-height: 1.8;

    color: #858580;
}


/* =========================================
   SCROLL REVEAL
   ========================================= */

.reveal {
    opacity: 0;
    transform: translateY(45px);

    transition:
            opacity .9s var(--ease),
            transform .9s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Stagger */

.vmc-main .vmc-card:nth-child(2) {
    transition-delay: .12s;
}

.values-grid .value-item:nth-child(2) {
    transition-delay: .08s;
}

.values-grid .value-item:nth-child(3) {
    transition-delay: .16s;
}

.values-grid .value-item:nth-child(4) {
    transition-delay: .24s;
}

.values-grid .value-item:nth-child(5) {
    transition-delay: .32s;
}

.values-grid .value-item:nth-child(6) {
    transition-delay: .40s;
}


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

@media (max-width: 900px) {

    .vmc-section {
        padding: 100px 0;
    }

    .vmc-container {
        width: min(100% - 50px, var(--maxw));
    }

    .vmc-heading {
        margin-bottom: 60px;
    }

    .vmc-main {
        grid-template-columns: 1fr;
    }

    .vmc-card {
        min-height: 420px;
    }

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

    .values-intro {
        padding: 55px 40px;
    }

    .values-intro p {
        max-width: 500px;
    }

    .values-grid {
        border-left: 0;
    }

}


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

@media (max-width: 600px) {

    .vmc-section {
        padding: 75px 0;
    }

    .vmc-container {
        width: min(100% - 30px, var(--maxw));
    }

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

    .vmc-heading h2,
    .values-intro h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .vmc-heading p {
        font-size: 12px;
        line-height: 1.8;
    }

    .vmc-card {
        min-height: 390px;
        padding: 28px 24px;
    }

    .vmc-card-content h3 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .vmc-card-content p {
        font-size: 12px;
        line-height: 1.8;
    }

    .values-wrapper {
        margin-top: 65px;
    }

    .values-intro {
        padding: 45px 25px;
    }

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

    .value-item {
        min-height: auto;
        padding: 28px 25px 35px;
    }

    .value-item:nth-child(5) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .value-item:nth-child(6) {
        border-bottom: 0;
    }

    .value-top {
        margin-bottom: 28px;
    }

    .value-item h3 {
        font-size: 20px;
    }

    .value-item p {
        font-size: 11px;
    }

}


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

@media (max-width: 380px) {

    .vmc-heading h2,
    .values-intro h2 {
        font-size: 34px;
    }

    .vmc-card-content h3 {
        font-size: 30px;
    }

    .vmc-card {
        min-height: 410px;
    }

}

/* ===== PROJECTS ===== */
.projects {
    background: var(--white);
}

.projects-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 26px;
}

.projects-head .label {
    margin: 0;
}

.marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
    padding: 14px 0;
    margin-bottom: 34px;
}

.marquee-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: marquee 26s linear infinite;
    
}

.marquee-track span {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -.02em;
    color: #c9c9c4;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.proj-viewport {
    overflow: hidden;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.proj-track {
    display: flex;
    gap: 22px;
    transition: transform .7s var(--ease);
    will-change: transform;
}

.proj-card {
    flex: 0 0 calc((100% - 44px)/3);
    background: #fff;
    transition: transform .5s var(--ease);
}

.proj-card .image-wrap {
    aspect-ratio: 4/5;
}

.proj-card img {
    height: 100%;
    object-fit: cover;
}

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

.proj-meta {
    padding: 18px 20px 22px;
    border: 1px solid var(--line);
    border-top: 0;
}

.proj-meta h3 {
    font-size: 1.05rem;
}

.proj-meta p {
    margin: 6px 0 0;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.gallery-btn {
    width: 100%;
    text-align: center;
    padding: 50px 0 0 0;
}

.gallery-next-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    background: var(--gold);
    color: var(--white);
    transition: 0.2s ease-in-out;
    border-radius: 8px;
}

.gallery-next-btn:hover {
    background: #b3842f;
    transform: translateY(-4px);
}

/* ===== PROCESS ===== */
.process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    margin-top: 48px;
    align-items: start;
}

.process-img {
    aspect-ratio: 4/5;
}

.process-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.steps li {
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.steps .num {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.steps h3 {
    margin: 6px 0 8px;
}

.steps p {
    color: var(--muted);
    font-size: .94rem;
    margin: 0;
}

/* ===== SERVICES ===== */
.services {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 9vw, 140px) 0;
    background: var(--ink);
}

.services-media {
    position: absolute;
    inset: -8% 0;
}

.services-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, .9), rgba(17, 17, 17, .82));
}

.services-content {
    position: relative;
    z-index: 2;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.svc-card {
    position: relative;
    padding: 30px 26px 60px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    transition: transform .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease);
}

.svc-card:hover {
    transform: translateY(-10px);
    background: rgba(201, 151, 62, .14);
    border-color: rgba(201, 151, 62, .5);
}

.service-card-image{
    overflow: hidden;
    margin-top: 10px;
    border-radius: 12px;
}
.service-card-image img{
    width: 100%;
    height: 100%;
}

.svc-card .num {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
}

.svc-card h3 {
    margin: 14px 0 10px;
    color: var(--gold);
}

.svc-card p {
    color: rgba(255, 255, 255, .66);
    font-size: .93rem;
    margin: 0;
}

.svc-arrow {
    position: absolute;
    left: 26px;
    bottom: 24px;
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform .45s var(--ease);
}

.svc-card:hover .svc-arrow {
    transform: translate(6px, -6px);
}

/* ===== PORTFOLIO ===== */
.portfolio {
    background: var(--bone);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ticks {
    margin: 22px 0
}

.ticks li {
    padding-left: 22px;
    position: relative;
    color: var(--muted);
    margin-bottom: 8px;
}

.ticks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 9px;
    height: 1px;
    background: var(--gold);
}

.portfolio-media {
    position: relative;
    padding-bottom: 70px;
}

.pf-a {
    width: 82%;
    aspect-ratio: 1/1;
}

.pf-a img {
    height: 100%;
    object-fit: cover;
}

.pf-b {
    position: absolute;
    right: 0;
    bottom: 40px;
    width: 46%;
    aspect-ratio: 1/1;
    border: 8px solid var(--bone);
}

.pf-b img {
    height: 100%;
    object-fit: cover;
}

.pf-note {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--ink);
    color: #fff;
    padding: 14px 20px;
}

.pf-note strong {
    display: block;
    font-size: .95rem;
}

.pf-note span {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

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

.cta-band {
    position: relative;
    overflow: hidden;
    min-height: 62vh;
    display: flex;
    align-items: center;
    padding: clamp(80px, 10vw, 150px) 0;
    background: var(--ink);
    text-align: center;
}

.cta-media {
    position: absolute;
    inset: -8% 0
}

.cta-media img,
.cta-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .62)
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content p {
    color: rgba(255, 255, 255, .75);
    max-width: 52ch;
    margin: 18px auto 0;
}

.play-btn {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 28px;
    transition: background .35s var(--ease), transform .35s var(--ease)
}

.play-btn:hover {
    background: var(--gold);
    color: #1a1206;
    transform: scale(1.06);
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .cta-band {
        min-height: 55vh;
    }

    .cta-media {
        inset: -5% 0;
    }

    .cta-content {
        padding: 0 30px;
    }

}

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

@media (max-width: 768px) {

    .cta-band {
        min-height: 55vh;
        padding: 70px 0;
    }

    .cta-media {
        inset: -3% 0;
    }

    .cta-media img,
    .cta-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cta-content {
        width: 100%;
        padding: 0 20px;
    }

    .cta-content p {
        max-width: 100%;
        margin-top: 15px;
    }

    .play-btn {
        width: 64px;
        height: 64px;
        margin-bottom: 22px;
    }

}


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

@media (max-width: 480px) {

    .cta-band {
        min-height: 50vh;
        padding: 60px 0;
    }

    .cta-content {
        padding: 0 18px;
    }

    .cta-content p {
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
    }

    .play-btn {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
    }

}

/* ===== EXPERTISE ===== */
.expertise {
    background: var(--white);
    position: relative;
    overflow: hidden
}

.blueprint {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .5;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 110px 110px;
    -webkit-mask-image: radial-gradient(circle at 20% 40%, #000, transparent 62%);
    mask-image: radial-gradient(circle at 20% 40%, #000, transparent 62%)
}

.expertise-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.bars {
    margin-top: 30px
}

.bar-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
    margin-bottom: 20px;
    font-size: .85rem;
    letter-spacing: .06em
}

.bar {
    grid-column: 1/-1;
    height: 2px;
    background: var(--line)
}

.bar i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width 1.4s var(--ease)
}

/* ===== STORY ===== */
/* ===== STORY ===== */

.story {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 9vw, 140px) 0;
    background: var(--ink);
}

.story-media {
    position: absolute;
    inset: -8% 0;
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .78);
}

.story-content {
    position: relative;
    z-index: 2;
}


/* ===== STATISTICS ===== */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 36px;
}

.stat {
    min-width: 0;
}

.stat strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    white-space: nowrap;
}

.stat span {
    display: block;
    margin-top: 10px;
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}


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

@media (max-width: 1024px) {

    .story {
        padding: 90px 0;
    }

    .stats {
        gap: 20px;
        margin-top: 48px;
        padding-top: 30px;
    }

}


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

@media (max-width: 768px) {

    .story {
        padding: 75px 0;
    }

    .story-media {
        inset: -5% 0;
    }

    .story-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
        margin-top: 42px;
        padding-top: 28px;
    }

    .stat strong {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .stat span {
        font-size: .68rem;
        letter-spacing: .12em;
        line-height: 1.5;
    }
}

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

@media (max-width: 480px) {

    .story {
        padding: 65px 0;
    }

    .story-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .stats {
        gap: 28px 15px;
        margin-top: 36px;
        padding-top: 25px;
    }

    .stat strong {
        font-size: 2rem;
        text-align: center;
    }

    .light{
        text-align: center;
    }
    .stat span {
        font-size: .62rem;
        letter-spacing: .1em;
        text-align: center;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
}

.test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.test-img {
    aspect-ratio: 4/3;
}

.test-img img {
    height: 100%;
    object-fit: cover;
}

.rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 10px;
}

.rating strong {
    font-size: 2rem;
    font-weight: 600;
}

.stars {
    color: var(--gold);
    letter-spacing: .15em;
}

.rating small {
    color: var(--muted);
    width: 100%;
}

.test-slider {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    padding-top: 26px;
}

.test-track {
    display: flex;
    transition: transform .7s var(--ease);
}

.test-slide {
    flex: 0 0 100%;
    margin: 0;
    padding-right: 8px;
}

.test-slide p {
    font-size: 1.08rem;
    color: var(--ink);
}

.test-slide footer strong {
    display: block;
}

.test-slide footer span {
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.test-controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* ===== CONTACT ===== */
.contact {
    padding-bottom: clamp(70px, 8vw, 120px);
    overflow: hidden;
    color: #fff;
    position: relative;
    background-image:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.88) 0%,
                    rgba(0, 0, 0, 0.68) 50%,
                    rgba(0, 0, 0, 0.78) 100%
            ),
            url("../image/image27.jpeg");

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

.contact-marquee {
    overflow: hidden;
    padding: 10px 0 clamp(40px, 6vw, 70px);
}

.contact-marquee .marquee-track {
    gap: 60px;
    animation-duration: 34s;
}

.contact-marquee span {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: rgba(255, 255, 255, .07);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-info li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-info span {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.contact-info address {
    font-style: normal;
}

.contact-form {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 30px;
}

.contact-form label {
    display: block;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 16px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font: inherit;
    font-size: .95rem;
    letter-spacing: normal;
    text-transform: none;
    padding: 10px 0;
    border-radius: 0;
}

.contact-form select option {
    color: #111;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
}

.form-msg {
    min-height: 1.2em;
    margin: 14px 0 0;
    font-size: .85rem;
    color: var(--gold);
}

/* ===== BLOG ===== */
.blog {
    background: var(--bone);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 48px;
}

.blog-card {
    background: #fff;
    padding-bottom: 24px;
    transition: transform .45s var(--ease);
}

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

.blog-card .image-wrap {
    aspect-ratio: 5/4;
}

.blog-card img {
    height: 100%;
    object-fit: cover;
}

.blog-card .tag {
    display: inline-block;
    margin: 18px 22px 0;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}

.blog-card h3 {
    margin: 10px 22px 8px;
}

.blog-card p {
    margin: 0 22px 14px;
    color: var(--muted);
    font-size: .93rem;
}

.read {
    margin: 0 22px;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    padding-bottom: 3px;
}

.read:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ======= Email popup ==========*/
.form-msg {
    min-height: 24px;
    /*margin: 15px 0;*/
    /*font-size: 14px;*/
    line-height: 1.5;
}

.form-msg.success {
    color: #18A85B;
}

.form-msg.error {
    color: #ff5c5c;
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.contact-submit{
    background: var(--gold);
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.contact-submit:hover{
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width:1199px) {

    .about-grid,
    .portfolio-grid,
    .expertise-grid,
    .test-grid,
    .contact-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

    .proj-card {
        flex: 0 0 calc((100% - 22px)/2);
    }

}

@media (max-width:767px) {
    .hero-content {
        padding-top: 110px;
        padding-bottom: 150px;
    }

    .svc-grid,
    .blog-grid,
    .stats,
    .steps {
        grid-template-columns: 1fr;
    }

    .stats {
        gap: 26px;
    }

    .proj-card {
        flex: 0 0 82%;
    }

    .proj-viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .proj-viewport::-webkit-scrollbar {
        display: none;
    }

    .proj-track {
        transform: none !important;
    }

    .slider-nav {
        display: none;
    }

    .about-media {
        padding-bottom: 40px;
    }

    .about-img-a {
        width: 100%;
    }

    .about-img-b {
        width: 44%;
        bottom: -20px;
        right: -6px;
    }

    .about-badge {
        position: static;
        display: inline-block;
        margin-top: 18px;
    }

    .pf-a {
        width: 100%;
    }

    .pf-b {
        width: 44%;
        bottom: 0;
    }

    .pf-note {
        position: static;
        display: inline-block;
        margin-top: 16px;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 22px;
    }



    .hero-word {
        font-size: 20vw;
        bottom: 2vw;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition-duration: .001s !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ---------- LARGE TABLET / SMALL LAPTOP ---------- */

@media (max-width: 1199px) {

    .container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .about-grid,
    .portfolio-grid,
    .expertise-grid,
    .test-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-grid {
        grid-template-columns: .85fr 1.15fr;
        gap: 40px;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

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

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

    .proj-card {
        flex-basis: calc((100% - 22px) / 2);
    }

    .about-media,
    .portfolio-media {
        max-width: 100%;
    }

    .contact-grid {
        align-items: start;
    }

}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-grid,
    .portfolio-grid,
    .expertise-grid,
    .test-grid,
    .contact-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-text,
    .portfolio-text,
    .expertise-grid > div:first-child,
    .test-grid > div:last-child {
        max-width: 760px;
    }

    .process-grid {
        margin-top: 38px;
    }

    .process-img {
        max-width: 600px;
    }

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

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

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

    .contact-info li {
        grid-template-columns: 100px 1fr;
    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 767px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .section-tight {
        padding-top: 48px;
        padding-bottom: 55px;
    }

    h1 {
        font-size: clamp(2.35rem, 11vw, 3.8rem);
        line-height: 1.05;
    }

    h2 {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .label {
        font-size: .72rem;
        letter-spacing: .2em;
        margin-bottom: 14px;
    }


    /* HERO */

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        width: 100%;
        padding-top: 100px;
        padding-bottom: 135px;
    }

    .hero-content h1 {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
        font-size: .92rem;
        line-height: 1.6;
    }

    .hero-actions {
        margin-top: 25px;
    }

    .btn {
        min-height: 46px;
        padding: 0 20px;
        font-size: .76rem;
    }

    .navigation-btn {
        margin-top: 20px;
    }

    .scroll-dot {
        width: 50px;
        height: 50px;
        bottom: 70px;
    }

    .hero-carousel-dots {
        bottom: 18px;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-word {
        display: none;
    }


    /* ABOUT */

    .about-grid {
        gap: 48px;
    }

    .about-media {
        width: 100%;
        padding-bottom: 45px;
    }

    .about-img-a {
        width: 88%;
    }

    .about-img-b {
        width: 46%;
        right: 0;
        bottom: 0;
        border-width: 5px;
    }

    .about-badge {
        padding: 12px 16px;
    }

    .about-badge strong {
        font-size: 1.35rem;
    }

    .about-stats {
        gap: 22px;
    }


    /* PROCESS */

    .process-grid {
        gap: 38px;
    }

    .process-img {
        width: 100%;
        max-width: 100%;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .steps .num {
        font-size: 2.1rem;
    }


    /* PROJECTS */

    .projects-head {
        align-items: center;
    }

    .marquee {
        margin-bottom: 25px;
    }

    .marquee-track {
        gap: 40px;
    }

    .marquee-track span {
        font-size: 1.7rem;
    }

    .proj-viewport {
        padding-left: 18px;
        padding-right: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    .proj-viewport::-webkit-scrollbar {
        display: none;
    }

    .proj-track {
        gap: 16px;
        transform: none !important;
    }

    .proj-card {
        flex: 0 0 84%;
        min-width: 0;
    }

    .gallery-btn {
        padding-top: 35px;
    }


    /* SERVICES */

    .services {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .svc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 35px;
    }

    .svc-card {
        padding: 24px 20px 55px;
    }

    .svc-card .num {
        font-size: 2.1rem;
    }

    .service-card-image {
        aspect-ratio: 16 / 10;
    }

    .service-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .svc-card h3 {
        font-size: 1.05rem;
    }


    /* PORTFOLIO */

    .portfolio-grid {
        gap: 45px;
    }

    .portfolio-media {
        width: 100%;
        padding-bottom: 45px;
    }

    .pf-a {
        width: 88%;
    }

    .pf-b {
        width: 45%;
        right: 0;
        bottom: 0;
        border-width: 5px;
    }


    /* EXPERTISE */

    .expertise-grid {
        gap: 42px;
    }

    .expertise-grid > .image-wrap {
        width: 100%;
    }

    .bars {
        margin-top: 25px;
    }


    /* STORY */

    .story {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .story-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 18px;
        margin-top: 38px;
        padding-top: 26px;
    }

    .stat strong {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }


    /* TESTIMONIAL */

    .test-grid {
        gap: 40px;
    }

    .test-img {
        aspect-ratio: 4 / 3;
    }

    .test-slide p {
        font-size: 1rem;
    }


    /* CONTACT */

    .contact {
        padding-bottom: 70px;
    }

    .contact-grid {
        gap: 45px;
    }

    .contact-info {
        margin-top: 25px;
    }

    .contact-info li {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 14px 0;
    }

    .contact-form {
        width: 100%;
        padding: 20px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }

    .contact-submit {
        width: 100%;
        min-height: 50px;
    }


    /* BLOG */

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }

    .blog-card h3 {
        font-size: 1.05rem;
    }

}


/* ---------- SMALL MOBILE ---------- */

@media (max-width: 480px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    h1 {
        font-size: clamp(2.15rem, 12vw, 3.2rem);
    }

    h2 {
        font-size: clamp(1.7rem, 9vw, 2.3rem);
    }

    .hero-content {
        padding-top: 90px;
        padding-bottom: 125px;
    }

    .hero-sub {
        font-size: .88rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .navigation-btn .hero-carousel-prev,
    .navigation-btn .hero-carousel-next {
        width: 42px;
        height: 42px;
    }

    .about-img-a {
        width: 86%;
    }

    .about-img-b {
        width: 48%;
    }

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

    .about-stats strong {
        font-size: 1.55rem;
    }

    .about-stats span {
        font-size: .62rem;
        line-height: 1.4;
    }

    .proj-card {
        flex-basis: 88%;
    }

    .gallery-next-btn {
        width: 100%;
    }

    .pf-a {
        width: 86%;
    }

    .pf-b {
        width: 48%;
    }

    .stats {
        gap: 25px 12px;
    }

    .stat strong {
        font-size: 1.8rem;
    }

    .stat span {
        font-size: .58rem;
        letter-spacing: .08em;
    }

    .contact-form {
        padding: 18px;
    }

    .contact-marquee span {
        font-size: 3rem;
    }

}


/* ---------- VERY SMALL PHONES ---------- */

@media (max-width: 360px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.65rem;
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 120px;
    }

    .hero-sub {
        font-size: .84rem;
    }

    .about-img-b {
        width: 45%;
    }

    .about-badge {
        padding: 10px 13px;
    }

    .about-badge span {
        font-size: .6rem;
    }

    .proj-card {
        flex-basis: 92%;
    }

    .contact-form {
        padding: 16px;
    }

}


/* ---------- LANDSCAPE MOBILE ---------- */

@media (max-height: 600px) and (orientation: landscape) {

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .scroll-dot {
        display: none;
    }

}

