@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* =========================================
   LUXURY CONCEPTS INTERIORS
   MASTER STYLESHEET
========================================= */

:root {
    --black: #171715;
    --dark: #20201d;
    --cream: #f4f1eb;
    --beige: #e9e5dd;
    --white: #ffffff;
    --text: #5b5750;
    --line: #c7c2b9;

    --heading: "Cormorant Garamond", serif;
    --body: "Inter", sans-serif;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--black);
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.8;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4 {
    font-family: var(--heading);
    font-weight: 500;
    line-height: 1.05;
}

h1 {
    font-size: clamp(48px, 7vw, 100px);
}

h2 {
    font-size: clamp(40px, 5vw, 72px);
}

h3 {
    font-size: 28px;
}

p {
    color: var(--text);
}

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

.section-label {
    display: inline-block;
    margin-bottom: 25px;
    font-family: var(--body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    border: 1px solid var(--black);
    background: transparent;
    color: var(--black);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.btn:hover {
    background: var(--black);
    color: var(--white);
}

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

.btn-light:hover {
    background: var(--white);
    color: var(--black);
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    padding: 22px 5%;
    background: transparent;
    transition: all 0.35s ease;
}

.site-header.scrolled {
    padding-top: 14px;
    padding-bottom: 14px;
    background: rgba(244, 241, 235, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: var(--heading);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--black);
}

.logo-text span {
    margin-top: 8px;
    color: var(--black);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 6px;
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;
    padding: 8px 0;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    color: var(--black);
    font-size: 27px;
    cursor: pointer;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 290px;
    height: 100vh;
    z-index: 9999;

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

    padding: 45px;

    background: var(--black);
    color: var(--white);

    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-menu a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);

    font-family: var(--heading);
    font-size: 25px;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;

    border: 0;
    background: transparent;
    color: var(--white);

    font-size: 34px;
    cursor: pointer;
}

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

.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 160px 7% 100px;

    background:
        linear-gradient(
            rgba(23, 23, 21, 0.48),
            rgba(23, 23, 21, 0.60)
        ),
        url("images/image18.jpg") center/cover no-repeat;

    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.35),
        transparent
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
}

.hero .section-label {
    color: var(--white);
}

.hero h1 {
    max-width: 1000px;
    margin-bottom: 30px;
}

.hero p {
    max-width: 720px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.88);
    font-size: 16px;
}

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

.intro-section {
    padding: 150px 7%;
    background: var(--cream);
}

.intro-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 70px;
}

.intro-number {
    padding-top: 8px;

    font-family: var(--heading);
    font-size: 28px;
    color: #8a857c;
}

.intro-content {
    max-width: 900px;
}

.intro-content h2 {
    max-width: 800px;
    margin-bottom: 35px;
}

.intro-content p {
    max-width: 760px;
    margin-bottom: 20px;
}

/* =========================================
   SPLIT SECTION
========================================= */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.split-image {
    min-height: 650px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.split-image:hover img {
    transform: scale(1.04);
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 100px 9%;

    background: var(--beige);
}

.split-content h2 {
    margin-bottom: 35px;
}

.split-content p {
    max-width: 600px;
    margin-bottom: 20px;
}

.split-content .btn {
    width: fit-content;
    margin-top: 20px;
}

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

.features-section {
    padding: 150px 7%;
    background: var(--cream);
}

.features-heading {
    max-width: 850px;
    margin-bottom: 80px;
}

.features-heading h2 {
    margin-bottom: 30px;
}

.features-heading p {
    max-width: 700px;
}

.features-grid {
    max-width: 1250px;
    margin: auto;

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

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

.feature-card {
    min-height: 220px;
    padding: 40px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    transition: background 0.35s ease;
}

.feature-card:hover {
    background: var(--beige);
}

.feature-card span {
    display: block;
    margin-bottom: 45px;

    font-family: var(--heading);
    font-size: 18px;
    color: #8a857c;
}

.feature-card h3 {
    font-size: 27px;
}

/* =========================================
   PHILOSOPHY
========================================= */

.philosophy-section {
    padding: 170px 7%;
    background: var(--dark);
    color: var(--white);
}

.philosophy-section h2 {
    max-width: 900px;
    margin-bottom: 45px;
}

.philosophy-section p {
    max-width: 850px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.72);
}

.philosophy-section .section-label {
    color: rgba(255,255,255,0.65);
}

/* =========================================
   TESTIMONIAL
========================================= */

.testimonial-section {
    padding: 150px 7%;
    text-align: center;
    background: var(--beige);
}

.testimonial-section blockquote {
    max-width: 1000px;
    margin: 30px auto 35px;

    font-family: var(--heading);
    font-size: clamp(30px, 4vw, 55px);
    line-height: 1.15;
}

.testimonial-author {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
}

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

.final-cta {
    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 100px 7%;

    background:
        linear-gradient(
            rgba(23,23,21,0.65),
            rgba(23,23,21,0.72)
        ),
        url("images/image24.jpg") center/cover no-repeat;

    color: var(--white);
}

.final-content {
    max-width: 850px;
}

.final-content h2 {
    margin-bottom: 30px;
}

.final-content p {
    max-width: 700px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
}

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

.site-footer {
    background: var(--black);
    color: var(--white);
}

.footer-top {
    max-width: 1400px;
    margin: auto;

    padding: 90px 7%;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h2 {
    margin-bottom: 20px;
    font-size: 36px;
}

.footer-brand p {
    max-width: 350px;
    color: rgba(255,255,255,0.6);
}

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

.footer-column h3 {
    margin-bottom: 20px;

    font-family: var(--body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-column a {
    margin-bottom: 9px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: space-between;

    padding: 25px 7%;

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

    color: rgba(255,255,255,0.45);
    font-size: 10px;
    letter-spacing: 1px;
}

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

.whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 55px;
    height: 55px;

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

    z-index: 8000;

    border-radius: 50%;
    background: #171715;
    color: white;

    font-size: 25px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.18);

    transition: transform 0.3s ease;
}

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

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

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav a {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .intro-grid {
        grid-template-columns: 70px 1fr;
        gap: 40px;
    }

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

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

@media (max-width: 800px) {

    body {
        font-size: 14px;
    }

    .site-header {
        padding: 15px 5%;
    }

    .site-header.scrolled {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .logo {
        gap: 12px;
    }

    .logo img {
        width: 55px;
        height: 55px;
    }

    .logo-text strong {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .logo-text span {
        margin-top: 6px;
        font-size: 9px;
        letter-spacing: 4px;
    }

    /* HERO */

    .hero {
        min-height: 100svh;
        padding: 150px 7% 80px;
        align-items: flex-end;
    }

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

    .hero p {
        font-size: 14px;
    }

    /* INTRO */

    .intro-section {
        padding: 100px 7%;
    }

    .intro-grid {
        display: block;
    }

    .intro-number {
        margin-bottom: 25px;
    }

    .intro-content h2 {
        font-size: 45px;
    }

    /* SPLIT */

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 450px;
    }

    .split-content {
        padding: 85px 7%;
    }

    .split-content h2 {
        font-size: 44px;
    }

    /* FEATURES */

    .features-section {
        padding: 100px 7%;
    }

    .features-heading {
        margin-bottom: 55px;
    }

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

    .feature-card {
        min-height: 180px;
        padding: 30px;
    }

    .feature-card span {
        margin-bottom: 30px;
    }

    /* PHILOSOPHY */

    .philosophy-section {
        padding: 110px 7%;
    }

    .philosophy-section h2 {
        font-size: 45px;
    }

    /* TESTIMONIAL */

    .testimonial-section {
        padding: 100px 7%;
    }

    .testimonial-section blockquote {
        font-size: 34px;
    }

    /* CTA */

    .final-cta {
        min-height: 600px;
        padding: 90px 7%;
    }

    .final-content h2 {
        font-size: 45px;
    }

    /* FOOTER */

    .footer-top {
        grid-template-columns: 1fr;
        padding: 70px 7%;
        gap: 45px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding: 22px 7%;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        right: 18px;
        bottom: 18px;
    }
}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 430px) {

    .logo img {
        width: 48px;
        height: 48px;
    }

    .logo-text strong {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .logo-text span {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero p {
        font-size: 13px;
    }

    .btn {
        width: 100%;
        padding: 0 18px;
    }

    .intro-content h2,
    .split-content h2,
    .philosophy-section h2,
    .final-content h2 {
        font-size: 39px;
    }

    .testimonial-section blockquote {
        font-size: 30px;
    }

    .mobile-menu {
        width: 260px;
        padding: 35px;
    }
}
/* =========================================
   SCROLL REVEAL
========================================= */

.feature-card,
.service-card,
.portfolio-item,
.process-step,
.contact-detail-card,
.faq-item {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.feature-card.visible,
.service-card.visible,
.portfolio-item.visible,
.process-step.visible,
.contact-detail-card.visible,
.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}


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

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;

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

    padding: 30px;

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

    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.show {
    opacity: 1;
}

.image-lightbox img {
    max-width: 92vw;
    max-height: 88vh;

    object-fit: contain;

    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;

    border: 0;
    background: transparent;

    color: white;
    font-size: 42px;

    cursor: pointer;
}

.lightbox-close:hover {
    opacity: 0.7;
}
/* =========================================
   ABOUT / THE ATELIER
========================================= */

.page-hero {
    position: relative;
    min-height: 75vh;

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

    padding: 150px 7% 90px;

    color: var(--white);

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

.about-hero {
    background-image:
        linear-gradient(
            rgba(23, 23, 21, 0.45),
            rgba(23, 23, 21, 0.72)
        ),
        url("images/image23.jpg");
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

    width: 100%;
    max-width: 1050px;
}

.page-hero-content .section-label {
    color: rgba(255,255,255,0.75);
}

.page-hero-content h1 {
    max-width: 1000px;
    margin-bottom: 25px;
}

.page-hero-content p {
    max-width: 600px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
}


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

.about-intro {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 70px;

    padding: 150px 7%;
}

.about-intro-number {
    padding-top: 10px;

    font-family: var(--heading);
    font-size: 30px;

    color: #8a857c;
}

.about-intro-content {
    max-width: 950px;
}

.about-intro-content h2 {
    max-width: 900px;
    margin-bottom: 45px;
}

.about-intro-content p {
    max-width: 800px;
    margin-bottom: 20px;
}


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

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

    min-height: 720px;
}

.about-feature-image {
    min-height: 650px;
    overflow: hidden;
}

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

    object-fit: cover;

    transition: transform 0.8s ease;
}

.about-feature-image:hover img {
    transform: scale(1.04);
}

.about-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 100px 9%;

    background: var(--beige);
}

.about-feature-content h2 {
    max-width: 700px;
    margin-bottom: 35px;
}

.about-feature-content p {
    max-width: 650px;
    margin-bottom: 18px;
}


/* =========================================
   APPROACH
========================================= */

.approach-section {
    padding: 160px 7%;

    background: var(--cream);
}

.approach-heading {
    max-width: 950px;
    margin-bottom: 65px;
}

.approach-heading h2 {
    max-width: 900px;
}

.approach-content {
    max-width: 800px;
    margin-left: auto;
    margin-bottom: 90px;
}

.approach-content p {
    margin-bottom: 20px;
}

.approach-points {
    max-width: 1250px;
    margin: auto;

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

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

.approach-point {
    min-height: 270px;
    padding: 35px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    transition: background 0.35s ease;
}

.approach-point:hover {
    background: var(--beige);
}

.approach-point span {
    display: block;

    margin-bottom: 50px;

    font-family: var(--heading);
    font-size: 19px;

    color: #8a857c;
}

.approach-point h3 {
    margin-bottom: 15px;

    font-family: var(--heading);
    font-size: 30px;
}

.approach-point p {
    font-size: 13px;
}


/* =========================================
   DIFFERENCE SECTION
========================================= */

.difference-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr;

    gap: 100px;

    padding: 160px 7%;

    background: var(--beige);
}

.difference-heading {
    position: sticky;
    top: 130px;

    align-self: start;
}

.difference-heading h2 {
    max-width: 550px;
}

.difference-list {
    border-top: 1px solid var(--line);
}

.difference-item {
    display: grid;
    grid-template-columns: 70px 1fr;

    gap: 25px;

    padding: 35px 0;

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

.difference-item > span {
    font-family: var(--heading);
    font-size: 20px;
    color: #8a857c;
}

.difference-item h3 {
    margin-bottom: 10px;

    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.difference-item p {
    max-width: 600px;
    font-size: 14px;
}


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

.about-image-break {
    position: relative;

    min-height: 650px;

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

    padding: 100px 7%;

    text-align: center;

    background:
        linear-gradient(
            rgba(23,23,21,0.48),
            rgba(23,23,21,0.68)
        ),
        url("images/image2.jpg") center/cover no-repeat;

    color: var(--white);
}

.about-image-break-overlay {
    position: absolute;
    inset: 0;
}

.about-image-break-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.about-image-break-content .section-label {
    color: rgba(255,255,255,0.75);
}

.about-image-break-content h2 {
    font-size: clamp(45px, 6vw, 80px);
}


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

.about-cta {
    padding: 150px 7%;

    text-align: center;

    background: var(--cream);
}

.about-cta h2 {
    max-width: 850px;
    margin: 0 auto 30px;
}

.about-cta p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.about-cta .btn {
    width: auto;
}


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

@media (max-width: 1050px) {

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

    .difference-section {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .difference-heading {
        position: static;
    }

}


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

@media (max-width: 800px) {

    .page-hero {
        min-height: 70vh;
        padding: 140px 7% 70px;
    }

    .page-hero-content h1 {
        font-size: 47px;
    }

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


    /* INTRO */

    .about-intro {
        display: block;
        padding: 100px 7%;
    }

    .about-intro-number {
        margin-bottom: 25px;
    }

    .about-intro-content h2 {
        font-size: 43px;
    }


    /* FEATURE */

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

    .about-feature-image {
        min-height: 450px;
    }

    .about-feature-content {
        padding: 90px 7%;
    }

    .about-feature-content h2 {
        font-size: 43px;
    }


    /* APPROACH */

    .approach-section {
        padding: 100px 7%;
    }

    .approach-heading {
        margin-bottom: 50px;
    }

    .approach-heading h2 {
        font-size: 43px;
    }

    .approach-content {
        margin-bottom: 60px;
    }

    .approach-points {
        grid-template-columns: 1fr;
    }

    .approach-point {
        min-height: auto;
        padding: 30px;
    }

    .approach-point span {
        margin-bottom: 25px;
    }


    /* DIFFERENCE */

    .difference-section {
        display: block;

        padding: 100px 7%;
    }

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

    .difference-heading h2 {
        font-size: 43px;
    }

    .difference-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }


    /* IMAGE */

    .about-image-break {
        min-height: 520px;
        padding: 80px 7%;
    }

    .about-image-break-content h2 {
        font-size: 45px;
    }


    /* CTA */

    .about-cta {
        padding: 100px 7%;
    }

    .about-cta h2 {
        font-size: 43px;
    }

    .about-cta .btn {
        width: 100%;
    }

}
/* =========================================
   SERVICES PAGE
========================================= */

.services-hero {
    background-image:
        linear-gradient(
            rgba(23, 23, 21, 0.45),
            rgba(23, 23, 21, 0.72)
        ),
        url("images/image3.jpg");
}


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

.services-intro {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 70px;

    padding: 150px 7%;
}

.services-intro-number {
    padding-top: 10px;

    font-family: var(--heading);
    font-size: 30px;

    color: #8a857c;
}

.services-intro-content {
    max-width: 950px;
}

.services-intro-content h2 {
    max-width: 900px;
    margin-bottom: 45px;
}

.services-intro-content p {
    max-width: 800px;
    margin-bottom: 20px;
}


/* =========================================
   SERVICE DETAIL
========================================= */

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 720px;

    background: var(--cream);
}

.service-detail:nth-of-type(even) {
    background: var(--beige);
}


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

.service-detail-image {
    min-height: 650px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.04);
}


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

.service-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 100px 9%;
}

.service-number {
    display: block;

    margin-bottom: 25px;

    font-family: var(--heading);
    font-size: 24px;

    color: #8a857c;
}

.service-detail-content .section-label {
    margin-bottom: 18px;
}

.service-detail-content h2 {
    max-width: 650px;

    margin-bottom: 25px;

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

.service-detail-content h3 {
    max-width: 620px;

    margin-bottom: 30px;

    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-detail-content p {
    max-width: 650px;

    margin-bottom: 18px;

    font-size: 14px;
}


/* =========================================
   ALTERNATING SERVICE SECTIONS
========================================= */

.service-detail-reverse {
    background: var(--beige);
}

.service-detail-reverse .service-detail-image {
    order: 2;
}

.service-detail-reverse .service-detail-content {
    order: 1;
}


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

.services-cta {
    padding: 160px 7%;

    text-align: center;

    background: var(--dark);
    color: var(--white);
}

.services-cta .section-label {
    color: rgba(255,255,255,0.65);
}

.services-cta h2 {
    max-width: 800px;

    margin: 0 auto 35px;

    font-size: clamp(48px, 6vw, 80px);
}

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

    margin: 0 auto 8px;

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

.services-cta .btn {
    margin-top: 35px;

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

.services-cta .btn:hover {
    background: var(--white);
    color: var(--black);
}


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

@media (max-width: 1050px) {

    .services-intro {
        grid-template-columns: 70px 1fr;
        gap: 40px;
    }

    .service-detail-content {
        padding: 80px 7%;
    }

    .service-detail-content h2 {
        font-size: 48px;
    }

}


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

@media (max-width: 800px) {

    /* Hero */

    .services-hero {
        min-height: 70vh;
    }

    .services-hero .page-hero-content h1 {
        font-size: 45px;
    }


    /* Intro */

    .services-intro {
        display: block;

        padding: 100px 7%;
    }

    .services-intro-number {
        margin-bottom: 25px;
    }

    .services-intro-content h2 {
        font-size: 43px;
    }


    /* Service */

    .service-detail {
        display: flex;
        flex-direction: column;

        min-height: auto;
    }

    .service-detail-image {
        min-height: 430px;

        order: 1 !important;
    }

    .service-detail-content {
        order: 2 !important;

        padding: 85px 7%;
    }

    .service-detail-content h2 {
        font-size: 43px;
    }

    .service-detail-content h3 {
        font-size: 11px;
    }

    .service-detail-content p {
        font-size: 14px;
    }


    /* CTA */

    .services-cta {
        padding: 110px 7%;
    }

    .services-cta h2 {
        font-size: 45px;
    }

}
/* =========================================================
   PORTFOLIO PAGE
   ========================================================= */


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

.portfolio-hero {
    min-height: 78vh;
    background-image: url("images/image5.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.portfolio-hero .page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.28),
            rgba(0, 0, 0, 0.15)
        );
}

.portfolio-hero .page-hero-content {
    max-width: 850px;
}

.portfolio-hero h1 {
    font-family: var(--heading);
    font-size: clamp(60px, 9vw, 120px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 20px 0 30px;
}

.portfolio-hero p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.8;
}



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

.portfolio-intro {
    padding: 140px 8%;
    background: var(--cream);
}

.portfolio-intro-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.portfolio-intro h2 {
    font-family: var(--heading);
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 500;
    line-height: 0.98;
    color: var(--black);
    margin: 25px 0 35px;
    letter-spacing: -1px;
}

.portfolio-intro p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}



/* ================= PROJECTS ================= */

.portfolio-projects {
    background: var(--white);
    padding: 0;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    min-height: 720px;
    background: var(--cream);
}

.portfolio-item:nth-child(even) {
    background: var(--beige);
}

.portfolio-item.portfolio-reverse {
    grid-template-columns: 0.75fr 1.25fr;
}

.portfolio-item.portfolio-reverse .portfolio-image {
    order: 2;
}

.portfolio-item.portfolio-reverse .portfolio-content {
    order: 1;
}



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

.portfolio-image {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    cursor: pointer;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(.2,.65,.3,1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.045);
}



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

.portfolio-content {
    padding: 90px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-number {
    font-family: var(--heading);
    font-size: 72px;
    line-height: 1;
    font-weight: 400;
    color: rgba(23, 23, 21, 0.14);
    margin-bottom: 35px;
}

.portfolio-content .section-label {
    margin-bottom: 22px;
}

.portfolio-content h2 {
    font-family: var(--heading);
    font-size: clamp(42px, 4vw, 66px);
    font-weight: 500;
    line-height: 0.98;
    color: var(--black);
    margin: 0 0 30px;
    letter-spacing: -1px;
}

.portfolio-content p {
    max-width: 500px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 45px;
}



/* ================= PROJECT META ================= */

.portfolio-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    max-width: 500px;
}

.portfolio-meta span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--black);
}



/* ================= PROJECT PLACEHOLDER ================= */

.portfolio-placeholder {
    background: #ddd9d1;
}

.portfolio-placeholder-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 23, 21, 0.2);
}

.portfolio-placeholder-overlay span {
    padding: 14px 25px;
    border: 1px solid rgba(255,255,255,0.7);
    color: var(--white);
    font-size: 11px;
    letter-spacing: 3px;
}



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

.gallery-intro {
    padding: 150px 8% 80px;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.gallery-intro .section-label {
    color: #d5d0c8;
}

.gallery-intro h2 {
    font-family: var(--heading);
    font-size: clamp(55px, 7vw, 100px);
    line-height: 0.95;
    font-weight: 500;
    margin: 25px 0 30px;
}

.gallery-intro p {
    max-width: 620px;
    margin: auto;
    color: #c5c1ba;
    font-size: 15px;
    line-height: 1.9;
}



/* ================= GALLERY ================= */

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--black);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    background: var(--dark);
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
    height: 620px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 1s cubic-bezier(.2,.65,.3,1),
        opacity 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    opacity: 0.88;
}



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

.portfolio-statement {
    padding: 160px 8%;
    background: var(--cream);
}

.portfolio-statement-inner {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.portfolio-statement h2 {
    font-family: var(--heading);
    font-size: clamp(60px, 8vw, 115px);
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 30px 0 45px;
    color: var(--black);
}

.portfolio-statement p {
    max-width: 680px;
    margin: auto;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}



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

.portfolio-cta {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-image: url("images/image6.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
}

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

.portfolio-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 60px 25px;
}

.portfolio-cta-content .section-label {
    color: #ddd8cf;
}

.portfolio-cta-content h2 {
    font-family: var(--heading);
    font-size: clamp(55px, 7vw, 100px);
    line-height: 0.9;
    font-weight: 500;
    margin: 25px 0 30px;
}

.portfolio-cta-content p {
    max-width: 550px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #e3e0da;
}



/* ================= PORTFOLIO CTA BUTTON ================= */

.btn-light {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
}



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

@media (max-width: 1000px) {

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

    .portfolio-item.portfolio-reverse .portfolio-image,
    .portfolio-item.portfolio-reverse .portfolio-content {
        order: initial;
    }

    .portfolio-image,
    .portfolio-image img {
        min-height: 550px;
    }

    .portfolio-content {
        padding: 80px 8%;
    }

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

    .gallery-item,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(5) {
        height: 480px;
    }
}



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

@media (max-width: 800px) {

    .portfolio-hero {
        min-height: 70vh;
    }

    .portfolio-hero h1 {
        font-size: clamp(52px, 14vw, 85px);
    }

    .portfolio-hero p {
        font-size: 15px;
    }

    .portfolio-intro {
        padding: 100px 7%;
    }

    .portfolio-intro h2 {
        font-size: clamp(44px, 10vw, 68px);
    }

    .portfolio-content {
        padding: 70px 7%;
    }

    .portfolio-number {
        font-size: 58px;
        margin-bottom: 25px;
    }

    .portfolio-content h2 {
        font-size: clamp(40px, 9vw, 60px);
    }

    .portfolio-content p {
        font-size: 14px;
    }

    .gallery-intro {
        padding: 100px 7% 60px;
    }

    .gallery-intro h2 {
        font-size: clamp(52px, 13vw, 80px);
    }

    .portfolio-statement {
        padding: 110px 7%;
    }

    .portfolio-statement h2 {
        font-size: clamp(55px, 13vw, 90px);
    }

    .portfolio-cta {
        min-height: 560px;
    }

    .portfolio-cta-content h2 {
        font-size: clamp(50px, 13vw, 80px);
    }
}



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

@media (max-width: 600px) {

    .portfolio-hero {
        min-height: 65vh;
        background-position: center;
    }

    .portfolio-hero .page-hero-content {
        padding: 30px 20px;
    }

    .portfolio-hero h1 {
        font-size: 55px;
        letter-spacing: -1px;
        margin: 15px 0 22px;
    }

    .portfolio-hero p {
        font-size: 14px;
        line-height: 1.7;
    }


    .portfolio-intro {
        padding: 85px 22px;
    }

    .portfolio-intro h2 {
        font-size: 45px;
        line-height: 0.96;
    }

    .portfolio-intro p {
        font-size: 14px;
        line-height: 1.8;
    }


    .portfolio-image,
    .portfolio-image img {
        min-height: 420px;
        height: 420px;
    }


    .portfolio-content {
        padding: 60px 22px;
    }

    .portfolio-number {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .portfolio-content h2 {
        font-size: 43px;
        line-height: 0.95;
        margin-bottom: 25px;
    }

    .portfolio-content p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

    .portfolio-meta {
        gap: 15px;
    }


    /* Gallery */

    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .gallery-item,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(5) {
        height: 420px;
    }


    .gallery-intro {
        padding: 90px 22px 55px;
    }

    .gallery-intro h2 {
        font-size: 52px;
        margin: 20px 0 25px;
    }

    .gallery-intro p {
        font-size: 14px;
        line-height: 1.8;
    }


    /* Statement */

    .portfolio-statement {
        padding: 100px 22px;
    }

    .portfolio-statement h2 {
        font-size: 57px;
        line-height: 0.9;
        letter-spacing: -1px;
        margin: 25px 0 35px;
    }

    .portfolio-statement p {
        font-size: 14px;
        line-height: 1.8;
    }


    /* CTA */

    .portfolio-cta {
        min-height: 500px;
    }

    .portfolio-cta-content {
        padding: 45px 22px;
    }

    .portfolio-cta-content h2 {
        font-size: 52px;
        line-height: 0.9;
        margin: 20px 0 25px;
    }

    .portfolio-cta-content p {
        font-size: 14px;
        line-height: 1.7;
    }

}



/* ================= SMALL PHONES ================= */

@media (max-width: 380px) {

    .portfolio-hero h1 {
        font-size: 48px;
    }

    .portfolio-intro h2 {
        font-size: 40px;
    }

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

    .portfolio-statement h2 {
        font-size: 48px;
    }

    .portfolio-cta-content h2 {
        font-size: 46px;
    }

}
/* =========================================================
   OUR PROCESS PAGE
   ========================================================= */


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

.process-hero {
    min-height: 78vh;
    background-image: url("images/image2.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.process-hero .page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.15)
        );
}

.process-hero h1 {
    font-family: var(--heading);
    font-size: clamp(60px, 9vw, 120px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 20px 0 25px;
}

.process-hero p {
    font-family: var(--heading);
    font-size: clamp(25px, 3vw, 40px);
    line-height: 1.1;
    max-width: 600px;
}



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

.process-intro {
    padding: 150px 8%;
    background: var(--cream);
}

.process-intro-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.process-intro h2 {
    font-family: var(--heading);
    font-size: clamp(55px, 7vw, 100px);
    font-weight: 500;
    line-height: 0.9;
    color: var(--black);
    margin: 28px 0 40px;
    letter-spacing: -2px;
}

.process-intro p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}



/* ================= PROCESS STEPS ================= */

.process-steps-section {
    background: var(--white);
}

.process-step {
    display: grid;
    grid-template-columns: 0.2fr 0.8fr 1fr;
    min-height: 650px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.process-step:nth-child(even) {
    background: var(--beige);
}


/* Reverse layout */

.process-step-reverse {
    grid-template-columns: 1fr 0.8fr 0.2fr;
}

.process-step-reverse .process-step-image {
    order: 1;
}

.process-step-reverse .process-step-content {
    order: 2;
}

.process-step-reverse .process-step-number {
    order: 3;
}



/* ================= PROCESS NUMBER ================= */

.process-step-number {
    padding: 70px 20px;
    font-family: var(--heading);
    font-size: 65px;
    font-weight: 400;
    line-height: 1;
    color: rgba(23, 23, 21, 0.18);
}



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

.process-step-content {
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-step-content .section-label {
    margin-bottom: 25px;
}

.process-step-content h2 {
    font-family: var(--heading);
    font-size: clamp(45px, 5vw, 75px);
    line-height: 0.92;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 30px;
    letter-spacing: -1px;
}

.process-step-content p {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
}



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

.process-step-image {
    position: relative;
    overflow: hidden;
    min-height: 650px;
}

.process-step-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    display: block;
    transition: transform 1.1s cubic-bezier(.2,.65,.3,1);
}

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



/* ================= PROCESS STATEMENT ================= */

.process-statement {
    padding: 170px 8%;
    background: var(--black);
    color: var(--white);
}

.process-statement-inner {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.process-statement .section-label {
    color: #d3cec5;
}

.process-statement h2 {
    font-family: var(--heading);
    font-size: clamp(60px, 8vw, 115px);
    line-height: 0.85;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 30px 0 50px;
}

.process-statement p {
    max-width: 680px;
    margin: auto;
    color: #c8c3bb;
    font-size: 16px;
    line-height: 1.9;
}



/* ================= FAQ ================= */

.faq-section {
    padding: 150px 8%;
    background: var(--cream);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.faq-intro {
    position: sticky;
    top: 130px;
    align-self: start;
}

.faq-intro h2 {
    font-family: var(--heading);
    font-size: clamp(55px, 6vw, 90px);
    line-height: 0.88;
    font-weight: 500;
    color: var(--black);
    margin: 25px 0 30px;
}

.faq-intro p {
    max-width: 400px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    padding: 35px 0;
    border-bottom: 1px solid var(--line);
}

.faq-item h3 {
    font-family: var(--heading);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 15px;
}

.faq-item p {
    max-width: 700px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}



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

.process-cta {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-image: url("images/image7.jpg");
    background-size: cover;
    background-position: center;

    color: var(--white);
}

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

.process-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 60px 25px;
}

.process-cta-content .section-label {
    color: #ddd8cf;
}

.process-cta-content h2 {
    font-family: var(--heading);
    font-size: clamp(60px, 8vw, 110px);
    line-height: 0.87;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 25px 0 30px;
}

.process-cta-content p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #e2ded6;
    font-size: 16px;
    line-height: 1.8;
}



/* =========================================================
   PROCESS RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .process-step {
        grid-template-columns: 0.15fr 0.85fr 1fr;
    }

    .process-step-reverse {
        grid-template-columns: 1fr 0.85fr 0.15fr;
    }

    .process-step-number {
        font-size: 52px;
    }

    .process-step-content {
        padding: 70px 6%;
    }

    .faq-section {
        gap: 60px;
    }
}



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

@media (max-width: 800px) {

    .process-hero {
        min-height: 70vh;
    }

    .process-hero h1 {
        font-size: clamp(55px, 13vw, 90px);
    }

    .process-intro {
        padding: 105px 7%;
    }

    .process-intro h2 {
        font-size: clamp(50px, 11vw, 80px);
    }


    /* Process becomes image + content */

    .process-step,
    .process-step-reverse {
        display: grid;
        grid-template-columns: 1fr;
    }

    .process-step-number,
    .process-step-reverse .process-step-number {
        order: 1;
        padding: 45px 7% 10px;
        font-size: 55px;
    }

    .process-step-image,
    .process-step-reverse .process-step-image {
        order: 2;
        min-height: 500px;
    }

    .process-step-image img {
        min-height: 500px;
    }

    .process-step-content,
    .process-step-reverse .process-step-content {
        order: 3;
        padding: 65px 7% 80px;
    }

    .process-step-content h2 {
        font-size: clamp(45px, 10vw, 70px);
    }


    /* FAQ */

    .faq-section {
        grid-template-columns: 1fr;
        gap: 70px;
        padding: 110px 7%;
    }

    .faq-intro {
        position: static;
    }

    .faq-intro h2 {
        font-size: clamp(55px, 12vw, 85px);
    }


    /* Statement */

    .process-statement {
        padding: 120px 7%;
    }

    .process-statement h2 {
        font-size: clamp(55px, 13vw, 90px);
    }


    /* CTA */

    .process-cta {
        min-height: 560px;
    }

    .process-cta-content h2 {
        font-size: clamp(55px, 13vw, 90px);
    }
}



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

@media (max-width: 600px) {

    .process-hero {
        min-height: 65vh;
        background-position: center;
    }

    .process-hero .page-hero-content {
        padding: 30px 22px;
    }

    .process-hero h1 {
        font-size: 55px;
        letter-spacing: -1px;
        margin: 15px 0 20px;
    }

    .process-hero p {
        font-size: 25px;
    }


    .process-intro {
        padding: 85px 22px;
    }

    .process-intro h2 {
        font-size: 48px;
        line-height: 0.93;
    }

    .process-intro p {
        font-size: 14px;
        line-height: 1.8;
    }


    /* Steps */

    .process-step-number {
        padding: 35px 22px 8px;
        font-size: 48px;
    }

    .process-step-image,
    .process-step-image img {
        min-height: 390px;
        height: 390px;
    }

    .process-step-content {
        padding: 55px 22px 70px;
    }

    .process-step-content h2 {
        font-size: 43px;
        line-height: 0.95;
        margin-bottom: 25px;
    }

    .process-step-content p {
        font-size: 14px;
        line-height: 1.8;
    }


    /* Statement */

    .process-statement {
        padding: 95px 22px;
    }

    .process-statement h2 {
        font-size: 57px;
        line-height: 0.87;
        margin: 25px 0 35px;
    }

    .process-statement p {
        font-size: 14px;
        line-height: 1.8;
    }


    /* FAQ */

    .faq-section {
        padding: 90px 22px;
        gap: 55px;
    }

    .faq-intro h2 {
        font-size: 53px;
        line-height: 0.9;
    }

    .faq-intro p {
        font-size: 14px;
    }

    .faq-item {
        padding: 28px 0;
    }

    .faq-item h3 {
        font-size: 25px;
    }

    .faq-item p {
        font-size: 14px;
        line-height: 1.75;
    }


    /* CTA */

    .process-cta {
        min-height: 500px;
    }

    .process-cta-content {
        padding: 45px 22px;
    }

    .process-cta-content h2 {
        font-size: 52px;
        line-height: 0.9;
        letter-spacing: -1px;
    }

    .process-cta-content p {
        font-size: 14px;
        line-height: 1.75;
    }

}



/* ================= SMALL PHONES ================= */

@media (max-width: 380px) {

    .process-hero h1 {
        font-size: 48px;
    }

    .process-intro h2 {
        font-size: 42px;
    }

    .process-step-content h2 {
        font-size: 38px;
    }

    .process-statement h2 {
        font-size: 48px;
    }

    .faq-intro h2 {
        font-size: 46px;
    }

    .process-cta-content h2 {
        font-size: 46px;
    }

}
/* =========================================================
   CONTACT PAGE
   ========================================================= */


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

.contact-hero {
    min-height: 78vh;
    background-image: url("images/image8.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-hero .page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.80),
            rgba(0, 0, 0, 0.38),
            rgba(0, 0, 0, 0.15)
        );
}

.contact-hero h1 {
    font-family: var(--heading);
    font-size: clamp(60px, 9vw, 120px);
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 20px 0 30px;
}

.contact-hero p {
    font-family: var(--heading);
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.1;
}



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

.contact-intro {
    padding: 150px 8%;
    background: var(--cream);
}

.contact-intro-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.contact-intro h2 {
    font-family: var(--heading);
    font-size: clamp(50px, 7vw, 100px);
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -2px;
    color: var(--black);
    margin: 28px 0 40px;
}

.contact-intro p {
    max-width: 700px;
    margin: 0 auto 18px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}



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

.contact-information {
    padding: 0 8% 140px;
    background: var(--cream);
}

.contact-information-grid {
    max-width: 1300px;
    margin: auto;

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

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

.contact-detail-card {
    padding: 55px 35px;
    min-height: 280px;

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

.contact-detail-card:last-child {
    border-right: none;
}

.contact-detail-number {
    display: block;

    font-family: var(--heading);
    font-size: 48px;
    line-height: 1;

    color: rgba(23, 23, 21, 0.16);

    margin-bottom: 35px;
}

.contact-detail-card .section-label {
    display: block;
    margin-bottom: 18px;
}

.contact-detail-card h3 {
    font-family: var(--heading);
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    margin: 0 0 20px;
    color: var(--black);
}

.contact-detail-card p,
.contact-detail-card a {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    text-decoration: none;
}

.contact-detail-card a {
    transition: color 0.3s ease;
}

.contact-detail-card a:hover {
    color: var(--black);
}



/* ================= PROJECT ENQUIRY ================= */

.project-enquiry {
    padding: 150px 8%;
    background: var(--white);

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;

    max-width: 1600px;
    margin: auto;
}

.project-enquiry-intro {
    align-self: start;
    position: sticky;
    top: 130px;
}

.project-enquiry-intro h2 {
    font-family: var(--heading);
    font-size: clamp(52px, 6vw, 90px);
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -2px;
    color: var(--black);
    margin: 25px 0 35px;
}

.project-enquiry-intro > p {
    max-width: 450px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.9;
}



/* ================= ENQUIRY NOTE ================= */

.enquiry-note {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    max-width: 450px;
}

.enquiry-note > span {
    display: block;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;

    color: var(--black);

    margin-bottom: 12px;
}

.enquiry-note p {
    margin: 0;

    font-size: 13px;
    line-height: 1.7;

    color: var(--text);
}



/* ================= FORM ================= */

.project-enquiry-form {
    width: 100%;
}

.enquiry-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--black);

    margin-bottom: 12px;
}

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

    padding: 18px 0;

    border: none;
    border-bottom: 1px solid var(--line);

    background: transparent;

    border-radius: 0;

    outline: none;

    font-family: var(--body);
    font-size: 14px;

    color: var(--black);

    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa59c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--black);
}

.form-group select {
    cursor: pointer;
    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #555 50%),
        linear-gradient(135deg, #555 50%, transparent 50%);

    background-position:
        calc(100% - 8px) 50%,
        calc(100% - 3px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.form-group textarea {
    min-height: 170px;
    resize: vertical;
}



/* ================= FORM SUBMIT ================= */

.form-submit {
    grid-column: 1 / -1;
    padding-top: 15px;
}

.form-submit .btn {
    cursor: pointer;
}



/* ================= WHATSAPP SECTION ================= */

.contact-whatsapp {
    padding: 150px 8%;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.contact-whatsapp-inner {
    max-width: 800px;
    margin: auto;
}

.contact-whatsapp .section-label {
    color: #d4cfc6;
}

.contact-whatsapp h2 {
    font-family: var(--heading);
    font-size: clamp(60px, 8vw, 105px);
    line-height: 0.86;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 25px 0 35px;
}

.contact-whatsapp p {
    max-width: 500px;
    margin: 0 auto 40px;

    font-size: 15px;
    line-height: 1.8;

    color: #c8c3ba;
}



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

.contact-final-cta {
    position: relative;

    min-height: 700px;

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

    text-align: center;

    color: var(--white);

    background-image: url("images/image9.jpg");
    background-size: cover;
    background-position: center;
}

.contact-final-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        rgba(0, 0, 0, 0.63);
}

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

    max-width: 900px;
    padding: 60px 25px;
}

.contact-final-cta-content .section-label {
    color: #ddd8cf;
}

.contact-final-cta-content h2 {
    font-family: var(--heading);
    font-size: clamp(60px, 8vw, 115px);
    line-height: 0.84;
    font-weight: 500;
    letter-spacing: -2px;

    margin: 30px 0 45px;
}



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

@media (max-width: 1100px) {

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

    .contact-detail-card:nth-child(2) {
        border-right: none;
    }

    .contact-detail-card:nth-child(1),
    .contact-detail-card:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .project-enquiry {
        gap: 60px;
    }

}



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

@media (max-width: 800px) {

    .contact-hero {
        min-height: 70vh;
    }

    .contact-hero h1 {
        font-size: clamp(55px, 13vw, 90px);
    }


    .contact-intro {
        padding: 105px 7%;
    }

    .contact-intro h2 {
        font-size: clamp(48px, 11vw, 80px);
    }


    .contact-information {
        padding: 0 7% 100px;
    }

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


    .project-enquiry {
        grid-template-columns: 1fr;
        padding: 110px 7%;
        gap: 70px;
    }

    .project-enquiry-intro {
        position: static;
    }

    .project-enquiry-intro h2 {
        font-size: clamp(55px, 12vw, 85px);
    }


    .contact-whatsapp {
        padding: 110px 7%;
    }

    .contact-whatsapp h2 {
        font-size: clamp(55px, 13vw, 90px);
    }


    .contact-final-cta {
        min-height: 600px;
    }

    .contact-final-cta-content h2 {
        font-size: clamp(55px, 13vw, 90px);
    }

}



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

@media (max-width: 600px) {

    .contact-hero {
        min-height: 65vh;
        background-position: center;
    }

    .contact-hero .page-hero-content {
        padding: 30px 22px;
    }

    .contact-hero h1 {
        font-size: 55px;
        line-height: 0.9;
        letter-spacing: -1px;
        margin: 15px 0 20px;
    }

    .contact-hero p {
        font-size: 26px;
    }


    /* INTRO */

    .contact-intro {
        padding: 85px 22px;
    }

    .contact-intro h2 {
        font-size: 46px;
        line-height: 0.92;
        letter-spacing: -1px;
    }

    .contact-intro p {
        font-size: 14px;
        line-height: 1.8;
    }


    /* CONTACT DETAILS */

    .contact-information {
        padding: 0 22px 85px;
    }

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

    .contact-detail-card,
    .contact-detail-card:nth-child(1),
    .contact-detail-card:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 40px 10px;
        min-height: auto;
    }

    .contact-detail-card:last-child {
        border-bottom: none;
    }

    .contact-detail-number {
        font-size: 42px;
        margin-bottom: 25px;
    }

    .contact-detail-card h3 {
        font-size: 27px;
    }


    /* FORM */

    .project-enquiry {
        padding: 90px 22px;
        gap: 55px;
    }

    .project-enquiry-intro h2 {
        font-size: 50px;
        line-height: 0.9;
    }

    .project-enquiry-intro > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .enquiry-note {
        margin-top: 45px;
    }

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

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

    .form-submit {
        grid-column: auto;
        padding-top: 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 16px 0;
    }


    /* WHATSAPP */

    .contact-whatsapp {
        padding: 90px 22px;
    }

    .contact-whatsapp h2 {
        font-size: 54px;
        line-height: 0.9;
        letter-spacing: -1px;
    }

    .contact-whatsapp p {
        font-size: 14px;
    }


    /* FINAL CTA */

    .contact-final-cta {
        min-height: 500px;
    }

    .contact-final-cta-content {
        padding: 45px 22px;
    }

    .contact-final-cta-content h2 {
        font-size: 53px;
        line-height: 0.88;
        letter-spacing: -1px;
        margin: 22px 0 35px;
    }

}



/* ================= SMALL PHONES ================= */

@media (max-width: 380px) {

    .contact-hero h1 {
        font-size: 48px;
    }

    .contact-intro h2 {
        font-size: 41px;
    }

    .project-enquiry-intro h2 {
        font-size: 44px;
    }

    .contact-whatsapp h2 {
        font-size: 48px;
    }

    .contact-final-cta-content h2 {
        font-size: 46px;
    }

}
/* =========================================================
   FINAL WEBSITE POLISH
   ========================================================= */

/* Smooth page experience */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Better image rendering */
img {
    display: block;
    max-width: 100%;
}

/* Navigation links */
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active navigation page */
.nav-links a.active {
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* Header polish */
.site-header {
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

.site-header.scrolled {
    background: rgba(244, 241, 235, 0.97);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

/* Buttons */
.btn {
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}

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

/* Cards */
.feature-card,
.service-card,
.contact-detail-card {
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        opacity 0.7s ease;
}

.feature-card:hover,
.service-card:hover,
.contact-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Portfolio images */
.portfolio-image {
    overflow: hidden;
}

.portfolio-image img,
.gallery-item img {
    transition: transform 0.7s ease;
}

.portfolio-item:hover .portfolio-image img,
.gallery-item:hover img {
    transform: scale(1.04);
}

/* Form focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

/* Better textarea */
.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

/* Mobile polish */
@media (max-width: 800px) {

    .site-header {
        padding: 15px 0;
    }

    .section-label {
        letter-spacing: 3px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .portfolio-image img,
    .gallery-item img {
        transform: none !important;
    }

    .feature-card:hover,
    .service-card:hover,
    .contact-detail-card:hover {
        transform: none;
    }
}

/* Accessibility */
button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

/* Selection */
::selection {
    background: var(--black);
    color: var(--white);
}
/* =========================================================
   STEP 18 — MOBILE EXPERIENCE
   ========================================================= */

@media (max-width: 800px) {

    /* -----------------------------------------
       GENERAL
       ----------------------------------------- */

    .container {
        width: 90%;
        max-width: 100%;
    }

    section {
        overflow: hidden;
    }

    h1 {
        font-size: 42px;
        line-height: 1.05;
    }

    h2 {
        font-size: 34px;
        line-height: 1.1;
    }

    h3 {
        font-size: 25px;
    }

    p {
        font-size: 15px;
        line-height: 1.8;
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .header-inner {
        min-height: 70px;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        width: 52px;
        height: 52px;
    }

    .logo-text strong {
        font-size: 21px;
        letter-spacing: 2px;
    }

    .logo-text span {
        font-size: 8px;
        letter-spacing: 3px;
        margin-top: 5px;
    }


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

    .mobile-menu {
        width: 85%;
        max-width: 320px;
        padding: 35px;
    }

    .mobile-menu a {
        font-size: 20px;
        margin: 10px 0;
    }


    /* -----------------------------------------
       HERO
       ----------------------------------------- */

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        width: 90%;
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 43px;
        line-height: 1.02;
    }

    .hero p {
        font-size: 15px;
        max-width: 100%;
        line-height: 1.7;
    }


    /* -----------------------------------------
       PAGE HERO
       ----------------------------------------- */

    .page-hero {
        min-height: 65vh;
    }

    .page-hero-content {
        width: 90%;
    }

    .page-hero-content h1 {
        font-size: 42px;
        line-height: 1.05;
    }


    /* -----------------------------------------
       INTRO SECTIONS
       ----------------------------------------- */

    .intro,
    .about-intro,
    .services-intro,
    .portfolio-intro,
    .process-intro,
    .contact-intro {
        padding: 75px 0;
    }

    .intro h2,
    .about-intro h2,
    .services-intro h2,
    .portfolio-intro h2,
    .process-intro h2,
    .contact-intro h2 {
        font-size: 34px;
    }


    /* -----------------------------------------
       SPLIT SECTIONS
       ----------------------------------------- */

    .split-section,
    .about-feature,
    .service-detail,
    .service-detail-reverse,
    .process-step,
    .process-step-reverse {
        display: flex;
        flex-direction: column;
    }

    .split-image,
    .split-content,
    .about-feature-image,
    .about-feature-content,
    .service-detail-image,
    .service-detail-content,
    .process-step-image,
    .process-step-content {
        width: 100%;
    }

    .split-image,
    .service-detail-image,
    .process-step-image {
        min-height: 320px;
    }


    /* -----------------------------------------
       FEATURE CARDS
       ----------------------------------------- */

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 25px;
    }


    /* -----------------------------------------
       SERVICES
       ----------------------------------------- */

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

    .service-detail {
        margin-bottom: 70px;
    }

    .service-detail-content {
        padding: 40px 25px;
    }

    .service-detail-content h2 {
        font-size: 31px;
    }


    /* -----------------------------------------
       PORTFOLIO
       ----------------------------------------- */

    .portfolio-projects {
        gap: 60px;
    }

    .portfolio-item {
        display: block;
    }

    .portfolio-content {
        padding: 30px 5px 0;
    }

    .portfolio-content h2 {
        font-size: 32px;
    }

    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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


    /* -----------------------------------------
       PROCESS
       ----------------------------------------- */

    .process-steps-section {
        padding: 70px 0;
    }

    .process-step {
        gap: 30px;
        margin-bottom: 80px;
    }

    .process-step-number {
        font-size: 55px;
    }

    .process-step-content h2 {
        font-size: 32px;
    }


    /* -----------------------------------------
       FAQ
       ----------------------------------------- */

    .faq-section {
        padding: 70px 0;
    }

    .faq-item {
        padding: 25px 0;
    }

    .faq-item h3 {
        font-size: 21px;
    }


    /* -----------------------------------------
       CONTACT
       ----------------------------------------- */

    .contact-information {
        padding: 70px 0;
    }

    .contact-information-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-detail-card {
        padding: 30px 25px;
    }

    .project-enquiry {
        padding: 70px 0;
    }

    .enquiry-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-submit {
        width: 100%;
    }


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

    .about-cta,
    .services-cta,
    .portfolio-cta,
    .process-cta,
    .contact-final-cta {
        padding: 80px 0;
    }

    .about-cta h2,
    .services-cta h2,
    .portfolio-cta h2,
    .process-cta h2,
    .contact-final-cta h2 {
        font-size: 35px;
    }


    /* -----------------------------------------
       FOOTER
       ----------------------------------------- */

    footer {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    /* -----------------------------------------
       WHATSAPP FLOAT
       ----------------------------------------- */

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    h1,
    .hero h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

    h2,
    .intro h2,
    .about-intro h2,
    .services-intro h2,
    .portfolio-intro h2,
    .process-intro h2,
    .contact-intro h2 {
        font-size: 29px;
    }

    .hero {
        min-height: 85vh;
    }

    .hero-content {
        padding-top: 50px;
    }

    .page-hero {
        min-height: 58vh;
    }

    .logo img {
        width: 48px;
        height: 48px;
    }

    .logo-text strong {
        font-size: 19px;
    }

    .logo-text span {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .mobile-menu {
        width: 88%;
    }
}
/* =========================================================
   SHARED FOOTER
   PORTFOLIO • PROCESS • CONTACT
   ========================================================= */

footer {
    background: var(--black);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-column h3 {
    font-family: var(--heading);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    margin: 0;

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

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

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

.footer-social a:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 25px;

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

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

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}


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

@media (max-width: 800px) {

    footer {
        padding: 55px 0 25px;
    }

    .footer-content {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        width: 90%;
        margin-top: 35px;
        flex-direction: column;
        text-align: center;
    }
}
/* =========================================================
   CINEMATIC HERO VIDEO
   ========================================================= */

.video-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;

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

    z-index: 1;
}

.video-hero .hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.video-hero .section-label {
    color: var(--white);
}

.video-hero h1 {
    color: var(--white);
}

.video-hero p {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 800px) {

    .video-hero {
        min-height: 90vh;
    }

    .hero-video {
        object-position: center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.55);
    }
}