
/* ==========================================================
   DIKURAT
   Premium Interior Design Website
   ========================================================== */

:root {
    --black: #111111;
    --black-soft: #181818;
    --black-card: #202020;

    --white: #ffffff;
    --off-white: #f7f6f3;
    --cream: #eeece6;

    --gold: #b18a55;
    --gold-light: #c9aa78;
    --gold-dark: #8e6c3e;

    --text: #202020;
    --muted: #77736d;
    --border: rgba(0, 0, 0, .10);

    --container: 1240px;

    --ease: cubic-bezier(.2, .8, .2, 1);

    --shadow:
        0 25px 80px rgba(0, 0, 0, .10);
}


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family:
        "Segoe UI",
        Tahoma,
        Arial,
        sans-serif;

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

    line-height: 1.8;

    overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

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

h1, h2, h3, p {
    overflow-wrap: break-word;
}

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

button {
    font: inherit;
}

.container {
    width: min(90%, var(--container));
    margin-inline: auto;
}


/* ==========================================================
   LOADER
   ========================================================== */

.page-loader {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    flex-direction: column;

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

    background: var(--black);

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

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    color: white;

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

    letter-spacing: 5px;
}

.loader-logo span {
    color: var(--gold);
}

.loader-line {
    width: 150px;
    height: 2px;

    margin-top: 22px;

    overflow: hidden;

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

.loader-line span {
    display: block;

    width: 100%;
    height: 100%;

    background: var(--gold);

    transform: translateX(-100%);

    animation: loader 1.4s ease infinite;
}

@keyframes loader {
    to {
        transform: translateX(100%);
    }
}


/* ==========================================================
   SCROLL PROGRESS
   ========================================================== */

.scroll-progress {
    position: fixed;

    top: 0;
    right: 0;

    width: 0;
    height: 3px;

    z-index: 99998;

    background: var(--gold);
}


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

.site-header {
    position: fixed;

    top: 0;
    right: 0;

    width: 100%;

    z-index: 9000;

    color: white;

    transition:
        background .4s ease,
        box-shadow .4s ease,
        color .4s ease;
}

.site-header.scrolled {
    color: var(--black);

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

    backdrop-filter: blur(18px);

    box-shadow:
        0 8px 40px rgba(0,0,0,.07);
}

.header-inner {
    height: 88px;

    display: flex;
    align-items: center;

    gap: 35px;
}


/* BRAND */

.brand {
    display: flex;

    align-items: center;

    font-size: 23px;
    font-weight: 900;

    letter-spacing: 3px;

    white-space: nowrap;
}

.brand-main {
    color: currentColor;
}

.brand-accent {
    color: var(--gold);
}


/* NAV */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 27px;

    margin-inline: auto;
}

.nav-link {
    position: relative;

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

    opacity: .85;

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

.nav-link::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width .3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 22px;
}


/* HEADER ACTIONS */

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}

.header-call,
.header-whatsapp {
    display: inline-flex;

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

    height: 42px;

    padding-inline: 17px;

    border-radius: 5px;

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

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

.header-call {
    gap: 7px;
}

.header-call:hover,
.header-whatsapp:hover {
    transform: translateY(-2px);
}

.header-whatsapp {
    color: white;

    background: var(--gold);
}

.header-call-icon {
    font-size: 17px;
}


/* MOBILE BUTTON */

.mobile-menu-btn {
    display: none;

    width: 45px;
    height: 45px;

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

    background: transparent;

    border-radius: 5px;

    cursor: pointer;
}

.site-header.scrolled .mobile-menu-btn {
    border-color: var(--border);
}

.mobile-menu-btn span {
    display: block;

    width: 21px;
    height: 2px;

    margin: 4px auto;

    background: currentColor;

    transition: .3s ease;
}


/* MOBILE MENU */

.mobile-menu {
    display: none;
}


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

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    color: white;

    overflow: hidden;
}

.hero-background,
.hero-background img,
.hero-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.hero-background {
    z-index: -2;
}

.hero-background img {
    object-fit: cover;
    object-position: center;

    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.52) 48%,
            rgba(0,0,0,.20) 100%
        );
}

.hero-container {
    position: relative;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

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

    padding-top: 80px;
}

.eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #ddd;

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

    letter-spacing: 1px;
}

.eyebrow span {
    width: 35px;
    height: 1px;

    background: var(--gold);
}

.hero h1 {
    max-width: 800px;

    margin-bottom: 24px;

    font-size: clamp(45px, 6.5vw, 88px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2px;
}

.hero h1 strong {
    display: block;

    color: var(--gold-light);

    font-weight: 700;
}

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

    margin-bottom: 35px;

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

    font-size: 17px;
}

.hero-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* BUTTONS */

.btn {
    min-height: 53px;

    display: inline-flex;

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

    gap: 22px;

    padding-inline: 25px;

    border: 1px solid transparent;

    border-radius: 3px;

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

    cursor: pointer;

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

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

.btn-gold {
    color: white;

    background: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
}

.btn-light-outline {
    color: white;

    border-color: rgba(255,255,255,.35);
}

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

.btn-dark {
    color: white;

    background: var(--black);
}

.btn-arrow {
    font-size: 18px;
}


/* HERO BOTTOM */

.hero-bottom {
    position: absolute;

    bottom: 40px;
    right: 0;

    display: flex;

    align-items: center;

    gap: 45px;
}

.hero-stat {
    display: flex;

    flex-direction: column;
}

.hero-stat strong {
    color: var(--gold-light);

    font-size: 24px;
    line-height: 1.1;
}

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

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

    font-size: 11px;
}


/* SCROLL INDICATOR */

.scroll-indicator {
    position: absolute;

    left: 5%;

    bottom: 42px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

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

    font-size: 10px;

    writing-mode: vertical-rl;
}

.scroll-indicator i {
    display: block;

    width: 1px;
    height: 50px;

    background: linear-gradient(
        white,
        transparent
    );
}


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

.section {
    padding: 130px 0;
}

.section-tag {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    color: var(--gold);

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

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

.section-tag::before {
    content: "";

    width: 28px;
    height: 1px;

    background: currentColor;
}

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

    margin-bottom: 65px;
}

.section-header h2 {
    margin-bottom: 18px;

    color: var(--black);

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.section-header h2 span,
.intro-content h2 span,
.feature-content h2 span,
.cta-box h2 span,
.contact-content h2 span {
    color: var(--gold);
}

.section-header > p {
    max-width: 570px;

    color: var(--muted);

    font-size: 15px;
}


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

.intro-section {
    padding: 100px 0;

    background: var(--off-white);
}

.intro-grid {
    position: relative;

    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 35px;
}

.intro-number {
    color: var(--gold);

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

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

.intro-content h2 {
    margin-bottom: 22px;

    font-size: clamp(35px, 5vw, 60px);

    line-height: 1.15;
}

.intro-content p {
    max-width: 600px;

    color: var(--muted);

    font-size: 17px;
}

.intro-line {
    position: absolute;

    top: 10px;
    right: 70px;

    width: 1px;
    height: calc(100% - 10px);

    background: var(--border);

    transform: translateX(50%);
}


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

.about-section {
    background: white;
}

.split-header {
    display: grid;

    grid-template-columns: 1fr 400px;

    gap: 80px;

    align-items: end;

    max-width: none;
}

.about-layout {
    display: grid;

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

    gap: 80px;

    align-items: center;
}

.about-image {
    position: relative;

    height: 650px;

    overflow: hidden;

    background: var(--cream);
}

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

    object-fit: cover;

    transition: transform 1s var(--ease);
}

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

.image-label {
    position: absolute;

    bottom: 25px;
    right: 25px;

    padding: 8px 15px;

    color: white;

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

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

    backdrop-filter: blur(10px);

    font-size: 11px;
    letter-spacing: 2px;
}

.about-text {
    padding-bottom: 20px;
}

.about-index {
    display: block;

    margin-bottom: 35px;

    color: var(--gold);

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

    letter-spacing: 2px;
}

.about-text h3 {
    margin-bottom: 22px;

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

    line-height: 1.2;
}

.about-text > p {
    max-width: 500px;

    margin-bottom: 40px;

    color: var(--muted);

    font-size: 15px;
}

.about-features {
    display: grid;

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

    gap: 25px;

    border-top: 1px solid var(--border);

    padding-top: 25px;
}

.about-features div {
    display: flex;

    flex-direction: column;
}

.about-features strong {
    color: var(--gold);

    font-size: 13px;
}

.about-features span {
    margin-top: 4px;

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


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

.services-section {
    background: var(--off-white);
}

.services-section > .container > .section-header {
    margin-inline: auto;

    text-align: center;
}

.services-section .section-header > p {
    margin-inline: auto;
}

.services-grid {
    display: grid;

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

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

.service-card {
    position: relative;

    min-height: 330px;

    padding: 38px 30px;

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

    background: transparent;

    overflow: hidden;

    transition:
        background .4s ease,
        color .4s ease;
}

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

    position: absolute;

    inset: auto 0 0 0;

    height: 0;

    background: var(--black);

    transition: height .5s var(--ease);

    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    color: white;
}

.service-card:hover::before {
    height: 100%;
}

.service-number {
    position: absolute !important;

    top: 30px;
    left: 30px;

    color: var(--gold);

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

.service-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 50px;

    color: var(--gold);

    border: 1px solid rgba(177,138,85,.35);

    font-size: 20px;
}

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

    font-size: 20px;
}

.service-card p {
    color: var(--muted);

    font-size: 13px;

    transition: color .4s ease;
}

.service-card:hover p {
    color: rgba(255,255,255,.6);
}

.service-arrow {
    position: absolute !important;

    bottom: 30px;
    left: 30px;

    color: var(--gold);

    font-size: 20px;
}


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

.feature-section {
    display: grid;

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

    min-height: 700px;
}

.feature-image {
    min-height: 600px;

    overflow: hidden;
}

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

    object-fit: cover;
}

.feature-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 100px 10%;

    background: var(--black);

    color: white;
}

.feature-content h2 {
    margin-bottom: 25px;

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

    line-height: 1.15;
}

.feature-content > p {
    max-width: 500px;

    margin-bottom: 35px;

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

.check-list {
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 40px;

    list-style: none;
}

.check-list li {
    display: flex;

    align-items: center;

    gap: 12px;

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

    font-size: 13px;
}

.check-list span {
    color: var(--gold);
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    width: fit-content;

    color: white;

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

    padding-bottom: 6px;

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

.text-link span {
    color: var(--gold);

    transition: transform .3s ease;
}

.text-link:hover span {
    transform: translateX(-6px);
}


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

.projects-section {
    background: white;
}

.projects-header {
    display: grid;

    grid-template-columns: 1fr 400px;

    gap: 80px;

    align-items: end;

    max-width: none;
}

.projects-grid {
    display: grid;

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

    gap: 18px;
}


/* Dynamic gallery items */

.project-card {
    position: relative;

    grid-column: span 4;

    aspect-ratio: 1 / .82;

    overflow: hidden;

    cursor: pointer;

    background: var(--cream);
}

.project-card:nth-child(5n + 1) {
    grid-column: span 7;

    aspect-ratio: 1.65 / 1;
}

.project-card:nth-child(5n + 2) {
    grid-column: span 5;

    aspect-ratio: 1.1 / 1;
}

.project-card:nth-child(5n + 3),
.project-card:nth-child(5n + 4),
.project-card:nth-child(5n + 5) {
    grid-column: span 4;

    aspect-ratio: 1 / 1;
}

.project-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

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

.project-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.75),
            transparent 55%
        );

    opacity: 0;

    transition: opacity .4s ease;
}

.project-card:hover img {
    transform: scale(1.06);
    filter: brightness(.85);
}

.project-card:hover::after {
    opacity: 1;
}

.project-number {
    position: absolute;

    right: 20px;
    bottom: 18px;

    z-index: 2;

    color: white;

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

    opacity: 0;

    transform: translateY(10px);

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

.project-card:hover .project-number {
    opacity: 1;

    transform: translateY(0);
}

.projects-more {
    display: flex;

    justify-content: center;

    margin-top: 50px;
}

#loadMoreBtn.hidden {
    display: none;
}


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

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

.process-section > .container > .section-header {
    text-align: center;

    margin-inline: auto;
}

.process-grid {
    display: grid;

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

.process-item {
    min-height: 280px;

    padding: 30px;

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

.process-item:last-child {
    border-left: 0;
}

.process-number {
    display: block;

    margin-bottom: 65px;

    color: var(--gold);

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

.process-item h3 {
    margin-bottom: 12px;

    font-size: 22px;
}

.process-item p {
    color: var(--muted);

    font-size: 13px;
}


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

.cta-section {
    padding: 50px 0;

    background: white;
}

.cta-box {
    display: flex;

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

    gap: 50px;

    padding: 65px 75px;

    background: var(--black);

    color: white;
}

.cta-box h2 {
    margin: 0;

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

    line-height: 1.15;
}


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

.contact-section {
    background: var(--off-white);
}

.contact-layout {
    display: grid;

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

    gap: 90px;

    align-items: center;
}

.contact-content h2 {
    margin-bottom: 20px;

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

    line-height: 1.1;
}

.contact-content > p {
    max-width: 500px;

    margin-bottom: 40px;

    color: var(--muted);
}

.contact-methods {
    display: flex;

    flex-direction: column;

    max-width: 500px;
}

.contact-method {
    display: grid;

    grid-template-columns: 52px 1fr auto;

    align-items: center;

    gap: 15px;

    padding: 18px 0;

    border-top: 1px solid var(--border);

    transition: padding .3s ease;
}

.contact-method:hover {
    padding-inline: 10px;
}

.contact-method-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    color: var(--gold);

    border: 1px solid rgba(177,138,85,.35);
}

.whatsapp-icon {
    font-size: 13px;
    font-weight: 900;
}

.contact-method div:nth-child(2) {
    display: flex;

    flex-direction: column;
}

.contact-method div:nth-child(2) span {
    color: var(--muted);

    font-size: 11px;
}

.contact-method strong {
    margin-top: 2px;

    font-size: 15px;
}

.contact-method-arrow {
    color: var(--gold);

    font-size: 20px;
}

.contact-image {
    height: 620px;

    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

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

    background: var(--black);
}

.footer-main {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 80px;

    padding: 80px 0;
}

.footer .brand {
    color: white;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 20px;

    font-size: 13px;
}

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links h4 {
    margin-bottom: 12px;

    color: white;

    font-size: 13px;
}

.footer-links a {
    width: fit-content;

    font-size: 13px;

    transition: color .3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;

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

    padding: 22px 0;

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

    font-size: 11px;
}


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

.floating-whatsapp {
    position: fixed;

    left: 25px;
    bottom: 25px;

    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    z-index: 7000;

    color: white;

    background: #25d366;

    border-radius: 50%;

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

    transition:
        transform .3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp svg {
    position: relative;

    z-index: 2;

    width: 32px;
    height: 32px;

    fill: white;
}

.whatsapp-pulse {
    position: absolute;

    inset: 0;

    border-radius: 50%;

    background: #25d366;

    animation:
        whatsappPulse 2.2s infinite;

    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    70% {
        transform: scale(1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}


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

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

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

    padding: 40px;

    background: rgba(8,8,8,.97);

    opacity: 0;
    visibility: hidden;

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

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

.lightbox-stage {
    width: min(1100px, 90vw);
    height: min(82vh, 800px);

    display: flex;

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

.lightbox-image {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    box-shadow:
        0 30px 100px rgba(0,0,0,.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

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

    border-radius: 50%;

    color: white;

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

    cursor: pointer;

    font-size: 22px;

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

.lightbox-close {
    top: 25px;
    right: 25px;
}

.lightbox-prev {
    right: 30px;
    top: 50%;

    transform: translateY(-50%);
}

.lightbox-next {
    left: 30px;
    top: 50%;

    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
}

.lightbox-info {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

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

    font-size: 12px;

    letter-spacing: 2px;
}


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

.reveal {
    opacity: 0;

    transform: translateY(35px);

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

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


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

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 14px;
    }

    .nav-link {
        font-size: 13px;
    }

    .header-actions .header-call {
        display: none;
    }

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

    .about-layout,
    .contact-layout {
        gap: 40px;
    }

    .split-header,
    .projects-header {
        grid-template-columns: 1fr minmax(0, 320px);
        gap: 40px;
    }

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

    .process-item {
        border-bottom: 1px solid var(--border);
    }

    .process-item:nth-child(2n) {
        border-left: 0;
    }

    .project-card:nth-child(n) {
        grid-column: span 6;

        aspect-ratio: 1.2 / 1;
    }

    .project-card:nth-child(3n) {
        grid-column: span 12;

        aspect-ratio: 1.8 / 1;
    }
}


@media (max-width: 980px) {

    .header-inner {
        height: 75px;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;

        margin-inline-start: auto;
        flex-shrink: 0;
    }

    .mobile-menu {
        position: absolute;

        top: 75px;
        inset-inline: 5%;

        width: auto;

        z-index: 9100;

        display: flex;

        flex-direction: column;

        padding: 20px;

        color: var(--black);

        background: white;

        box-shadow:
            0 20px 50px rgba(0,0,0,.12);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

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

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .mobile-menu nav {
        display: flex;

        flex-direction: column;
    }

    .mobile-menu nav a {
        padding: 13px 5px;

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

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

    .mobile-menu-contact {
        display: flex;

        gap: 10px;

        padding-top: 15px;
    }

    .mobile-menu-contact a {
        flex: 1;

        padding: 11px;

        color: white;

        background: var(--black);

        text-align: center;

        font-size: 12px;
    }

    .mobile-menu-contact a:last-child {
        background: var(--gold);
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.72) 0%,
                rgba(0,0,0,.55) 45%,
                rgba(0,0,0,.75) 100%
            );
    }

    .hero h1 {
        font-size: clamp(40px, 9vw, 68px);
        letter-spacing: -1.5px;
    }

    .split-header,
    .projects-header {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .about-layout,
    .contact-layout,
    .feature-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: min(550px, 70vw);
    }

    .feature-image {
        height: min(520px, 70vw);
        min-height: 0;
    }

    .feature-content {
        padding: 70px 8%;
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        padding: 55px 40px;
    }

    .contact-image {
        height: min(480px, 70vw);
        order: -1;
    }

    .footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px;
    }
}


@media (max-width: 700px) {

    html {
        scroll-padding-top: 78px;
    }

    .section {
        padding: 80px 0;
    }

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

    .container {
        width: min(92%, var(--container));
    }

    .brand {
        font-size: 19px;
        letter-spacing: 2px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-container {
        min-height: 100svh;
        padding-block: 100px 130px;
        justify-content: flex-end;
    }

    .hero-content {
        max-width: none;
        padding-top: 0;
    }

    .eyebrow {
        flex-wrap: wrap;
        font-size: 11px;
        letter-spacing: .5px;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(34px, 11vw, 46px);
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .hero-content > p {
        max-width: none;
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

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

    .hero-bottom {
        position: relative;
        inset: auto;
        margin-top: 40px;
        gap: 18px;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
    }

    .hero-stat {
        min-width: 0;
        flex: 1 1 90px;
    }

    .hero-stat strong {
        font-size: 20px;
    }

    .hero-stat span {
        font-size: 10px;
        line-height: 1.4;
    }

    .scroll-indicator {
        display: none;
    }

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

    .intro-line {
        display: none;
    }

    .intro-content h2,
    .section-header h2 {
        font-size: clamp(30px, 9vw, 39px);
        letter-spacing: -.8px;
    }

    .split-header,
    .projects-header {
        margin-bottom: 40px;
    }

    .about-image {
        height: 380px;
    }

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

    .about-text h3 {
        font-size: clamp(26px, 8vw, 36px);
    }

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

    .service-card {
        min-height: 260px;
        padding: 32px 24px;
    }

    .feature-image {
        height: 360px;
    }

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

    .feature-content h2 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .project-card:nth-child(n),
    .project-card:nth-child(3n),
    .project-card:nth-child(5n + 1),
    .project-card:nth-child(5n + 2),
    .project-card:nth-child(5n + 3),
    .project-card:nth-child(5n + 4),
    .project-card:nth-child(5n + 5) {
        grid-column: span 12;
        aspect-ratio: 1.15 / 1;
    }

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

    .process-item,
    .process-item:nth-child(2n) {
        border-left: 0;
        min-height: 0;
        padding: 28px 22px;
    }

    .process-number {
        margin-bottom: 28px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .contact-content h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .contact-method {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .contact-method-arrow {
        display: none;
    }

    .contact-method strong {
        font-size: 14px;
        word-break: break-word;
    }

    .contact-image {
        height: 320px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 55px 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        left: 14px;
        bottom: 14px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }

    .lightbox {
        padding: 12px;
    }

    .lightbox-stage {
        width: min(96vw, 100%);
        height: 70vh;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
    }

    .lightbox-prev {
        right: 6px;
    }

    .lightbox-next {
        left: 6px;
    }
}


@media (max-width: 400px) {

    .container {
        width: 94%;
    }

    .hero-container {
        padding-block: 90px 110px;
    }

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

    .hero-bottom {
        gap: 12px;
    }

    .hero-stat strong {
        font-size: 18px;
    }

    .cta-box {
        padding: 34px 18px;
    }

    .service-card {
        min-height: 240px;
        padding: 28px 20px;
    }

    .about-image,
    .feature-image,
    .contact-image {
        height: 280px;
    }
}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}