﻿:root {
    --bg: #f5f1ea;
    --paper: #f8f5ef;
    --paper-2: #efe8de;
    --text: #111111;
    --muted: #6e6962;
    --line: rgba(17, 17, 17, 0.12);
    --dark: #0d0f11;
    --dark-2: #16191c;
    --white: #ffffff;
    --gold: #b89468;
    --gold-soft: rgba(184, 148, 104, 0.18);
    --glass: rgba(255, 255, 255, 0.07);
    --glass-line: rgba(255, 255, 255, 0.14);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --max: 1520px;
    --header-h: 82px;
    --hero-dark-1: rgba(0, 0, 0, 0.28);
    --hero-dark-2: rgba(0, 0, 0, 0.46);
    --hero-dark-3: rgba(0, 0, 0, 0.66);
    --hero-vignette-dark: rgba(0, 0, 0, 0.38);
    --hero-bottom-shadow: rgba(0, 0, 0, 0.62);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    min-width: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--paper);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    cursor: none;
}

    body.loading {
        overflow: hidden;
        height: 100vh;
    }

    body.menu-open {
        overflow: hidden;
    }

img,
video,
svg,
canvas,
iframe {
    display: block;
    max-width: 100%;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    background: none;
    color: inherit;
    cursor: none;
}

.container {
    width: min(calc(100% - 44px), var(--max));
    margin: 0 auto;
}

.section {
    position: relative;
}

.section-space {
    padding: 110px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-weight: 700;
    color: #7a746c;
}

    .eyebrow::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: currentColor;
        opacity: .85;
    }

.btn {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    text-align: center;
    transition: transform .45s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), opacity .35s var(--ease);
    will-change: transform;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-dark {
    background: #111;
    color: #fff;
    border: 1px solid #111;
    box-shadow: 0 16px 28px rgba(0,0,0,.12);
}

.btn-light {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
  
    box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.btn-outline {
    background: transparent;
    color: #111;
    border: 1px solid rgba(17,17,17,.15);
}

    .btn-outline:hover {
        background: #111;
        color: #fff;
        border-color: #111;
    }

.cursor,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cursor {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.cursor-follower {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(4px);
    transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}

    .cursor-follower.active {
        width: 54px;
        height: 54px;
        background: rgba(255,255,255,.06);
    }

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #0c0e10;
    color: #fff;
    overflow: hidden;
}

    .loader::before,
    .loader::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0));
        filter: blur(18px);
        pointer-events: none;
    }

    .loader::before {
        width: 520px;
        height: 520px;
        top: -160px;
        left: -110px;
    }

    .loader::after {
        width: 460px;
        height: 460px;
        right: -90px;
        bottom: -120px;
    }

.loader-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: min(90vw, 760px);
    padding: 20px;
}

.loader-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .24em;
    color: rgba(255,255,255,.56);
    margin-bottom: 14px;
    overflow: hidden;
}

.loader-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 7vw, 108px);
    line-height: .9;
    letter-spacing: -.08em;
    font-weight: 800;
    overflow: hidden;
}

    .loader-kicker span,
    .loader-title span {
        display: block;
        transform: translateY(115%);
    }

.loader-line {
    width: min(340px, 74vw);
    height: 1px;
    background: rgba(255,255,255,.14);
    overflow: hidden;
    margin: 26px auto 0;
}

    .loader-line span {
        display: block;
        width: 100%;
        height: 100%;
        background: #fff;
        transform: translateX(-100%);
    }

.progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 1200;
    pointer-events: none;
    mix-blend-mode: difference;
}

    .progress span {
        display: block;
        width: 100%;
        height: 100%;
        background: #fff;
        transform-origin: left center;
        transform: scaleX(0);
        box-shadow: 0 0 16px rgba(255,255,255,.7);
    }

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    pointer-events: none;
}

.header-inner {
    width: 100%;
    height: 100%;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    pointer-events: auto;
    background: linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.06));
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0);
    transition: background .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
}

.header.scrolled .header-inner {
    background: rgba(8,10,12,.84);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    min-width: max-content;
    flex: 0 0 auto;
}

.logo {
    width: auto;
    height: 56px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .brand-text strong {
        font-family: "Manrope", sans-serif;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: -.04em;
    }

    .brand-text span {
        margin-top: 5px;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .2em;
        color: rgba(255,255,255,.62);
        font-weight: 700;
    }

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    color: rgba(255,255,255,.88);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 700;
    flex: 1 1 auto;
    min-width: 0;
}

    .nav a {
        position: relative;
        transition: opacity .25s ease, color .25s ease;
        white-space: nowrap;
    }

    .nav:hover a {
        opacity: .45;
    }

    .nav a:hover {
        opacity: 1;
        color: #fff;
    }

    .nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -7px;
        width: 100%;
        height: 1px;
        background: rgba(255,255,255,.72);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s var(--ease);
    }

    .nav a:hover::after {
        transform: scaleX(1);
    }

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 0 0 auto;
    min-width: max-content;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #fff;
    transition: transform .35s var(--ease), background .35s var(--ease);
    flex: 0 0 auto;
}

    .menu-toggle:hover {
        transform: rotate(90deg);
        background: rgba(255,255,255,.08);
    }

    .menu-toggle span {
        position: relative;
        width: 16px;
        height: 12px;
        display: block;
    }

        .menu-toggle span::before,
        .menu-toggle span::after {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 1.5px;
            background: #fff;
            transition: all .35s var(--ease);
        }

        .menu-toggle span::before {
            top: 2px;
        }

        .menu-toggle span::after {
            bottom: 2px;
        }

body.menu-open .menu-toggle span::before {
    top: 5px;
    transform: rotate(45deg);
}

body.menu-open .menu-toggle span::after {
    bottom: 5px;
    transform: rotate(-45deg);
}

/* FULLSCREEN MENU */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    background: rgba(10,12,14,.94);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .45s var(--ease), visibility .45s var(--ease);
}

body.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: #fff;
    z-index: 2;
    transition: transform .35s var(--ease), background .35s var(--ease);
}

    .menu-close:hover {
        transform: rotate(90deg);
        background: rgba(255,255,255,.08);
    }

    .menu-close::before,
    .menu-close::after {
        content: "";
        position: absolute;
        width: 18px;
        height: 1.5px;
        background: #fff;
    }

    .menu-close::before {
        transform: rotate(45deg);
    }

    .menu-close::after {
        transform: rotate(-45deg);
    }

.menu-inner {
    width: min(calc(100% - 44px), 1320px);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 42px;
    align-items: center;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .menu-links a {
        font-family: "Manrope", sans-serif;
        font-size: clamp(36px, 5vw, 78px);
        line-height: .95;
        letter-spacing: -.06em;
        font-weight: 800;
        color: #fff;
        transform: translateY(22px);
        opacity: .92;
    }

.menu-side {
    border-left: 1px solid rgba(255,255,255,.08);
    padding-left: 40px;
    color: rgba(255,255,255,.72);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .menu-side small {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: rgba(255,255,255,.5);
        font-weight: 700;
    }

    .menu-side p {
        font-size: 15px;
        line-height: 1.85;
        max-width: 360px;
    }

/* HERO */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #0d0f11;
    color: #fff;
}

.hero-slider,
.hero-overlay,
.hero-noise,
.hero-depth-shadow,
.hero-vignette {
    position: absolute;
    inset: 0;
}

.hero-slider {
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.45s var(--ease);
    will-change: opacity;
}

    .hero-slide.active {
        opacity: 1;
    }

    .hero-slide img {
        transform: scale(1.08);
        filter: brightness(.6) contrast(1.08) saturate(.92);
        will-change: transform;
    }

    .hero-slide.active img {
        animation: heroZoom 15s ease-in-out infinite alternate;
    }

@keyframes heroZoom {
    0% {
        transform: scale(1.08) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.12) translate3d(-10px, -6px, 0);
    }

    100% {
        transform: scale(1.16) translate3d(10px, 6px, 0);
    }
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--hero-dark-1) 0%, rgba(0,0,0,.18) 18%, rgba(0,0,0,.22) 34%, var(--hero-dark-2) 68%, var(--hero-dark-3) 100%), radial-gradient(circle at center, rgba(255,255,255,.015) 0%, rgba(0,0,0,.08) 34%, var(--hero-vignette-dark) 100%);
}

.hero-overlay {
    z-index: 2;
    background: radial-gradient(circle at 18% 20%, rgba(255,255,255,.045), transparent 24%), radial-gradient(circle at 85% 78%, rgba(255,255,255,.035), transparent 22%), linear-gradient(to top, var(--hero-bottom-shadow), rgba(0,0,0,0) 38%);
    pointer-events: none;
}

.hero-depth-shadow {
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,.46), transparent 30%), linear-gradient(to right, rgba(0,0,0,.18), transparent 16%, transparent 84%, rgba(0,0,0,.18));
    pointer-events: none;
}

.hero-vignette {
    z-index: 2;
    background: radial-gradient(circle at center, transparent 42%, rgba(0,0,0,.14) 72%, rgba(0,0,0,.32) 100%);
    pointer-events: none;
}

.hero-noise {
    z-index: 2;
    opacity: .035;
    pointer-events: none;
    background-image: radial-gradient(circle at 22% 32%, #fff 0 1px, transparent 1px), radial-gradient(circle at 68% 60%, #fff 0 1px, transparent 1px), radial-gradient(circle at 40% 84%, #fff 0 1px, transparent 1px);
    background-size: 170px 170px, 220px 220px, 200px 200px;
    mix-blend-mode: screen;
}

.hero-orb,
.hero-glow {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.hero-orb {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.24), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
    box-shadow: inset 0 10px 20px rgba(255,255,255,.07), 0 26px 64px rgba(0,0,0,.24);
}

.hero-glow {
    filter: blur(34px);
}

    .hero-glow.one {
        width: 420px;
        height: 420px;
        right: -80px;
        top: -50px;
        background: radial-gradient(circle, rgba(184,148,104,.16), rgba(184,148,104,0));
    }

    .hero-glow.two {
        width: 360px;
        height: 360px;
        left: -90px;
        bottom: -60px;
        background: radial-gradient(circle, rgba(255,255,255,.05), rgba(255,255,255,0));
    }

.hero-orb.one {
    width: 190px;
    height: 190px;
    top: 14%;
    left: 10%;
}

.hero-orb.two {
    width: 120px;
    height: 120px;
    right: 16%;
    top: 18%;
}

.hero-orb.three {
    width: 230px;
    height: 230px;
    right: 7%;
    bottom: 11%;
    opacity: .7;
}

.glass-card {
    position: absolute;
    min-width: 190px;
    max-width: 228px;
    padding: 15px 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 48px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
    color: #fff;
    text-align: left;
    z-index: 6;
}

    .glass-card small {
        display: block;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: rgba(255,255,255,.55);
        margin-bottom: 8px;
        font-weight: 700;
    }

    .glass-card strong {
        display: block;
        font-size: 15px;
        line-height: 1.45;
        font-weight: 600;
    }

    .glass-card.left {
        left: 6%;
        bottom: 22%;
    }

    .glass-card.right {
        right: 8%;
        top: 30%;
    }

.hero-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.14), transparent);
    z-index: 4;
    pointer-events: none;
}

    .hero-line.top {
        top: 82px;
    }

    .hero-line.bottom {
        bottom: 88px;
        opacity: .6;
    }

.hero-grid {
    position: relative;
    z-index: 5;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 150px;
}

.hero-content {
    max-width: 1020px;
    margin: 0 auto;
    text-align: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .24em;
    font-weight: 800;
    color: rgba(255,255,255,.72);
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

    .hero-kicker::before,
    .hero-kicker::after {
        content: "";
        width: 18px;
        height: 1px;
        background: rgba(255,255,255,.3);
    }

.hero-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 102px);
    line-height: .9;
    letter-spacing: -.09em;
    font-weight: 800;
    text-wrap: balance;
    min-height: 2.25em;
    text-shadow: 0 10px 30px rgba(0,0,0,.28);
}

    .hero-title .line,
    .lead .line,
    .section-title .line,
    .transition-title .line,
    .cta-title .line,
    .contact-title .line {
        display: block;
        overflow: hidden;
    }

        .hero-title .line span,
        .lead .line span,
        .section-title .line span,
        .transition-title .line span,
        .cta-title .line span,
        .contact-title .line span {
            display: block;
            transform: translateY(110%);
        }

.hero-sub {
    max-width: 600px;
    margin: 22px auto 0;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,.74);
    opacity: 0;
    min-height: 5.7em;
    text-shadow: 0 6px 18px rgba(0,0,0,.22);
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
}

    .hero-actions .ghost {
        background: rgba(255,255,255,.04);
    }

.hero-meta {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 7;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.hero-meta-left {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.58);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-counter {
    color: rgba(255,255,255,.82);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .1em;
    min-width: 30px;
    text-align: right;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 34px;
    height: 2px;
    background: rgba(255,255,255,.22);
    overflow: hidden;
    position: relative;
}

    .hero-dot::after {
        content: "";
        position: absolute;
        inset: 0;
        background: #fff;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s linear;
    }

    .hero-dot.active::after {
        transform: scaleX(1);
    }

.hero-bottom {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.7);
    opacity: 0;
}

    .hero-bottom > span {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .22em;
        font-weight: 800;
    }

.scroll-pill {
    width: 126px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(17,17,17,.58);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(0,0,0,.18);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #fff;
}

    .scroll-pill .wheel {
        width: 18px;
        height: 18px;
        border: 1px solid rgba(255,255,255,.55);
        display: grid;
        place-items: center;
        overflow: hidden;
        position: relative;
    }

        .scroll-pill .wheel::before {
            content: "";
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: #fff;
            animation: wheel 1.8s infinite;
        }

@keyframes wheel {
    0% {
        transform: translateY(-2px);
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    100% {
        transform: translateY(6px);
        opacity: 0;
    }
}

/* INTRO */
.intro {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.intro-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.lead,
.section-title,
.transition-title,
.cta-title,
.contact-title,
.quote,
.project-title {
    font-family: "Manrope", sans-serif;
}

.lead {
    font-size: clamp(30px, 4vw, 66px);
    line-height: 1;
    letter-spacing: -.07em;
    font-weight: 500;
    max-width: 1020px;
    text-wrap: balance;
}

/* TRANSITION */
.transition-showcase {
    background: #0f1113;
    color: #fff;
    overflow: hidden;
}

.transition-pin {
    height: auto;
    position: relative;
}

.transition-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #0f1113;
}

.transition-bg,
.transition-mask,
.transition-fade {
    position: absolute;
    inset: 0;
}

    .transition-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.15);
        filter: brightness(.62);
        will-change: transform;
    }

.transition-mask {
    background: linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.18)), radial-gradient(circle at center, rgba(255,255,255,.02), rgba(0,0,0,.34) 72%);
    z-index: 1;
}

.transition-fade {
    z-index: 2;
    background: linear-gradient(to bottom, rgba(245,241,234,1), rgba(245,241,234,0) 16%, rgba(0,0,0,0) 80%, rgba(15,17,19,1));
    opacity: .65;
    pointer-events: none;
}

.transition-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding: 100px 20px 72px;
}

.transition-title {
    font-size: clamp(42px, 5vw, 90px);
    line-height: .93;
    letter-spacing: -.08em;
    font-weight: 800;
    max-width: 1080px;
    text-wrap: balance;
}

.transition-card {
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translateX(-50%);
    width: min(92vw, 980px);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    padding: 18px;
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    opacity: 0;
}

.transition-stat {
    padding: 20px 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    text-align: left;
}

    .transition-stat small {
        display: block;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: rgba(255,255,255,.48);
        margin-bottom: 10px;
        font-weight: 700;
    }

    .transition-stat strong {
        display: block;
        font-family: "Manrope", sans-serif;
        font-size: 32px;
        line-height: 1;
        letter-spacing: -.04em;
        margin-bottom: 8px;
        font-weight: 800;
    }

    .transition-stat span {
        display: block;
        font-size: 14px;
        line-height: 1.7;
        color: rgba(255,255,255,.72);
    }

/* SERVICES */
/* SERVICES */
.services {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.section-head {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 30px;
    align-items: end;
    margin-bottom: 54px;
}

.section-title {
    font-size: clamp(34px, 4vw, 76px);
    line-height: .96;
    letter-spacing: -.08em;
    font-weight: 800;
    text-wrap: balance;
}

.section-copy {
    max-width: 500px;
    justify-self: end;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
    opacity: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: #ddd6cc;
    height: 320px;
    min-height: 320px;
    border-radius: 0;
    box-shadow: 0 18px 36px rgba(0,0,0,.08), 0 0 0 1px rgba(255,255,255,.12) inset;
}

    .service-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .9s var(--ease), filter .7s var(--ease);
    }

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to top, rgba(0,0,0,.46), rgba(0,0,0,.06) 46%, rgba(0,0,0,0)), radial-gradient(circle at 50% 10%, rgba(255,255,255,.08), transparent 34%);
    }

    .service-card::after {
        content: "";
        position: absolute;
        inset: -20%;
        z-index: 2;
        background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
        transform: translateX(-120%) rotate(8deg);
        pointer-events: none;
    }

    .service-card:hover img {
        transform: scale(1.06);
        filter: brightness(1.04);
    }

    .service-card:hover::after {
        animation: shine 1.1s var(--ease);
    }

@@keyframes shine {
    from {
        transform: translateX(-120%) rotate(8deg);
    }

    to {
        transform: translateX(120%) rotate(8deg);
    }
}

.service-info {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 3;
    color: #fff;
}

    .service-info h3 {
        font-family: "Manrope", sans-serif;
        font-size: clamp(22px, 1.8vw, 34px);
        line-height: .96;
        letter-spacing: -.06em;
        font-weight: 800;
        margin: 0;
    }

@@media (max-width: 1199.98px) {
    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .service-card {
        height: 260px;
        min-height: 260px;
    }

    .service-info {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

        .service-info h3 {
            font-size: clamp(18px, 2vw, 24px);
        }
}

@@media (max-width: 767.98px) {
    .section-head {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .section-copy {
        justify-self: start;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        height: 260px;
        min-height: 260px;
    }
}
/* PROJECTS */
.projects {
    background: #111315;
    color: #fff;
    overflow: hidden;
}

    .projects .eyebrow {
        color: rgba(255,255,255,.62);
    }

.projects-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.project-tabs {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,.08);
}

.project-tab {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.48);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: transform .35s var(--ease), color .35s var(--ease);
    text-align: left;
    cursor: none;
}

    .project-tab.active,
    .project-tab:hover {
        color: #fff;
        transform: translateX(6px);
    }

.project-panel {
    display: none;
    opacity: 0;
    transform: translateY(16px);
}

    .project-panel.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

.project-card {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 34px;
    align-items: start;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 14px;
}

.project-thumb {
    aspect-ratio: .82;
    overflow: hidden;
    background: #1d2024;
    box-shadow: 0 24px 54px rgba(0,0,0,.22);
}

    .project-thumb img {
        transition: transform 1s var(--ease);
    }

.project-card:hover .project-thumb img {
    transform: scale(1.05);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 18px;
    font-weight: 700;
}

.project-title {
    font-size: clamp(36px, 4vw, 74px);
    line-height: .96;
    letter-spacing: -.08em;
    font-weight: 800;
    margin-bottom: 14px;
}

.project-copy {
    max-width: 520px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.85;
}

.project-gallery {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

    .project-gallery .item {
        aspect-ratio: 1.2;
        overflow: hidden;
        background: #1d2024;
        box-shadow: 0 22px 50px rgba(0,0,0,.18);
    }

        .project-gallery .item img {
            transition: transform 1s var(--ease);
        }

        .project-gallery .item:hover img {
            transform: scale(1.06);
        }

/* TESTIMONIALS */
.testimonials {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.testimonial-wrap {
    width: min(100%, 1080px);
    margin: 0 auto;
    text-align: center;
}

.counter {
    margin-bottom: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #8a847d;
    font-weight: 800;
}

.quote {
    font-size: clamp(36px, 5vw, 80px);
    line-height: .98;
    letter-spacing: -.08em;
    font-weight: 800;
    text-wrap: balance;
    margin-bottom: 22px;
}

.author {
    color: #6f6a64;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 700;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.ctrl {
    min-width: 112px;
    height: 44px;
    border: 1px solid rgba(17,17,17,.12);
    background: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
    cursor: none;
}

    .ctrl:hover {
        transform: translateY(-2px);
        background: #111;
        color: #fff;
    }

/* CONTACT */
.contact {
    background: var(--paper);
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 32px;
    align-items: stretch;
}

.contact-card,
.map-card {
    position: relative;
    background: linear-gradient(180deg, #faf7f1, #f2ece2);
    border: 1px solid rgba(17,17,17,.08);
    box-shadow: 0 22px 46px rgba(0,0,0,.06);
    overflow: hidden;
}

    .contact-card::before,
    .map-card::before {
        content: "";
        position: absolute;
        inset: auto -20% 0 auto;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(184,148,104,.16), rgba(184,148,104,0));
        filter: blur(22px);
        pointer-events: none;
    }

.contact-card-inner {
    position: relative;
    z-index: 1;
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.contact-title {
    font-size: clamp(30px, 3.4vw, 58px);
    line-height: .96;
    letter-spacing: -.07em;
    font-weight: 800;
}

.contact-copy {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    max-width: 520px;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 4px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-top: 1px solid rgba(17,17,17,.08);
}

    .contact-item:first-child {
        border-top: none;
        padding-top: 0;
    }

.contact-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #111;
    color: #fff;
    font-size: 12px;
    flex: 0 0 auto;
    box-shadow: 0 12px 26px rgba(0,0,0,.12);
}

.contact-item strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
}

.contact-item span,
.contact-item a {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
    word-break: break-word;
}

.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.map-card {
    min-height: 560px;
}

.map-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

    .map-frame iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(.12) contrast(1.03) saturate(.88);
    }

.map-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    padding: 18px 18px 16px;
    background: rgba(17,17,17,.62);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    color: #fff;
    box-shadow: 0 18px 32px rgba(0,0,0,.18);
}

    .map-overlay small {
        display: block;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: rgba(255,255,255,.62);
        margin-bottom: 8px;
        font-weight: 700;
    }

    .map-overlay strong {
        display: block;
        font-family: "Manrope", sans-serif;
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .map-overlay p {
        margin: 0 0 14px;
        color: rgba(255,255,255,.78);
        font-size: 14px;
        line-height: 1.75;
    }

/* CTA */
.cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #0f1113;
}

.cta-bg,
.cta-light {
    position: absolute;
    inset: 0;
}

.cta-bg {
    z-index: 1;
}

    .cta-bg img {
        filter: brightness(.46) contrast(1.04);
    }

.cta-light {
    z-index: 2;
    background: radial-gradient(circle at 12% 24%, rgba(255,255,255,.06), transparent 22%), radial-gradient(circle at 84% 78%, rgba(184,148,104,.18), transparent 24%), linear-gradient(to top, rgba(0,0,0,.68), rgba(0,0,0,.18));
}

.cta-wrap {
    position: relative;
    z-index: 3;
    padding: 110px 0;
}

.cta-row {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 30px;
    align-items: center;
}

.cta-title {
    font-size: clamp(36px, 4.6vw, 82px);
    line-height: .94;
    letter-spacing: -.08em;
    font-weight: 800;
    max-width: 940px;
}

.cta-actions {
    display: flex;
    justify-self: end;
    gap: 12px;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    background: #0f1113;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: "";
        position: absolute;
        inset: auto -10% -100px auto;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(184,148,104,.1), rgba(184,148,104,0));
        filter: blur(20px);
        pointer-events: none;
    }

    .footer .container {
        position: relative;
        z-index: 1;
    }

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr .75fr .75fr .75fr;
    gap: 32px;
    padding: 70px 0 34px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
    margin: 18px 0 0;
    max-width: 520px;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.9;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .footer-logo-text strong {
        font-family: "Manrope", sans-serif;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: -.03em;
    }

    .footer-logo-text span {
        margin-top: 6px;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: rgba(255,255,255,.52);
        font-weight: 700;
    }

.footer-badges {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.76);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 800;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-col h4 {
        margin: 0 0 6px;
        font-family: "Manrope", sans-serif;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: -.02em;
        color: #fff;
    }

    .footer-col a,
    .footer-col span {
        color: rgba(255,255,255,.64);
        font-size: 14px;
        line-height: 1.7;
        word-break: break-word;
        transition: color .25s ease, opacity .25s ease;
    }

        .footer-col a:hover {
            color: #fff;
        }

.footer-bottom {
    padding: 22px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px 20px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.56);
    font-size: 13px;
    line-height: 1.7;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #111;
    color: #fff;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
    z-index: 1200;
    transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}

    .whatsapp-float:hover {
        transform: translateY(-3px);
        background: #1a1a1a;
        box-shadow: 0 22px 42px rgba(0,0,0,.32);
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
        fill: currentColor;
    }

/* ANIMATION HELPERS */
.reveal-up {
    opacity: 0;
    transform: translateY(26px);
}

.reveal-fade {
    opacity: 0;
}

.split {
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1400px) {
    .container {
        width: min(calc(100% - 40px), var(--max));
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-card {
        grid-template-columns: 270px 1fr;
    }
}

@media (max-width: 1180px) {
    .section-space {
        padding: 88px 0;
    }

    .section-head,
    .cta-row,
    .contact-grid,
    .projects-grid,
    .project-card {
        grid-template-columns: 1fr;
    }

    .section-copy,
    .cta-actions {
        justify-self: start;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .project-tabs {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 18px;
        border-top: none;
    }

    .project-tab {
        border-bottom: none;
        padding: 8px 0;
    }

    .project-thumb,
    .service-card,
    .map-card {
        width: 100%;
    }

    .menu-inner {
        grid-template-columns: 1fr;
        padding: 120px 0 50px;
    }

    .menu-side {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,.08);
        padding-left: 0;
        padding-top: 24px;
    }

    .transition-card {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 991px) {
    body {
        cursor: auto;
    }

    button,
    a,
    input,
    textarea,
    select,
    .project-tab,
    .ctrl {
        cursor: pointer;
    }

    .cursor,
    .cursor-follower {
        display: none !important;
    }

    /* EN KRİTİK DÜZELTME */
    .nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        max-width: 0 !important;
        overflow: hidden !important;
    }

    .header {
        height: 74px;
    }

    .header-inner {
        padding: 0 16px;
        gap: 12px;
        justify-content: space-between;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
        gap: 10px;
        overflow: hidden;
    }

    .logo {
        height: 50px;
    }

    .brand-text {
        min-width: 0;
        overflow: hidden;
    }

        .brand-text strong,
        .brand-text span {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .brand-text strong {
            font-size: 14px;
        }

        .brand-text span {
            font-size: 9px;
            letter-spacing: .14em;
        }

    .header-actions {
        flex: 0 0 auto;
        min-width: auto;
        gap: 0;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .hero-grid {
        padding-top: 118px;
        padding-bottom: 150px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(34px, 8.5vw, 64px);
        line-height: .95;
        min-height: auto;
    }

    .hero-sub {
        font-size: 14px;
        line-height: 1.8;
        min-height: auto;
        max-width: 100%;
        margin-top: 18px;
    }

    .hero-actions {
        width: 100%;
        gap: 10px;
    }

    .hero-meta {
        left: 16px;
        right: 16px;
        bottom: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-meta-left {
        gap: 8px 12px;
        font-size: 9px;
        letter-spacing: .13em;
    }

    .hero-controls {
        width: 100%;
        justify-content: space-between;
    }

    .glass-card.right {
        right: 4%;
        top: auto;
        bottom: 32%;
    }

    .glass-card.left {
        left: 4%;
        bottom: 18%;
    }

    .services-grid,
    .project-gallery,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .project-card {
        gap: 22px;
    }

    .project-title {
        font-size: clamp(28px, 7vw, 46px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-card {
        min-height: 420px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(calc(100% - 24px), var(--max));
    }

    .section-space {
        padding: 72px 0;
    }

    .header {
        height: 70px;
    }

    .header-inner {
        padding: 0 12px;
        gap: 10px;
    }

    .brand {
        max-width: calc(100% - 54px);
    }

    .brand-text {
        display: none;
    }

    .logo {
        height: 44px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .menu-inner {
        width: min(calc(100% - 24px), 1320px);
        padding: 96px 0 36px;
        gap: 24px;
    }

    .menu-links {
        gap: 10px;
    }

        .menu-links a {
            font-size: clamp(28px, 10vw, 48px);
        }

    .menu-side p {
        font-size: 14px;
        line-height: 1.8;
        max-width: 100%;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-grid {
        min-height: 100svh;
        padding-top: 108px;
        padding-bottom: 132px;
    }

    .hero-kicker {
        font-size: 9px;
        letter-spacing: .18em;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: clamp(28px, 9vw, 46px);
        line-height: .98;
        letter-spacing: -.06em;
    }

    .hero-sub {
        font-size: 13px;
        line-height: 1.75;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions .btn {
            width: 100%;
            min-height: 46px;
        }

    .hero-bottom {
        display: none;
    }

    .hero-line.bottom {
        bottom: 64px;
    }

    .hero-orb.one,
    .hero-orb.two,
    .hero-orb.three,
    .glass-card.right,
    .hero-glow.one,
    .hero-glow.two {
        display: none;
    }

    .glass-card.left {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 86px;
        width: min(90vw, 320px);
        max-width: none;
        padding: 14px;
    }

    .lead {
        font-size: clamp(26px, 8vw, 40px);
        line-height: 1.06;
    }

    .section-title,
    .transition-title,
    .contact-title,
    .cta-title {
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1.02;
        letter-spacing: -.05em;
    }

    .section-copy,
    .contact-copy,
    .project-copy,
    .transition-stat span {
        font-size: 14px;
        line-height: 1.8;
        max-width: 100%;
    }

    .service-card {
        aspect-ratio: 1 / 1.08;
    }

    .service-info {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

        .service-info h3 {
            font-size: clamp(22px, 7vw, 30px);
        }

    .project-meta {
        gap: 8px 12px;
        font-size: 9px;
    }

    .project-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-card-inner {
        padding: 22px 16px;
        gap: 18px;
    }

    .contact-list {
        gap: 10px;
    }

    .contact-item {
        gap: 10px;
        padding: 14px 0;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .contact-actions .btn {
            width: 100%;
        }

    .map-card {
        min-height: 340px;
    }

    .map-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 44px;
    }

    .footer-brand,
    .footer-col {
        width: 100%;
    }

    .footer-logo-wrap {
        gap: 10px;
        align-items: center;
    }

    .footer-logo {
        width: 46px;
        height: 46px;
    }

    .footer-logo-text strong {
        font-size: 14px;
    }

    .footer-logo-text span {
        font-size: 9px;
        letter-spacing: .12em;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 12px;
        bottom: 12px;
    }

        .whatsapp-float svg {
            width: 24px;
            height: 24px;
        }
}

@media (max-width: 575px) {
    .header-inner {
        padding: 0 10px;
    }

    .container {
        width: calc(100% - 20px);
    }

    .hero-grid {
        padding-top: 98px;
        padding-bottom: 122px;
    }

    .hero-title {
        font-size: clamp(24px, 8.6vw, 38px);
    }

    .hero-sub {
        font-size: 12.5px;
        line-height: 1.7;
    }

    .hero-meta-left {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hero-dot {
        width: 24px;
    }

    .scroll-pill {
        width: 108px;
        height: 36px;
        font-size: 9px;
    }

    .transition-content {
        padding: 84px 14px 60px;
    }

    .transition-card {
        width: 100%;
        padding: 12px;
        gap: 10px;
    }

    .transition-stat {
        padding: 16px 14px;
    }

        .transition-stat strong {
            font-size: 24px;
        }

    .section-head {
        gap: 16px;
        margin-bottom: 28px;
    }

    .lead,
    .section-title,
    .transition-title,
    .contact-title,
    .cta-title,
    .quote,
    .project-title {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .project-title {
        font-size: clamp(24px, 8vw, 34px);
    }

    .quote {
        font-size: clamp(24px, 8vw, 38px);
    }

    .footer-bottom {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal-up,
    .reveal-fade,
    .project-panel,
    .hero-sub,
    .hero-actions,
    .hero-bottom {
        opacity: 1 !important;
        transform: none !important;
    }
}
.footer-social-bottom {
    display: flex;
    justify-content: center;
    margin: 30px 0 10px;
}

.instagram-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 1px;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .05em;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

    .instagram-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(0,0,0,.25);
        background: linear-gradient(135deg, #000, #222);
    }